diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 0000000..e11f893 --- /dev/null +++ b/.github/workflows/build.yaml @@ -0,0 +1,116 @@ +name: Build font and specimen + +on: push + +jobs: + build: + name: Build and test + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Set up Python 3.10 + uses: actions/setup-python@v5 + with: + python-version: "3.10" + - name: Install sys tools/deps + run: | + sudo apt-get update + sudo apt-get install ttfautohint + sudo snap install yq + - uses: actions/cache@v4 + with: + path: ./venv/ + key: ${{ runner.os }}-venv-${{ hashFiles('**/requirements*.txt') }} + restore-keys: | + ${{ runner.os }}-venv- + - name: gen zip file name + id: zip-name + shell: bash + # Set the archive name to repo name + "-assets" e.g "MavenPro-assets" + run: echo "ZIP_NAME=$(echo '${{ github.repository }}' | awk -F '/' '{print $2}')-fonts" >> $GITHUB_ENV + + # If a new release is cut, use the release tag to auto-bump the source files + # - name: Bump release + # if: github.event_name == 'release' + # run: | + # . venv/bin/activate + # SRCS=$(yq e ".sources[]" sources/config.yaml) + # TAG_NAME=${GITHUB_REF/refs\/tags\//} + # echo "Bumping $SRCS to $TAG_NAME" + # for src in $SRCS + # do + # bumpfontversion sources/$src --new-version $TAG_NAME; + # done + + - name: Build font + run: make build + - name: Check with fontbakery + run: make test + continue-on-error: true + - name: proof + run: make proof + - name: setup site + run: cp scripts/index.html out/index.html + - name: Deploy + uses: peaceiris/actions-gh-pages@v4 + if: ${{ github.ref == 'refs/heads/main' }} + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./out + - name: Archive artifacts + uses: actions/upload-artifact@v4 + with: + name: ${{ env.ZIP_NAME }} + path: | + fonts + out + outputs: + zip_name: ${{ env.ZIP_NAME }} + + # There are two ways a release can be created: either by pushing a tag, or by + # creating a release from the GitHub UI. Pushing a tag does not automatically + # create a release, so we have to do that ourselves. However, creating a + # release from the GitHub UI *does* push a tag, and we don't want to create + # a new release in that case because one already exists! + + release: + name: Create and populate release + needs: build + runs-on: ubuntu-latest + if: contains(github.ref, 'refs/tags/') + env: + ZIP_NAME: ${{ needs.build.outputs.zip_name }} + GH_TOKEN: ${{ github.token }} + steps: + - uses: actions/checkout@v4 + - name: Download font artefact files + uses: actions/download-artifact@v4 + with: + name: ${{ env.ZIP_NAME }} + path: ${{ env.ZIP_NAME }} + - name: Copy DESCRIPTION.en_us.html to artefact directory + run: cp documentation/DESCRIPTION.en_us.html ${{ env.ZIP_NAME }}/DESCRIPTION.en_us.html + - name: Copy ARTICLE.en_us.html to artefact directory + run: cp documentation/ARTICLE.en_us.html ${{ env.ZIP_NAME }}/ARTICLE.en_us.html + continue-on-error: true + - name: Copy OFL.txt to artefact directory + run: cp OFL.txt ${{ env.ZIP_NAME }}/OFL.txt + - name: Remove proof/fontbakery stuff from release + run: rm -rf ${{ env.ZIP_NAME }}/out + - name: gen release file name + shell: bash + run: echo "RELEASE_ZIP_NAME=$(echo '${{ github.repository }}' | awk -F '/' '{print $2}')-${{github.ref_name}}" >> $GITHUB_ENV + - name: Create release bundle + run: mv ${{ env.ZIP_NAME }} ${{ env.RELEASE_ZIP_NAME }}; zip -r ${{ env.RELEASE_ZIP_NAME }}.zip ${{ env.RELEASE_ZIP_NAME }} + - name: Check for release + id: create_release + run: | + if ! gh release view ${{ github.ref_name }}; then + git show -s --format=%B ${{ github.ref_name }} | tail -n +4 | gh release create ${{ github.ref_name }} -t ${{ github.ref_name }} -F - + fi + - name: Populate release + run: | + gh release upload ${{ github.ref_name }} ${{ env.RELEASE_ZIP_NAME }}.zip --clobber + - name: Set release live + run: | + gh release edit ${{ github.ref_name }} --draft=false \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fa16d1a --- /dev/null +++ b/.gitignore @@ -0,0 +1,40 @@ +*~ +venv +venv-test +build.stamp +proof +fonts +node_modules +package-lock.json +package.json +master_ufo +instance_ufos +.ninja_log +build.ninja + +# OS generated files # +###################### +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db + +# Autosaved by application when editing +###################### +*(تم الحفظ تلقائيًا).* +*(automaticky uloženo).* +*(Automatisch gesichert).* +*(Autosaved).* +*(guardado automáticamente).* +*(enregistré automatiquement).* +*(salvato automaticamente).* +*(自動保存).* +*(자동 저장됨).* +*(Salvo Automaticamente).* +*(Автосохранение).* +*(Otomatik Kaydedildi).* +*(自动存储).* +*(已自動儲存).* diff --git a/.templaterc.json b/.templaterc.json new file mode 100644 index 0000000..6174e0a --- /dev/null +++ b/.templaterc.json @@ -0,0 +1,3 @@ +{ + "files": [".github/**/*", "Makefile", "scripts/**/*", "requirements.txt"] +} diff --git a/AUTHORS.txt b/AUTHORS.txt new file mode 100644 index 0000000..5fb66c6 --- /dev/null +++ b/AUTHORS.txt @@ -0,0 +1,7 @@ +# This is the official list of project authors for copyright purposes. The first name in the list (if there are several authors), will appear as "Principal design" in the "about" section of the font specimen on Google Fonts. +# This file is distinct from the CONTRIBUTORS.txt file. +# See the latter for an explanation. +# +# Names should be added to this file as: +# Name or Organization + diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt new file mode 100644 index 0000000..a288283 --- /dev/null +++ b/CONTRIBUTORS.txt @@ -0,0 +1,10 @@ +# This is the list of people who have contributed to this project, +# and includes those not listed in AUTHORS.txt because they are not +# copyright authors. For example, company employees may be listed +# here because their company holds the copyright and is listed there. +# +# When adding J Random Contributor's name to this file, either J's +# name or J's organization's name should be added to AUTHORS.txt +# +# Names should be added to this file as: +# Name diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..91972fe --- /dev/null +++ b/Makefile @@ -0,0 +1,70 @@ +SOURCES=$(shell python3 scripts/read-config.py --sources ) +FAMILY=$(shell python3 scripts/read-config.py --family ) +DRAWBOT_SCRIPTS=$(shell ls documentation/*.py) +DRAWBOT_OUTPUT=$(shell ls documentation/*.py | sed 's/\.py/.png/g') + +help: + @echo "###" + @echo "# Build targets for $(FAMILY)" + @echo "###" + @echo + @echo " make build: Builds the fonts and places them in the fonts/ directory" + @echo " make test: Tests the fonts with fontbakery" + @echo " make proof: Creates HTML proof documents in the proof/ directory" + @echo " make images: Creates PNG specimen images in the documentation/ directory" + @echo + +build: build.stamp + +venv: venv/touchfile + +venv-test: venv-test/touchfile + +customize: venv + . venv/bin/activate; python3 scripts/customize.py + +build.stamp: venv sources/config.yaml $(SOURCES) + rm -rf fonts + (for config in sources/config*.yaml; do . venv/bin/activate; gftools builder $$config; done) && touch build.stamp + +venv/touchfile: requirements.txt + test -d venv || python3 -m venv venv + . venv/bin/activate; pip install -Ur requirements.txt + touch venv/touchfile + +venv-test/touchfile: requirements-test.txt + test -d venv-test || python3 -m venv venv-test + . venv-test/bin/activate; pip install -Ur requirements-test.txt + touch venv-test/touchfile + +test: venv-test build.stamp + TOCHECK=$$(find fonts/variable -type f 2>/dev/null); if [ -z "$$TOCHECK" ]; then TOCHECK=$$(find fonts/ttf -type f 2>/dev/null); fi ; . venv-test/bin/activate; mkdir -p out/ out/fontbakery; fontbakery check-googlefonts -l WARN --full-lists --succinct --badges out/badges --html out/fontbakery/fontbakery-report.html --ghmarkdown out/fontbakery/fontbakery-report.md $$TOCHECK || echo '::warning file=sources/config.yaml,title=Fontbakery failures::The fontbakery QA check reported errors in your font. Please check the generated report.' + +proof: venv build.stamp + TOCHECK=$$(find fonts/variable -type f 2>/dev/null); if [ -z "$$TOCHECK" ]; then TOCHECK=$$(find fonts/ttf -type f 2>/dev/null); fi ; . venv/bin/activate; mkdir -p out/ out/proof; diffenator2 proof $$TOCHECK -o out/proof + +images: venv $(DRAWBOT_OUTPUT) + +%.png: %.py build.stamp + . venv/bin/activate; python3 $< --output $@ + +clean: + rm -rf venv + find . -name "*.pyc" -delete + +update-project-template: + npx update-template https://github.com/googlefonts/googlefonts-project-template/ + +update: venv venv-test + venv/bin/pip install --upgrade pip-tools + # See https://pip-tools.readthedocs.io/en/latest/#a-note-on-resolvers for + # the `--resolver` flag below. + venv/bin/pip-compile --upgrade --verbose --resolver=backtracking requirements.in + venv/bin/pip-sync requirements.txt + + venv-test/bin/pip install --upgrade pip-tools + venv-test/bin/pip-compile --upgrade --verbose --resolver=backtracking requirements-test.in + venv-test/bin/pip-sync requirements-test.txt + + git commit -m "Update requirements" requirements.txt requirements-test.txt + git push diff --git a/OFL.txt b/OFL.txt new file mode 100644 index 0000000..2b28cf9 --- /dev/null +++ b/OFL.txt @@ -0,0 +1,93 @@ +Copyright 20** The My Font Project Authors (https://github.com/googlefonts/googlefonts-project-template) + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +https://openfontlicense.org + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..9850cbd --- /dev/null +++ b/README.md @@ -0,0 +1,102 @@ +---- + +## Setting up your font + +### New repositories + +1. Hit the green button above ("Use this template") to create your own repository. + +2. Clone the repository, and replace the font sources in the `sources` directory with your own font sources. These sources may be either in Glyphs format or UFO/Designspace formats.\ +\ +Unlike many open source distributors, Google Fonts is **curated**. Fonts shipped to the platform have to match the [Google Fonts Specifications](https://github.com/googlefonts/gf-docs/tree/main/Spec). Please read them carefully.\ +\ +*(The sample font provided in this template is [Radio Canada](https://github.com/googlefonts/radiocanadadisplay/) by Charles Daoud, Etienne Aubert Bonn, Alexandre Saumier Demers and contributors.)* + +3. Then reference the sources in the file `sources/config.yaml`, as well as making any other changes you would like to make based on the instructions in the [Google Fonts Builder documentation](https://github.com/googlefonts/gftools/blob/main/Lib/gftools/builder/__init__.py). + +4. Add yourself to the `AUTHORS.txt` and `CONTRIBUTORS.txt` files. + +5. Fill out `documentation/DESCRIPTION.en_us.html` with a description about your font. + +6. Rewrite this Readme file according to the recommendations in the [Google Fonts Guide](https://googlefonts.github.io/gf-guide/readmefile.html). + +7. Add and commit these files to git. + +8. **At the command line, run `make customize` to ensure that all the paths and URLs in your project are correct**. This will also push your changes to GitHub. + +9. **Set up your GitHub pages site**: go to Settings > Pages and ensure that the "Source" drop-down is set to "Deploy from a Branch". Ensure that the "Branch" is set to `gh-pages`. If this branch is not available, check that the "Build font and specimen" action in the "Actions" tab has completed; if it completed successfully, then try again - `gh-pages` should now be an option. + +10. If Github Actions has successfully built the family, you will find the font binaries in the Actions tab. The official Github Actions documentation provides further [information](https://docs.github.com/en/actions/managing-workflow-runs/downloading-workflow-artifacts). + + +### Updating a repository + +1. To update your font repository to bring in the latest best-practices from the Google Fonts Project Template, run `make update-project-template` from the command line. This requires the `node` Javascript engine to be installed; if you don't have that already, [follow these instructions](https://nodejs.org/en/download/package-manager#macos) to install on your platform. + +2. To update the Python build chain which builds your fonts, run `make update` and `git add`/`git commit` the new `requirements.txt`. + +## More things to do + +* `CustomFilter_GF_Latin_All.plist` in `sources` is practical if you use GlyphsApp, you can remove it otherwise. Placed in the same directory as the your `.glyphs` file, it will allow Glyphs to display a filter list for all GF Latin glyphsets in app. To make sure your font supports the minimal set required by Google Fonts, look at the `GF_Latin_Core` filter list. Find other glyphsets and list formats for different software in [GF Glyphsets repository](https://github.com/googlefonts/glyphsets/tree/main/GF_glyphsets). + +* Once you are happy with your font, add promotional assets in the documentation directory. Make it different from the pic you use in this README. You can get inspired by existing tweet @googlefonts like: https://twitter.com/googlefonts/status/1415562928657416192. + +* Google Fonts uses Github Releases to manage font families. If you feel your font project has hit a milestone, you must create a new release for it. In order to do this, go to the releases page and hit the "Draft a new release button". You must provide a tag number and title which can only be a decimal number e.g 0.100, 1.000 etc. For the body text, mention what has changed since the last release. Once you are done, hit the "Publish release" button. Here is an example which fulfills the requirements, https://github.com/m4rc1e/test-ufr-family/releases/tag/2.019. For more info regarding Github release, please see the official Github Release [documentation](https://docs.github.com/en/repositories/releasing-projects-on-github/managing-releases-in-a-repository). **Please note that Github Actions must be able to build the fonts before you can make a release. Once you have made a release, the fonts and tests assets will be attached to the release automatically. This may take a while since the fonts and tests will be built from scratch so please be patient.** + +---- + + +# My Font + +[![][Fontbakery]](https://googlefonts.github.io/googlefonts-project-template/fontbakery/fontbakery-report.html) +[![][Universal]](https://googlefonts.github.io/googlefonts-project-template/fontbakery/fontbakery-report.html) +[![][GF Profile]](https://googlefonts.github.io/googlefonts-project-template/fontbakery/fontbakery-report.html) +[![][Shaping]](https://googlefonts.github.io/googlefonts-project-template/fontbakery/fontbakery-report.html) + +[Fontbakery]: https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fgooglefonts%2Fgooglefonts-project-template%2Fgh-pages%2Fbadges%2Foverall.json +[GF Profile]: https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fgooglefonts%2Fgooglefonts-project-template%2Fgh-pages%2Fbadges%2FGoogleFonts.json +[Outline Correctness]: https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fgooglefonts%2Fgooglefonts-project-template%2Fgh-pages%2Fbadges%2FOutlineCorrectnessChecks.json +[Shaping]: https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fgooglefonts%2Fgooglefonts-project-template%2Fgh-pages%2Fbadges%2FShapingChecks.json +[Universal]: https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fgooglefonts%2Fgooglefonts-project-template%2Fgh-pages%2Fbadges%2FUniversal.json + +Description of your font goes here. We recommend to start with a very short presentation line (the kind you would use on twitter to present your project for example), and then add as much details as necesary :-) Origin of the project, idea of usage, concept of creation… but also number of masters, axes, character sets, etc. + +Don't hesitate to create images! + +![Sample Image](documentation/image1.png) +![Sample Image](documentation/image2.png) + +## About + +Description of you and/or organisation goes here. + +## Building + +Fonts are built automatically by GitHub Actions - take a look in the "Actions" tab for the latest build. + +If you want to build fonts manually on your own computer: + +* `make build` will produce font files. +* `make test` will run [FontBakery](https://github.com/googlefonts/fontbakery)'s quality assurance tests. +* `make proof` will generate HTML proof files. + +The proof files and QA tests are also available automatically via GitHub Actions - look at `https://yourname.github.io/your-font-repository-name`. + +## Changelog + +When you update your font (new version or new release), please report all notable changes here, with a date. +[Font Versioning](https://github.com/googlefonts/gf-docs/tree/main/Spec#font-versioning) is based on semver. +Changelog example: + +**26 May 2021. Version 2.13** +- MAJOR Font turned to a variable font. +- SIGNIFICANT New Stylistic sets added. + +## License + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is available with a FAQ at https://openfontlicense.org + +## Repository Layout + +This font repository structure is inspired by [Unified Font Repository v0.3](https://github.com/unified-font-repository/Unified-Font-Repository), modified for the Google Fonts workflow. diff --git a/documentation/DESCRIPTION.en_us.html b/documentation/DESCRIPTION.en_us.html new file mode 100644 index 0000000..34a7b19 --- /dev/null +++ b/documentation/DESCRIPTION.en_us.html @@ -0,0 +1,12 @@ +

+ Please add a text describing the font here, 100 chracters or more, but no more than 500 words. + See https://googlefonts.github.io/gf-guide/description.html for further reference. + Please make sure that HTML characters are properly encoded. ('&' becomes & etc.) + If unsure, use https://www.freeformatter.com/html-escape.html for formatting. (Use "Escape HTML"). +

+

+ Could be several paragraphs, also. +

+

+ To contribute, see github.com/youruseraccount/yourrepository. +

\ No newline at end of file diff --git a/documentation/image1.png b/documentation/image1.png new file mode 100644 index 0000000..ffd1f1a Binary files /dev/null and b/documentation/image1.png differ diff --git a/documentation/image1.py b/documentation/image1.py new file mode 100644 index 0000000..6670a6b --- /dev/null +++ b/documentation/image1.py @@ -0,0 +1,137 @@ +# This script is meant to be run from the root level +# of your font's git repository. For example, from a Unix terminal: +# $ git clone my-font +# $ cd my-font +# $ python3 documentation/image1.py --output documentation/image1.png + +# Import moduels from external python packages: https://pypi.org/ +from drawbot_skia.drawbot import * +from fontTools.ttLib import TTFont +from fontTools.misc.fixedTools import floatToFixedToStr + +# Import moduels from the Python Standard Library: https://docs.python.org/3/library/ +import subprocess +import sys +import argparse + +# Constants, these are the main "settings" for the image +WIDTH, HEIGHT, MARGIN, FRAMES = 2048, 1024, 128, 1 +FONT_PATH = "fonts/ttf/RadioCanadaDisplay-Regular.ttf" +FONT_LICENSE = "OFL v1.1" +AUXILIARY_FONT = "Helvetica" +AUXILIARY_FONT_SIZE = 48 + +BIG_TEXT = "AaBb" +BIG_TEXT_FONT_SIZE = 730 +BIG_TEXT_SIDE_MARGIN = MARGIN * 1 +BIG_TEXT_BOTTOM_MARGIN = MARGIN * 2 + +GRID_VIEW = False # Toggle this for a grid overlay + +# Handel the "--output" flag +# For example: $ python3 documentation/image1.py --output documentation/image1.png +parser = argparse.ArgumentParser() +parser.add_argument("--output", metavar="PNG", help="where to write the PNG file") +args = parser.parse_args() + +# Load the font with the parts of fonttools that are imported with the line: +# from fontTools.ttLib import TTFont +# Docs Link: https://fonttools.readthedocs.io/en/latest/ttLib/ttFont.html +ttFont = TTFont(FONT_PATH) + +# Constants that are worked out dynamically +MY_URL = subprocess.check_output("git remote get-url origin", shell=True).decode() +MY_HASH = subprocess.check_output("git rev-parse --short HEAD", shell=True).decode() +FONT_NAME = ttFont["name"].getDebugName(4) +FONT_VERSION = "v%s" % floatToFixedToStr(ttFont["head"].fontRevision, 16) + + +# Draws a grid +def grid(): + stroke(1, 0, 0, 0.75) + strokeWidth(2) + STEP_X, STEP_Y = 0, 0 + INCREMENT_X, INCREMENT_Y = MARGIN / 2, MARGIN / 2 + rect(MARGIN, MARGIN, WIDTH - (MARGIN * 2), HEIGHT - (MARGIN * 2)) + for x in range(29): + polygon((MARGIN + STEP_X, MARGIN), (MARGIN + STEP_X, HEIGHT - MARGIN)) + STEP_X += INCREMENT_X + for y in range(29): + polygon((MARGIN, MARGIN + STEP_Y), (WIDTH - MARGIN, MARGIN + STEP_Y)) + STEP_Y += INCREMENT_Y + polygon((WIDTH / 2, 0), (WIDTH / 2, HEIGHT)) + polygon((0, HEIGHT / 2), (WIDTH, HEIGHT / 2)) + + +# Remap input range to VF axis range +# This is useful for animation +# (E.g. sinewave(-1,1) to wght(100,900)) +def remap(value, inputMin, inputMax, outputMin, outputMax): + inputSpan = inputMax - inputMin # FIND INPUT RANGE SPAN + outputSpan = outputMax - outputMin # FIND OUTPUT RANGE SPAN + valueScaled = float(value - inputMin) / float(inputSpan) + return outputMin + (valueScaled * outputSpan) + + +# Draw the page/frame and a grid if "GRID_VIEW" is set to "True" +def draw_background(): + newPage(WIDTH, HEIGHT) + fill(0) + rect(-2, -2, WIDTH + 2, HEIGHT + 2) + if GRID_VIEW: + grid() + else: + pass + + +# Draw main text +def draw_main_text(): + fill(1) + stroke(None) + font(FONT_PATH) + fontSize(BIG_TEXT_FONT_SIZE) + # Adjust this line to center main text manually. + # TODO: This should be done automatically when drawbot-skia + # has support for textBox() and FormattedString + #text(BIG_TEXT, ((WIDTH / 2) - MARGIN * 4.75, (HEIGHT / 2) - MARGIN * 2.5)) + text(BIG_TEXT, (BIG_TEXT_SIDE_MARGIN, BIG_TEXT_BOTTOM_MARGIN)) + + +# Divider lines +def draw_divider_lines(): + stroke(1) + strokeWidth(5) + lineCap("round") + line((MARGIN, HEIGHT - (MARGIN * 1.5)), (WIDTH - MARGIN, HEIGHT - (MARGIN * 1.5))) + line((MARGIN, MARGIN + (MARGIN / 2)), (WIDTH - MARGIN, MARGIN + (MARGIN / 2))) + stroke(None) + + +# Draw text describing the font and it's git status & repo URL +def draw_auxiliary_text(): + # Setup + font(AUXILIARY_FONT) + fontSize(AUXILIARY_FONT_SIZE) + POS_TOP_LEFT = (MARGIN, HEIGHT - MARGIN * 1.25) + POS_TOP_RIGHT = (WIDTH - MARGIN, HEIGHT - MARGIN * 1.25) + POS_BOTTOM_LEFT = (MARGIN, MARGIN) + POS_BOTTOM_RIGHT = (WIDTH - MARGIN * 0.95, MARGIN) + URL_AND_HASH = MY_URL + "at commit " + MY_HASH + URL_AND_HASH = URL_AND_HASH.replace("\n", " ") + # Draw Text + text(FONT_NAME, POS_TOP_LEFT, align="left") + text(FONT_VERSION, POS_TOP_RIGHT, align="right") + text(URL_AND_HASH, POS_BOTTOM_LEFT, align="left") + text(FONT_LICENSE, POS_BOTTOM_RIGHT, align="right") + + +# Build and save the image +if __name__ == "__main__": + draw_background() + draw_main_text() + draw_divider_lines() + draw_auxiliary_text() + # Save output, using the "--output" flag location + saveImage(args.output) + # Print done in the terminal + print("DrawBot: Done") diff --git a/documentation/image2.png b/documentation/image2.png new file mode 100644 index 0000000..eff771b Binary files /dev/null and b/documentation/image2.png differ diff --git a/documentation/image2.py b/documentation/image2.py new file mode 100644 index 0000000..cc6cf75 --- /dev/null +++ b/documentation/image2.py @@ -0,0 +1,145 @@ +# This script is meant to be run from the root level +# of your font's git repository. For example, from a Unix terminal: +# $ git clone my-font +# $ cd my-font +# $ python3 documentation/image1.py --output documentation/image1.png + +# Import moduels from external python packages: https://pypi.org/ +from drawbot_skia.drawbot import * +from fontTools.ttLib import TTFont +from fontTools.misc.fixedTools import floatToFixedToStr + +# Import moduels from the Python Standard Library: https://docs.python.org/3/library/ +import subprocess +import sys +import argparse + +# Constants, these are the main "settings" for the image +WIDTH, HEIGHT, MARGIN, FRAMES = 2048, 1024, 128, 1 +FONT_PATH = "fonts/ttf/RadioCanadaDisplay-Regular.ttf" +FONT_LICENSE = "OFL v1.1" +AUXILIARY_FONT = "Helvetica" +AUXILIARY_FONT_SIZE = 48 + +LINE_ONE = "ABCDEFGHIJKLMNOPQ" +LINE_TWO = "RSTUVWXYZ123456789" +LINE_THREE = "abcdefghijklmnopqrstu" +LINE_FOUR = "vwxyz,.;:!@#$%^&*(){}[]" +BIG_TEXT_FONT_SIZE = 160 +BIG_TEXT_SIDE_MARGIN = MARGIN * 1 +BIG_TEXT_BOTTOM_MARGIN = MARGIN * 5.45 + +GRID_VIEW = False # Toggle this for a grid overlay + +# Handel the "--output" flag +# For example: $ python3 documentation/image1.py --output documentation/image1.png +parser = argparse.ArgumentParser() +parser.add_argument("--output", metavar="PNG", help="where to write the PNG file") +args = parser.parse_args() + +# Load the font with the parts of fonttools that are imported with the line: +# from fontTools.ttLib import TTFont +# Docs Link: https://fonttools.readthedocs.io/en/latest/ttLib/ttFont.html +ttFont = TTFont(FONT_PATH) + +# Constants that are worked out dynamically +MY_URL = subprocess.check_output("git remote get-url origin", shell=True).decode() +MY_HASH = subprocess.check_output("git rev-parse --short HEAD", shell=True).decode() +FONT_NAME = ttFont["name"].getDebugName(4) +FONT_VERSION = "v%s" % floatToFixedToStr(ttFont["head"].fontRevision, 16) + + +# Draws a grid +def grid(): + stroke(1, 0, 0, 0.75) + strokeWidth(2) + STEP_X, STEP_Y = 0, 0 + INCREMENT_X, INCREMENT_Y = MARGIN / 2, MARGIN / 2 + rect(MARGIN, MARGIN, WIDTH - (MARGIN * 2), HEIGHT - (MARGIN * 2)) + for x in range(29): + polygon((MARGIN + STEP_X, MARGIN), (MARGIN + STEP_X, HEIGHT - MARGIN)) + STEP_X += INCREMENT_X + for y in range(29): + polygon((MARGIN, MARGIN + STEP_Y), (WIDTH - MARGIN, MARGIN + STEP_Y)) + STEP_Y += INCREMENT_Y + polygon((WIDTH / 2, 0), (WIDTH / 2, HEIGHT)) + polygon((0, HEIGHT / 2), (WIDTH, HEIGHT / 2)) + + +# Remap input range to VF axis range +# This is useful for animation +# (E.g. sinewave(-1,1) to wght(100,900)) +def remap(value, inputMin, inputMax, outputMin, outputMax): + inputSpan = inputMax - inputMin # FIND INPUT RANGE SPAN + outputSpan = outputMax - outputMin # FIND OUTPUT RANGE SPAN + valueScaled = float(value - inputMin) / float(inputSpan) + return outputMin + (valueScaled * outputSpan) + + +# Draw the page/frame and a grid if "GRID_VIEW" is set to "True" +def draw_background(): + newPage(WIDTH, HEIGHT) + fill(0) + rect(-2, -2, WIDTH + 2, HEIGHT + 2) + if GRID_VIEW: + grid() + else: + pass + + +# Draw main text +def draw_main_text(): + fill(1) + stroke(None) + font(FONT_PATH) + fontSize(BIG_TEXT_FONT_SIZE) + # Adjust this line to center main text manually. + # TODO: This should be done automatically when drawbot-skia + # has support for textBox() and FormattedString + LEADING = 1.2 + text(LINE_ONE, (BIG_TEXT_SIDE_MARGIN, BIG_TEXT_BOTTOM_MARGIN)) + text(LINE_TWO, (BIG_TEXT_SIDE_MARGIN, BIG_TEXT_BOTTOM_MARGIN - (MARGIN * LEADING))) + text(LINE_THREE, (BIG_TEXT_SIDE_MARGIN, BIG_TEXT_BOTTOM_MARGIN - (MARGIN * (LEADING * 2)))) + text(LINE_FOUR, (BIG_TEXT_SIDE_MARGIN, BIG_TEXT_BOTTOM_MARGIN - (MARGIN * (LEADING * 3)))) + + +# Divider lines +def draw_divider_lines(): + stroke(1) + strokeWidth(5) + lineCap("round") + line((MARGIN, HEIGHT - (MARGIN * 1.5)), (WIDTH - MARGIN, HEIGHT - (MARGIN * 1.5))) + line((MARGIN, MARGIN + (MARGIN / 2)), (WIDTH - MARGIN, MARGIN + (MARGIN / 2))) + stroke(None) + + +# Draw text describing the font and it's git status & repo URL +def draw_auxiliary_text(): + # Setup + font(AUXILIARY_FONT) + fontSize(AUXILIARY_FONT_SIZE) + POS_TOP_LEFT = (MARGIN, HEIGHT - MARGIN * 1.25) + POS_TOP_RIGHT = (WIDTH - MARGIN, HEIGHT - MARGIN * 1.25) + POS_BOTTOM_LEFT = (MARGIN, MARGIN) + POS_BOTTOM_RIGHT = (WIDTH - MARGIN * 0.95, MARGIN) + #URL_AND_HASH = "github.com/googlefonts/googlefonts-project-template " + "at commit " + MY_HASH + URL_AND_HASH = MY_URL + "at commit " + MY_HASH + URL_AND_HASH = URL_AND_HASH.replace("\n", " ") + # Draw Text + #text("Your Font Regular", POS_TOP_LEFT, align="left") + text(FONT_NAME, POS_TOP_LEFT, align="left") + text(FONT_VERSION, POS_TOP_RIGHT, align="right") + text(URL_AND_HASH, POS_BOTTOM_LEFT, align="left") + text(FONT_LICENSE, POS_BOTTOM_RIGHT, align="right") + + +# Build and save the image +if __name__ == "__main__": + draw_background() + draw_main_text() + draw_divider_lines() + draw_auxiliary_text() + # Save output, using the "--output" flag location + saveImage(args.output) + # Print done in the terminal + print("DrawBot: Done") diff --git a/documentation/images-license.txt b/documentation/images-license.txt new file mode 100644 index 0000000..d27416f --- /dev/null +++ b/documentation/images-license.txt @@ -0,0 +1 @@ +The images in this repository are licensed under the CC https://creativecommons.org/licenses/by-sa/4.0/ \ No newline at end of file diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..9f96c94 --- /dev/null +++ b/renovate.json @@ -0,0 +1,7 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:recommended" + ], + "rangeStrategy": "bump" +} diff --git a/requirements-test.in b/requirements-test.in new file mode 100644 index 0000000..d326066 --- /dev/null +++ b/requirements-test.in @@ -0,0 +1,2 @@ +fontbakery[googlefonts]>=0.9.2 +gftools[qa]>=0.9.23 diff --git a/requirements-test.txt b/requirements-test.txt new file mode 100644 index 0000000..161ef17 --- /dev/null +++ b/requirements-test.txt @@ -0,0 +1,2 @@ +# Placeholder file, update the requirements by running `make update`. +-r requirements-test.in diff --git a/requirements.in b/requirements.in new file mode 100644 index 0000000..25d651b --- /dev/null +++ b/requirements.in @@ -0,0 +1,6 @@ +fontmake>=3.9.0 +gftools[qa]>=0.9.54 +drawbot-skia>=0.5.0 +sh>=2.0.6 +bumpfontversion>=0.4.1 +diffenator2>=0.3.8 diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..5dc9102 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +# Placeholder file, update the requirements by running `make update`. +-r requirements.in diff --git a/scripts/customize.py b/scripts/customize.py new file mode 100644 index 0000000..f7feab4 --- /dev/null +++ b/scripts/customize.py @@ -0,0 +1,123 @@ +#!/usr/bin/env python3 + +# This script is run by the user using `make customize` after the repository +# is cloned. If you are reading this because `make customize` failed, +# skip down to the section headed "INITIALIZATION STEPS". + +from sh import git +import datetime +import re +import sys +from urllib.parse import quote +import subprocess +import requests + +BASE_OWNER = "googlefonts" +BASE_REPONAME = "googlefonts-project-template" +DUMMY_URL = "https://yourname.github.io/your-font-repository-name" +LATEST_OFL = "https://raw.githubusercontent.com/googlefonts/googlefonts-project-template/main/OFL.txt" + + +def repo_url(owner, name): + return f"https://github.com/{owner}/{name}" + + +def web_url(owner, name): + return f"https://{owner}.github.io/{name}" + + +def raw_url(owner, name): + return f"https://raw.githubusercontent.com/{owner}/{name}" + + +def lose(msg, e=None): + print(msg) + print("You will need to do the initialization steps manually.") + print("Read scripts/customize.py for more instructions how to do this.") + if e: + print( + "\nHere's an additional error message which may help diagnose the problem." + ) + raise e + sys.exit(1) + + +try: + my_repo_url = git.remote("get-url", "origin") +except Exception as e: + lose("Could not use git to find my own repository URL", e) + +m = re.match(r"(?:https://github.com/|git@github.com:)(.*)/(.*)/?", str(my_repo_url)) +if not m: + lose( + f"My git repository URL ({my_repo_url}) didn't look what I expected - are you hosting this on github?" + ) + +owner, reponame = m[1], m[2] + +if owner == BASE_OWNER and reponame == BASE_REPONAME: + print("I am being run on the upstream repository; don't do that") + sys.exit() + +# INITIALIZATION STEPS + +# First, the README file contains URLs to pages in the `gh-pages` branch of the +# repo. When initially cloned, these URLs will point to the +# googlefonts/Unified-Font-Repository itself. But downstream users want links +# and badges about their own font, not ours! So any URLs need to be adjusted to +# refer to the end user's repository. + +# We will also pin the dependencies so future builds are reproducible. + +readme = open("README.md").read() +ghpages_url = web_url(owner, reponame) +project_url = repo_url(owner, reponame) + +print("Fixing URLs:", web_url(BASE_OWNER, BASE_REPONAME), "->", ghpages_url) + +readme = readme.replace(web_url(BASE_OWNER, BASE_REPONAME), ghpages_url) +# In the badges, the URLs to raw.githubusercontent.com are URL-encoded as they +# are passed to shields.io. +readme = readme.replace( + quote(raw_url(BASE_OWNER, BASE_REPONAME), safe=""), + quote(raw_url(owner, reponame), safe=""), +) + +print("Fixing URLs:", DUMMY_URL, "->", ghpages_url) +readme = readme.replace(f"`{DUMMY_URL}`", ghpages_url) + +with open("README.md", "w") as fh: + fh.write(readme) + +git.add("README.md") + +# Fix the OFL +year = datetime.date.today().year +title = reponame.title() +copyright = f"Copyright {year} The {title} Project Authors ({project_url})\n" +print("Fetching the latest OFL..") +ofl = requests.get(LATEST_OFL).text.splitlines() +print("Writing an OFL for you") +print(copyright) +with open("OFL.txt", "w") as fh: + fh.write(copyright) + fh.write("\n".join(ofl[1:])) + +git.add("OFL.txt") + +# Pin the dependencies +print("Pinning dependencies") +dependencies = subprocess.check_output(["pip", "freeze"]) +with open("requirements.txt", "wb") as dependency_file: + dependency_file.write(dependencies) +git.add("requirements.txt") + +# Did anything change? +result = git.status("--porcelain") +if any(line.startswith("M ") for line in result.splitlines()): + git.commit("-m", "Customize repository") + + print("Pushing changes to GitHub") + git.push() +else: + print("Nothing changed, no need to push") diff --git a/scripts/index.html b/scripts/index.html new file mode 100644 index 0000000..07bb551 --- /dev/null +++ b/scripts/index.html @@ -0,0 +1,19 @@ + + + + + + My Font development + + +

My Font testing pages

+ + + diff --git a/scripts/read-config.py b/scripts/read-config.py new file mode 100644 index 0000000..5c2d404 --- /dev/null +++ b/scripts/read-config.py @@ -0,0 +1,45 @@ +#!/usr/bin/env python3 +# Yes, this is a Bad YAML Parser, but at this stage we are not in the +# venv and do not know what modules the user has available, so for +# maximum compatibility, we are just assuming a plain Python distribution. +import argparse +import re +import sys +import os + +parser = argparse.ArgumentParser() +group = parser.add_mutually_exclusive_group(required=True) +group.add_argument("--sources", action="store_true") +group.add_argument("--family", action="store_true") +args = parser.parse_args() + +with open(os.path.join("sources", "config.yaml")) as config: + data = config.read() + +if args.family: + m = re.search(r"(?m)^familyName: (.*)", data) + if m: + print(m[1]) + sys.exit(0) + else: + print("Could not determine family name from config file!") + sys.exit(1) + +toggle = False +sources = [] +for line in data.splitlines(): + if re.match("^sources:", line): + toggle = True + continue + if toggle: + m = re.match(r"^\s*-\s*(.*)", line) + if m: + sources.append("sources/" + m[1]) + else: + toggle = False +if sources: + print(" ".join(sources)) + sys.exit(0) +else: + print("Could not determine sources from config file!") + sys.exit(1) diff --git a/scripts/update-custom-filter.py b/scripts/update-custom-filter.py new file mode 100644 index 0000000..f2f071f --- /dev/null +++ b/scripts/update-custom-filter.py @@ -0,0 +1,8 @@ +import requests + +GF_Latin_All = "https://github.com/googlefonts/glyphsets/raw/main/GF_glyphsets/Latin/glyphs/CustomFilter_GF_Latin.plist" +dest = "sources/CustomFilter_GF_Latin_All.plist" + +r = requests.get(GF_Latin_All) +with open(dest, "wb") as f: + f.write(r.content) diff --git a/sources/CustomFilter_GF_Latin_All.plist b/sources/CustomFilter_GF_Latin_All.plist new file mode 100644 index 0000000..e175290 --- /dev/null +++ b/sources/CustomFilter_GF_Latin_All.plist @@ -0,0 +1,1297 @@ + + + + + + list + + apostrophemod + Acaron + Acircumflexdotbelow + Adblgrave + Adieresismacron + Adotaccent + Adotmacron + Ainvertedbreve + Alpha-latin + Aringbelow + Astroke + AEmacron + Bdotaccent + Bdotbelow + Beta-latin + Bhook + Bmacronbelow + Bstroke + Ccedillaacute + Chi-latin + Chook + Cstroke + Dcedilla + Dcircumflexbelow + Ddotaccent + Ddotbelow + Dhook + Dmacronbelow + Dtail + Ecedilla + Ecedillabreve + Ecircumflexbelow + Ecircumflexdotbelow + Edblgrave + Edotbelow + Einvertedbreve + Emacronacute + Emacrongrave + Eopen + Ereversed + Esh + Estroke + Etilde + Etildebelow + Schwa + Ezh + Ezhcaron + Ezhreversed + Fdotaccent + Fhook + Gacute + Gcaron + Ghook + Glottalstop + Gmacron + Gstroke + Hbrevebelow + Hcaron + Hcedilla + Hdieresis + Hdotaccent + Hdotbelow + Heng + Hhook + Hturned + Icaron + Idblgrave + Idieresisacute + Idotbelow + Iinvertedbreve + Iota-latin + Istroke + Itilde + Itildebelow + Jcrossedtail + Jstroke + Kacute + Kcaron + Kdotbelow + Khook + Kmacronbelow + Kstroke + Lbar + Lbelt + Lcircumflexbelow + Ldotbelow + Ldotbelowmacron + Ldoublebar + Lmacronbelow + Lmiddletilde + Macute + Mdotaccent + Mdotbelow + Mturned + Ncircumflexbelow + Ndotaccent + Ndotbelow + Ngrave + Nhookleft + Nlongrightleg + Nmacronbelow + OU + Ocaron + Ocenteredtilde + Ocircumflexdotbelow + Odblgrave + Odieresismacron + Odotaccent + Odotaccentmacron + Odotbelow + Oinvertedbreve + Omacronacute + Omacrongrave + Omega-latin + Oogonek + Oogonekmacron + Oopen + Oslashacute + Otildeacute + Otildedieresis + Otildemacron + Pacute + Pdotaccent + Phook + Pstroke + Qhooktail + Rdblgrave + Rdotaccent + Rdotbelow + Rdotbelowmacron + Rinvertedbreve + Rmacronbelow + Rstroke + Rtail + Sacutedotaccent + Saltillo + Scarondotaccent + Sdotaccent + Sdotbelow + Sdotbelowdotaccent + Sobliquestroke + Tcircumflexbelow + Tdiagonalstroke + Tdotaccent + Tdotbelow + Thook + Tmacronbelow + Tretroflexhook + Ubar + Ucaron + Ucircumflexbelow + Udblgrave + Udieresisacute + Udieresisbelow + Udieresiscaron + Udieresisgrave + Udieresismacron + Udotbelow + Uinvertedbreve + Umacrondieresis + Upsilon-latin + Utilde + Utildeacute + Utildebelow + Gamma-latin + Vdotbelow + Vhook + Vtilde + Vturned + Wdotaccent + Wdotbelow + Whook + Xdieresis + Xdotaccent + Ydotaccent + Yhook + Ymacron + Ystroke + Zcircumflex + Zdotbelow + Zmacronbelow + Zstroke + Ismall + acaron + acircumflexdotbelow + adblgrave + adieresismacron + adotaccent + adotbelow + adotmacron + ainvertedbreve + alpha-latin + aringbelow + astroke + aemacron + bdotaccent + bdotbelow + beta-latin + bhook + bilabialclick + bmacronbelow + bstroke + ccedillaacute + chi-latin + chook + cstroke + dcedilla + dcircumflexbelow + ddotaccent + ddotbelow + dhook + dmacronbelow + dtail + ecedilla + ecedillabreve + ecircumflexbelow + ecircumflexdotbelow + edblgrave + edotbelow + einvertedbreve + emacronacute + emacrongrave + eopen + esh + estroke + etilde + etildebelow + eturned + schwa + ezh + ezhcaron + ezhreversed + fdotaccent + gacute + gamma-latin + gcaron + ghook + glottalstop + glottalstopreversed + glottalstopsmall + gmacron + gstroke + hbrevebelow + hcaron + hcedilla + hdieresis + hdotaccent + hdotbelow + heng + hhook + hturned + icaron + idblgrave + idieresisacute + idotbelow + iinvertedbreve + iota-latin + istroke + itilde + itildebelow + jcrossedtail + jstroke + kacute + kcaron + kdotbelow + khook + kmacronbelow + kstroke + lambdastroke + lbar + lbelt + lcircumflexbelow + ldotbelow + ldotbelowmacron + ldoublebar + lmacronbelow + lmiddletilde + macute + mdotaccent + mdotbelow + mturned + ncircumflexbelow + ndotaccent + ndotbelow + ngrave + nhookleft + nlegrightlong + nmacronbelow + obarred + ocaron + ocircumflexdotbelow + odblgrave + odieresismacron + odotaccent + odotaccentmacron + odotbelow + oinvertedbreve + omacronacute + omacrongrave + omega-latin + oogonek + oogonekmacron + oopen + oslashacute + otildeacute + otildedieresis + otildemacron + ou + pacute + pdotaccent + phook + pstroke + qhooktail + rdblgrave + rdotaccent + rdotbelow + rdotbelowmacron + rfishhook + rinvertedbreve + rmacronbelow + rstroke + rtail + sacutedotaccent + saltillo + scarondotaccent + sdotaccent + sdotbelow + sdotbelowdotaccent + sobliquestroke + tcircumflexbelow + tdiagonalstroke + tdotaccent + tdotbelow + thook + tmacronbelow + tretroflexhook + ubar + ucaron + ucircumflexbelow + udblgrave + udieresisacute + udieresisbelow + udieresiscaron + udieresisgrave + udieresismacron + udotbelow + uinvertedbreve + umacrondieresis + upsilon-latin + utilde + utildeacute + utildebelow + vdotbelow + vhook + vtilde + vturned + wdotaccent + wdotbelow + whook + xdieresis + xdotaccent + ydotaccent + yhook + ymacron + ystroke + zcircumflex + zdotbelow + zmacronbelow + zstroke + hmod + nmod + wmod + clickalveolar + clickdental + clicklateral + clickretroflex + umod + vmod + zmod + florin + colonmod + doubleapostrophemod + minusmod + shortequalmod + kip + rbelowcomb + gravecomb_macroncomb + acutecomb_macroncomb + macroncomb_gravecomb + macroncomb_acutecomb + verticallineabovecomb + dblgravecomb + candraBinducomb + breveinvertedcomb + commaabovecomb + ringbelowcomb + verticallinebelowcomb + circumflexbelowcomb + breveinvertedbelowcomb + tildebelowcomb + macronbelowcomb + lowlinecomb + tildeoverlaycomb + dotaboverightcomb + acutemacroncomb + gravemacroncomb + macronacutecomb + macrongravecomb + secondtonechinese + fourthtonechinese + commaturnedmod + glottalstopmod + ringhalfleft + ringhalfright + uniA7AE + uniA7B8 + uniA7B9 + + name + GF_Latin_African + + + list + + apostrophemod + lambda + chi + dotbelowcomb + Acaron + Astroke + Cstroke + Emacronacute + Emacrongrave + Eopen + Etilde + Schwa + Ezh + Ezhcaron + Gcaron + Glottalstop + Gmacron + Gstroke + Hdotbelow + Icaron + Idotbelow + Istroke + Itilde + Kacute + Kcaron + Kdotbelow + Kmacronbelow + Lbar + Ldotbelow + Lmiddletilde + Mdotbelow + Ndotbelow + Nmacronbelow + Ocaron + Omacronacute + Omacrongrave + Oogonek + Oogonekmacron + Oopen + Saltillo + Sdotbelow + Tdiagonalstroke + Tmacronbelow + Ucaron + Upsilon-latin + Utilde + Gamma-latin + Zcircumflex + Zmacronbelow + Ismall + acaron + astroke + chi-latin + cstroke + emacronacute + emacrongrave + eopen + etilde + schwa + ezh + ezhcaron + gamma-latin + gcaron + glottalstop + glottalstopreversed + gmacron + gstroke + hdotbelow + icaron + idotbelow + iota-latin + istroke + itilde + kacute + kcaron + kdotbelow + kmacronbelow + lambdastroke + lbar + lbelt + ldotbelow + lmiddletilde + mdotbelow + ndotbelow + nmacronbelow + ocaron + omacronacute + omacrongrave + oogonek + oogonekmacron + oopen + saltillo + sdotbelow + tdiagonalstroke + tmacronbelow + ucaron + upsilon-latin + utilde + zcircumflex + zmacronbelow + wmod + clickalveolar + zmod + commaabovecomb + macronbelowcomb + lowlinecomb + commaturnedmod + glottalstopmod + Ccircumflex + Gcircumflex + Hcircumflex + Jcircumflex + Scircumflex + Tbar + Tcedilla + Ytilde + ccircumflex + gcircumflex + hcircumflex + idotless_ogonek + jcaron + jcircumflex + kgreenlandic + scircumflex + tbar + tcedilla + ytilde + ymod + thetamod + degree + YturnedSansSerif + commaaboverightcomb + strokeshortcomb + primemod + verticallinemod + + name + GF_Latin_Beyond + + + list + + zero + one + two + three + four + five + six + seven + eight + nine + space + nbspace + period + colon + ellipsis + exclam + asterisk + numbersign + slash + backslash + hyphen + parenleft + parenright + braceleft + braceright + bracketleft + bracketright + quotedblleft + quotedblright + quoteleft + quoteright + guillemetleft + guillemetright + quotedbl + quotesingle + bar + plus + multiply + divide + equal + greater + less + percent + dieresiscomb + gravecomb + acutecomb + hungarumlautcomb + macroncomb + dotaccent + degree + A + Aacute + Abreve + Acircumflex + Adieresis + Agrave + Amacron + Aogonek + Aring + Atilde + AE + B + C + Cacute + Ccaron + Ccedilla + Cdotaccent + D + Eth + Dcaron + Dcroat + E + Eacute + Ecaron + Ecircumflex + Edieresis + Edotaccent + Egrave + Emacron + Eogonek + F + G + Gbreve + Gcommaaccent + Gdotaccent + H + Hbar + I + Iacute + Icircumflex + Idieresis + Idotaccent + Igrave + Imacron + Iogonek + J + K + Kcommaaccent + L + Lacute + Lcaron + Lcommaaccent + Lslash + M + N + Nacute + Ncaron + Ncommaaccent + Ntilde + Eng + O + Oacute + Ocircumflex + Odieresis + Ograve + Ohungarumlaut + Omacron + Oslash + Otilde + OE + P + Thorn + Q + R + Racute + Rcaron + Rcommaaccent + S + Sacute + Scaron + Scedilla + Scommaaccent + Germandbls + T + Tcaron + Tcommaaccent + U + Uacute + Ubreve + Ucircumflex + Udieresis + Ugrave + Uhungarumlaut + Umacron + Uogonek + Uring + V + W + Wacute + Wcircumflex + Wdieresis + Wgrave + X + Y + Yacute + Ycircumflex + Ydieresis + Ygrave + Z + Zacute + Zcaron + Zdotaccent + a + aacute + abreve + acircumflex + adieresis + agrave + amacron + aogonek + aring + atilde + ae + b + c + cacute + ccaron + ccedilla + cdotaccent + d + eth + dcaron + dcroat + e + eacute + ecaron + ecircumflex + edieresis + edotaccent + egrave + emacron + eogonek + f + g + gbreve + gcommaaccent + gdotaccent + h + hbar + i + idotless + iacute + icircumflex + idieresis + idotaccent + igrave + imacron + iogonek + j + jdotless + k + kcommaaccent + l + lacute + lcaron + lcommaaccent + lslash + m + n + nacute + ncaron + ncommaaccent + ntilde + eng + o + oacute + ocircumflex + odieresis + ograve + ohungarumlaut + omacron + oslash + otilde + oe + p + thorn + q + r + racute + rcaron + rcommaaccent + s + sacute + scaron + scedilla + scommaaccent + germandbls + t + tcaron + tcommaaccent + u + uacute + ubreve + ucircumflex + udieresis + ugrave + uhungarumlaut + umacron + uogonek + uring + v + w + wacute + wcircumflex + wdieresis + wgrave + x + y + yacute + ycircumflex + ydieresis + ygrave + z + zacute + zcaron + zdotaccent + ordfeminine + ordmasculine + .notdef + comma + semicolon + exclamdown + question + questiondown + periodcentered + bullet + periodcentered.loclCAT + periodcentered.loclCAT.case + endash + emdash + underscore + quotesinglbase + quotedblbase + guilsinglleft + guilsinglright + at + ampersand + paragraph + section + copyright + registered + trademark + cent + dollar + euro + sterling + yen + minus + asciitilde + asciicircum + dotaccentcomb + caroncomb.alt + circumflexcomb + caroncomb + brevecomb + ringcomb + tildecomb + commaturnedabovecomb + commaaccentcomb + cedillacomb + ogonekcomb + dieresis + grave + acute + hungarumlaut + circumflex + caron + breve + ring + tilde + macron + cedilla + ogonek + + name + GF_Latin_Core + + + list + + zero + one + two + three + four + five + six + seven + eight + nine + space + nbspace + period + colon + ellipsis + exclam + asterisk + numbersign + slash + backslash + hyphen + parenleft + parenright + braceleft + braceright + bracketleft + bracketright + quotedblleft + quotedblright + quoteleft + quoteright + quotedbl + quotesingle + bar + plus + multiply + divide + equal + greater + less + percent + degree + A + B + C + D + E + F + G + H + I + J + K + L + M + N + O + P + Q + R + S + T + U + V + W + X + Y + Z + a + b + c + d + e + f + g + h + i + j + k + l + m + n + o + p + q + r + s + t + u + v + w + x + y + z + .notdef + comma + semicolon + question + periodcentered + bullet + endash + emdash + underscore + at + ampersand + copyright + registered + trademark + cent + dollar + euro + sterling + yen + minus + asciitilde + asciicircum + grave + + name + GF_Latin_Kernel + + + list + + numero + hryvnia + tenge + tugrik + whiteSquare + pi + dblverticalbar + kip + zero.zero + zero.tf + one.tf + two.tf + three.tf + four.tf + five.tf + six.tf + seven.tf + eight.tf + nine.tf + 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 + onethird + twothirds + onequarter + threequarters + oneinferior + twoinferior + threeinferior + fourinferior + fiveinferior + sixinferior + seveninferior + eightinferior + nineinferior + onesuperior + twosuperior + threesuperior + foursuperior + fivesuperior + sixsuperior + sevensuperior + eightsuperior + ninesuperior + leftanglebracket-math + rightanglebracket-math + baht + minute + second + brokenbar + dagger + literSign + daggerdbl + estimated + bitcoin + cedi + colonsign + dong + guarani + lari + liraTurkish + manat + naira + peso + ruble + rupee + rupeeIndian + sheqel + won + notequal + greaterequal + lessequal + plusminus + approxequal + logicalnot + emptyset + infinity + integral + Ohm + increment + product + summation + radical + partialdiff + micro + perthousand + upArrow + northEastArrow + rightArrow + southEastArrow + downArrow + southWestArrow + leftArrow + northWestArrow + leftRightArrow + upDownArrow + blackCircle + whiteCircle + whiteBullet + blackDiamond + whiteDiamond + lozenge + blackSquare + blackSmallSquare + whiteSmallSquare + upBlackTriangle + rightBlackTriangle + downBlackTriangle + leftBlackTriangle + upWhiteTriangle + rightWhiteTriangle + downWhiteTriangle + leftWhiteTriangle + upBlackSmallTriangle + rightBlackSmallTriangle + downBlackSmallTriangle + leftBlackSmallTriangle + upWhiteSmallTriangle + rightWhiteSmallTriangle + downWhiteSmallTriangle + leftWhiteSmallTriangle + + name + GF_Latin_Plus + + + list + + dotbelowcomb + Acircumflexdotbelow + Ecircumflexdotbelow + Edotbelow + Etilde + Idotbelow + Itilde + Ocircumflexdotbelow + Odotbelow + Udotbelow + Utilde + acircumflexdotbelow + adotbelow + ecircumflexdotbelow + edotbelow + etilde + idotbelow + itilde + ocircumflexdotbelow + odotbelow + udotbelow + utilde + Ytilde + ytilde + Abreveacute + Abrevedotbelow + Abrevegrave + Abrevehookabove + Abrevetilde + Acircumflexacute + Acircumflexgrave + Acircumflexhookabove + Acircumflextilde + Adotbelow + Ahookabove + Ecircumflexacute + Ecircumflexgrave + Ecircumflexhookabove + Ecircumflextilde + Ehookabove + Ihookabove + Ocircumflexacute + Ocircumflexgrave + Ocircumflexhookabove + Ocircumflextilde + Ohookabove + Ohorn + Ohornacute + Ohorndotbelow + Ohorngrave + Ohornhookabove + Ohorntilde + Uhookabove + Uhorn + Uhornacute + Uhorndotbelow + Uhorngrave + Uhornhookabove + Uhorntilde + Ydotbelow + Yhookabove + abreveacute + abrevedotbelow + abrevegrave + abrevehookabove + abrevetilde + acircumflexacute + acircumflexgrave + acircumflexhookabove + acircumflextilde + ahookabove + ecircumflexacute + ecircumflexgrave + ecircumflexhookabove + ecircumflextilde + ehookabove + ihookabove + ocircumflexacute + ocircumflexgrave + ocircumflexhookabove + ocircumflextilde + ohookabove + ohorn + ohornacute + ohorndotbelow + ohorngrave + ohornhookabove + ohorntilde + uhookabove + uhorn + uhornacute + uhorndotbelow + uhorngrave + uhornhookabove + uhorntilde + ydotbelow + yhookabove + brevecomb_acutecomb + brevecomb_gravecomb + brevecomb_hookabovecomb + brevecomb_tildecomb + circumflexcomb_acutecomb + circumflexcomb_gravecomb + circumflexcomb_hookabovecomb + circumflexcomb_tildecomb + hookabovecomb + horncomb + + name + GF_Latin_Vietnamese + + + diff --git a/sources/RadioCanadaDisplay-Italic.glyphs b/sources/RadioCanadaDisplay-Italic.glyphs new file mode 100644 index 0000000..7b30ce5 --- /dev/null +++ b/sources/RadioCanadaDisplay-Italic.glyphs @@ -0,0 +1,73246 @@ +{ +.appVersion = "3249"; +.formatVersion = 3; +axes = ( +{ +name = Weight; +tag = wght; +} +); +classes = ( +{ +automatic = 1; +code = "A Aacute Abreve Acircumflex Adieresis Adotbelow Agrave Amacron Aogonek Aring Aringacute Atilde AE AEacute B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Dcaron Dcroat Eth E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Edotbelow Egrave Emacron Eogonek Etilde Schwa F G Gbreve Gcaron Gcircumflex Gcommaaccent Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Idotbelow Igrave Imacron Iogonek Itilde J Jcircumflex K Kcommaaccent L Lacute Lcaron Lcommaaccent Ldot Lslash M N Nacute Ncaron Ncommaaccent Nhookleft Ntilde Eng O Oacute Obreve Ocircumflex Odieresis Odotbelow Ograve Ohungarumlaut Omacron Oogonek Oslash Oslashacute 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 Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ygrave Ymacron Ytilde Z Zacute Zcaron Zdotaccent Delta Omega"; +name = Uppercase; +} +); +customParameters = ( +{ +name = fsType; +value = ( +); +}, +{ +name = "Use Typo Metrics"; +value = 1; +} +); +date = "2024-03-20 13:28:04 +0000"; +familyName = "Radio Canada Display"; +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; +"; +name = Languagesystems; +} +); +features = ( +{ +automatic = 1; +code = "feature locl; +feature sups; +feature frac; +feature ordn; +feature case; +feature pnum; +feature tnum; +"; +tag = aalt; +}, +{ +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; +"; +tag = locl; +}, +{ +code = "sub f f i by f_f_i; +sub f f ij by f_f_ij; +sub f f l by f_f_l; +sub f f by f_f; +sub f i by f_i; +sub f ij by f_ij; +sub f l by f_l;"; +tag = liga; +}, +{ +automatic = 1; +code = "lookup ccmp_Other_1 { + @CombiningTopAccents = [acutecomb brevecomb caroncomb circumflexcomb dieresiscomb dotaccentcomb gravecomb hungarumlautcomb macroncomb ringcomb tildecomb]; + lookupflag UseMarkFilteringSet @CombiningTopAccents; + sub i' @CombiningTopAccents by idotless; + sub j' @CombiningTopAccents by jdotless; +} ccmp_Other_1; + +lookup ccmp_Other_2 { + lookupflag 0; + @Markscomb = [dieresiscomb dotaccentcomb gravecomb acutecomb hungarumlautcomb circumflexcomb caroncomb brevecomb ringcomb tildecomb macroncomb]; + @MarkscombCase = [dieresiscomb.case dotaccentcomb.case gravecomb.case acutecomb.case hungarumlautcomb.case circumflexcomb.case caroncomb.case brevecomb.case ringcomb.case tildecomb.case macroncomb.case]; + sub @Uppercase @Markscomb' by @MarkscombCase; +} ccmp_Other_2; + +lookup ccmp_Other_3 { + lookupflag 0; + sub @MarkscombCase @Markscomb' by @MarkscombCase; +} ccmp_Other_3; + +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 = "sub one by onesuperior; +sub two by twosuperior; +sub three by threesuperior; +"; +tag = sups; +}, +{ +automatic = 1; +code = "sub one slash four by onequarter; +sub one slash two by onehalf; +sub three slash four by threequarters; +"; +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; +sub space.tf by space; +sub period.tf by period; +sub comma.tf by comma; +sub colon.tf by colon; +sub semicolon.tf by semicolon; +"; +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; +sub space by space.tf; +sub period by period.tf; +sub comma by comma.tf; +sub colon by colon.tf; +sub semicolon by semicolon.tf; +"; +tag = tnum; +}, +{ +automatic = 1; +code = "sub periodcentered.loclCAT by periodcentered.loclCAT.case; +sub dieresiscomb by dieresiscomb.case; +sub dotaccentcomb by dotaccentcomb.case; +sub gravecomb by gravecomb.case; +sub acutecomb by acutecomb.case; +sub hungarumlautcomb by hungarumlautcomb.case; +sub circumflexcomb by circumflexcomb.case; +sub caroncomb by caroncomb.case; +sub brevecomb by brevecomb.case; +sub ringcomb by ringcomb.case; +sub tildecomb by tildecomb.case; +sub macroncomb by macroncomb.case; +"; +tag = case; +}, +{ +automatic = 1; +code = "lookupflag IgnoreMarks; +sub f f ij by f_f_ij; +sub f ij by f_ij; +"; +tag = dlig; +} +); +fontMaster = ( +{ +axesValues = ( +400 +); +customParameters = ( +{ +name = typoAscender; +value = 950; +}, +{ +name = typoDescender; +value = -250; +}, +{ +name = typoLineGap; +value = 0; +}, +{ +name = hheaAscender; +value = 950; +}, +{ +name = hheaDescender; +value = -250; +}, +{ +name = hheaLineGap; +value = 0; +}, +{ +name = winAscent; +value = 1063; +}, +{ +name = winDescent; +value = 275; +} +); +id = m001; +metricValues = ( +{ +over = 10; +pos = 715; +}, +{ +over = 10; +pos = 690; +}, +{ +over = 10; +pos = 530; +}, +{ +over = -10; +}, +{ +over = -10; +pos = -175; +}, +{ +pos = 12; +} +); +name = Italic; +stemValues = ( +81, +87, +96, +0, +0 +); +userData = { +layerinfo.color = "1,0.75,0,0.7"; +}; +}, +{ +axesValues = ( +700 +); +customParameters = ( +{ +name = typoAscender; +value = 950; +}, +{ +name = typoDescender; +value = -250; +}, +{ +name = typoLineGap; +value = 0; +}, +{ +name = hheaAscender; +value = 950; +}, +{ +name = hheaDescender; +value = -250; +}, +{ +name = hheaLineGap; +value = 0; +}, +{ +name = winAscent; +value = 1063; +}, +{ +name = winDescent; +value = 275; +} +); +iconName = Bold; +id = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +metricValues = ( +{ +over = 14; +pos = 715; +}, +{ +over = 14; +pos = 690; +}, +{ +over = 14; +pos = 530; +}, +{ +over = -14; +}, +{ +over = -14; +pos = -175; +}, +{ +pos = 12; +} +); +name = "Bold Italic"; +stemValues = ( +123, +123, +123, +135, +145 +); +userData = { +layerinfo.color = "1,0.75,0,0.7"; +}; +} +); +glyphs = ( +{ +color = 6; +glyphname = A; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 14:21:14 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (274,0); +}, +{ +name = ogonek; +pos = (572,0); +}, +{ +name = top; +pos = (406,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (258,0); +}, +{ +name = top; +pos = (404.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(57,0,l), +(429,690,l), +(327,690,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,191,l), +(502,287,l), +(134,287,l), +(114,191,l) +); +}, +{ +closed = 1; +nodes = ( +(572,0,l), +(481,690,l), +(383,690,l), +(467,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(57,0,l), +(160,191,l), +(444,191,l), +(467,0,l), +(572,0,l), +(481,690,l), +(327,690,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(391,620,l), +(432,287,l), +(212,287,l) +); +} +); +width = 660; +}, +{ +anchors = ( +{ +name = bottom; +pos = (282,0); +}, +{ +name = ogonek; +pos = (602,0); +}, +{ +name = top; +pos = (411,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (264,0); +}, +{ +name = top; +pos = (410.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(450,690,l), +(293,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,158,l), +(511,295,l), +(143,295,l), +(114,158,l) +); +}, +{ +closed = 1; +nodes = ( +(602,0,l), +(530,690,l), +(380,690,l), +(443,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(182,158,l), +(429,158,l), +(443,0,l), +(602,0,l), +(530,690,l), +(293,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(391,572,l), +(416,295,l), +(251,295,l) +); +} +); +width = 675; +} +); +unicode = 65; +}, +{ +color = 10; +glyphname = Aacute; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 14:21:18 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(57,0,l), +(429,690,l), +(327,690,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,191,l), +(502,287,l), +(134,287,l), +(114,191,l) +); +}, +{ +closed = 1; +nodes = ( +(572,0,l), +(481,690,l), +(383,690,l), +(467,0,l) +); +}, +{ +closed = 1; +nodes = ( +(450,735,l), +(608,845,l), +(473,845,l), +(349,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (83,0); +ref = acutecomb.case; +} +); +width = 660; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(450,690,l), +(293,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,158,l), +(511,295,l), +(143,295,l), +(114,158,l) +); +}, +{ +closed = 1; +nodes = ( +(602,0,l), +(530,690,l), +(380,690,l), +(443,0,l) +); +}, +{ +closed = 1; +nodes = ( +(472,735,l), +(648,850,l), +(475,850,l), +(347,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = A; +}, +{ +pos = (89,0); +ref = acutecomb.case; +} +); +width = 675; +} +); +unicode = 193; +}, +{ +color = 10; +glyphname = Abreve; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 14:21:14 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(57,0,l), +(429,690,l), +(327,690,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,191,l), +(502,287,l), +(134,287,l), +(114,191,l) +); +}, +{ +closed = 1; +nodes = ( +(572,0,l), +(481,690,l), +(383,690,l), +(467,0,l) +); +}, +{ +closed = 1; +nodes = ( +(523,735,o), +(570,777,o), +(588,845,c), +(518,845,l), +(510,820,o), +(483,805,o), +(426,805,c), +(439,805,o), +(358,792,o), +(358,845,c), +(288,845,l), +(287,838,o), +(287,833,o), +(287,828,cs), +(287,773,o), +(335,735,o), +(423,735,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (82,0); +ref = brevecomb.case; +} +); +width = 660; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(450,690,l), +(293,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,158,l), +(511,295,l), +(143,295,l), +(114,158,l) +); +}, +{ +closed = 1; +nodes = ( +(602,0,l), +(530,690,l), +(380,690,l), +(443,0,l) +); +}, +{ +closed = 1; +nodes = ( +(535,730,o), +(588,779,o), +(604,850,c), +(507,850,l), +(499,827,o), +(477,814,o), +(436,814,c), +(395,814,o), +(383,827,o), +(383,850,c), +(286,850,l), +(285,843,o), +(284,837,o), +(284,831,cs), +(284,770,o), +(337,730,o), +(431,730,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = A; +}, +{ +pos = (87,0); +ref = brevecomb.case; +} +); +width = 675; +} +); +unicode = 258; +}, +{ +color = 10; +glyphname = Acircumflex; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 14:21:14 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(57,0,l), +(429,690,l), +(327,690,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,191,l), +(502,287,l), +(134,287,l), +(114,191,l) +); +}, +{ +closed = 1; +nodes = ( +(572,0,l), +(481,690,l), +(383,690,l), +(467,0,l) +); +}, +{ +closed = 1; +nodes = ( +(338,735,l), +(459,814,l), +(474,845,l), +(369,845,l), +(231,735,l) +); +}, +{ +closed = 1; +nodes = ( +(597,735,l), +(507,845,l), +(402,845,l), +(416,814,l), +(504,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (82,0); +ref = circumflexcomb.case; +} +); +width = 660; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(450,690,l), +(293,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,158,l), +(511,295,l), +(143,295,l), +(114,158,l) +); +}, +{ +closed = 1; +nodes = ( +(602,0,l), +(530,690,l), +(380,690,l), +(443,0,l) +); +}, +{ +closed = 1; +nodes = ( +(353,735,l), +(468,812,l), +(490,850,l), +(361,850,l), +(226,735,l) +); +}, +{ +closed = 1; +nodes = ( +(614,735,l), +(529,850,l), +(400,850,l), +(416,812,l), +(497,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = A; +}, +{ +pos = (87,0); +ref = circumflexcomb.case; +} +); +width = 675; +} +); +unicode = 194; +}, +{ +color = 10; +glyphname = Adieresis; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 14:21:14 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(57,0,l), +(429,690,l), +(327,690,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,191,l), +(502,287,l), +(134,287,l), +(114,191,l) +); +}, +{ +closed = 1; +nodes = ( +(572,0,l), +(481,690,l), +(383,690,l), +(467,0,l) +); +}, +{ +closed = 1; +nodes = ( +(356,742,o), +(382,767,o), +(382,802,c), +(382,834,o), +(361,855,o), +(330,855,c), +(295,855,o), +(270,830,o), +(270,793,c), +(270,763,o), +(291,742,o), +(321,742,c) +); +}, +{ +closed = 1; +nodes = ( +(559,742,o), +(585,767,o), +(585,802,c), +(585,834,o), +(564,855,o), +(533,855,c), +(498,855,o), +(473,830,o), +(473,793,c), +(473,763,o), +(494,742,o), +(524,742,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (83,0); +ref = dieresiscomb.case; +} +); +width = 660; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(450,690,l), +(293,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,158,l), +(511,295,l), +(143,295,l), +(114,158,l) +); +}, +{ +closed = 1; +nodes = ( +(602,0,l), +(530,690,l), +(380,690,l), +(443,0,l) +); +}, +{ +closed = 1; +nodes = ( +(363,742,o), +(395,770,o), +(395,813,c), +(395,850,o), +(371,873,o), +(330,873,c), +(288,873,o), +(256,845,o), +(256,802,c), +(256,765,o), +(279,742,o), +(321,742,c) +); +}, +{ +closed = 1; +nodes = ( +(583,742,o), +(615,770,o), +(615,813,c), +(615,850,o), +(591,873,o), +(550,873,c), +(508,873,o), +(476,845,o), +(476,802,c), +(476,765,o), +(499,742,o), +(541,742,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = A; +}, +{ +pos = (87,0); +ref = dieresiscomb.case; +} +); +width = 675; +} +); +unicode = 196; +}, +{ +color = 10; +glyphname = Adotbelow; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(57,0,l), +(429,690,l), +(327,690,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(262,-195,o), +(290,-168,o), +(290,-130,c), +(290,-95,o), +(267,-72,o), +(233,-72,c), +(195,-72,o), +(168,-99,o), +(168,-140,c), +(168,-172,o), +(191,-195,o), +(224,-195,c) +); +}, +{ +closed = 1; +nodes = ( +(482,191,l), +(502,287,l), +(134,287,l), +(114,191,l) +); +}, +{ +closed = 1; +nodes = ( +(572,0,l), +(481,690,l), +(383,690,l), +(467,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (98,0); +ref = dotbelow; +} +); +width = 660; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(450,690,l), +(293,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(278,-198,o), +(314,-166,o), +(314,-117,c), +(314,-75,o), +(287,-48,o), +(243,-48,c), +(198,-48,o), +(162,-80,o), +(162,-130,c), +(162,-171,o), +(189,-198,o), +(233,-198,c) +); +}, +{ +closed = 1; +nodes = ( +(482,158,l), +(511,295,l), +(143,295,l), +(114,158,l) +); +}, +{ +closed = 1; +nodes = ( +(602,0,l), +(530,690,l), +(380,690,l), +(443,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = A; +}, +{ +pos = (105,0); +ref = dotbelow; +} +); +width = 675; +} +); +unicode = 7840; +}, +{ +color = 10; +glyphname = Agrave; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 14:21:14 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(57,0,l), +(429,690,l), +(327,690,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,191,l), +(502,287,l), +(134,287,l), +(114,191,l) +); +}, +{ +closed = 1; +nodes = ( +(572,0,l), +(481,690,l), +(383,690,l), +(467,0,l) +); +}, +{ +closed = 1; +nodes = ( +(473,735,l), +(397,845,l), +(272,845,l), +(385,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (82,0); +ref = gravecomb.case; +} +); +width = 660; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(450,690,l), +(293,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,158,l), +(511,295,l), +(143,295,l), +(114,158,l) +); +}, +{ +closed = 1; +nodes = ( +(602,0,l), +(530,690,l), +(380,690,l), +(443,0,l) +); +}, +{ +closed = 1; +nodes = ( +(486,735,l), +(408,850,l), +(247,850,l), +(376,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = A; +}, +{ +pos = (86,0); +ref = gravecomb.case; +} +); +width = 675; +} +); +unicode = 192; +}, +{ +color = 10; +glyphname = Amacron; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 14:21:14 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(57,0,l), +(429,690,l), +(327,690,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,191,l), +(502,287,l), +(134,287,l), +(114,191,l) +); +}, +{ +closed = 1; +nodes = ( +(572,0,l), +(481,690,l), +(383,690,l), +(467,0,l) +); +}, +{ +closed = 1; +nodes = ( +(576,753,l), +(594,837,l), +(278,837,l), +(260,753,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (83,0); +ref = macroncomb.case; +} +); +width = 660; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(450,690,l), +(293,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,158,l), +(511,295,l), +(143,295,l), +(114,158,l) +); +}, +{ +closed = 1; +nodes = ( +(602,0,l), +(530,690,l), +(380,690,l), +(443,0,l) +); +}, +{ +closed = 1; +nodes = ( +(585,735,l), +(610,850,l), +(280,850,l), +(255,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = A; +}, +{ +pos = (88,0); +ref = macroncomb.case; +} +); +width = 675; +} +); +unicode = 256; +}, +{ +color = 10; +glyphname = Aogonek; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 14:03:05 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(57,0,l), +(429,690,l), +(327,690,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(478,-185,o), +(515,-176,o), +(537,-165,c), +(545,-84,l), +(520,-96,o), +(489,-106,o), +(463,-106,c), +(452,-106,o), +(446,-101,o), +(446,-93,cs), +(446,-72,o), +(483,-38,o), +(572,0,c), +(472,0,l), +(387,-35,o), +(358,-74,o), +(358,-118,c), +(358,-155,o), +(384,-185,o), +(446,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(482,191,l), +(502,287,l), +(134,287,l), +(114,191,l) +); +}, +{ +closed = 1; +nodes = ( +(572,0,l), +(481,690,l), +(383,690,l), +(467,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (342,0); +ref = ogonekcomb; +} +); +width = 660; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(450,690,l), +(293,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,-190,o), +(535,-183,o), +(566,-170,c), +(577,-75,l), +(555,-87,o), +(527,-96,o), +(508,-96,c), +(495,-96,o), +(488,-90,o), +(488,-82,cs), +(488,-65,o), +(513,-36,o), +(602,0,c), +(497,0,l), +(404,-36,o), +(373,-82,o), +(373,-121,c), +(373,-158,o), +(403,-190,o), +(472,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(482,158,l), +(511,295,l), +(143,295,l), +(114,158,l) +); +}, +{ +closed = 1; +nodes = ( +(602,0,l), +(530,690,l), +(380,690,l), +(443,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = A; +}, +{ +pos = (336,0); +ref = ogonekcomb; +} +); +width = 675; +} +); +unicode = 260; +}, +{ +color = 10; +glyphname = Aring; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 14:21:14 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(57,0,l), +(429,690,l), +(327,690,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,191,l), +(502,287,l), +(134,287,l), +(114,191,l) +); +}, +{ +closed = 1; +nodes = ( +(572,0,l), +(481,690,l), +(383,690,l), +(467,0,l) +); +}, +{ +closed = 1; +nodes = ( +(486,735,o), +(530,779,o), +(530,833,c), +(530,878,o), +(495,908,o), +(444,908,c), +(379,908,o), +(335,864,o), +(335,810,c), +(335,765,o), +(370,735,o), +(421,735,c) +); +}, +{ +closed = 1; +nodes = ( +(408,790,o), +(398,800,o), +(398,815,c), +(398,836,o), +(414,853,o), +(439,853,c), +(457,853,o), +(467,843,o), +(467,828,c), +(467,807,o), +(451,790,o), +(426,790,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (83,0); +ref = ringcomb.case; +} +); +width = 660; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(450,690,l), +(293,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,158,l), +(511,295,l), +(143,295,l), +(114,158,l) +); +}, +{ +closed = 1; +nodes = ( +(602,0,l), +(530,690,l), +(380,690,l), +(443,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,735,o), +(543,784,o), +(543,837,c), +(543,883,o), +(509,917,o), +(449,917,c), +(379,917,o), +(336,868,o), +(336,815,c), +(336,769,o), +(370,735,o), +(430,735,c) +); +}, +{ +closed = 1; +nodes = ( +(419,800,o), +(409,808,o), +(409,823,c), +(409,839,o), +(422,852,o), +(442,852,c), +(460,852,o), +(470,844,o), +(470,829,c), +(470,813,o), +(457,800,o), +(437,800,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = A; +}, +{ +pos = (88,0); +ref = ringcomb.case; +} +); +width = 675; +} +); +unicode = 197; +}, +{ +color = 10; +glyphname = Aringacute; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 14:21:18 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(57,0,l), +(429,690,l), +(327,690,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,191,l), +(502,287,l), +(134,287,l), +(114,191,l) +); +}, +{ +closed = 1; +nodes = ( +(572,0,l), +(481,690,l), +(383,690,l), +(467,0,l) +); +}, +{ +closed = 1; +nodes = ( +(486,735,o), +(530,779,o), +(530,833,c), +(530,878,o), +(495,908,o), +(444,908,c), +(379,908,o), +(335,864,o), +(335,810,c), +(335,765,o), +(370,735,o), +(421,735,c) +); +}, +{ +closed = 1; +nodes = ( +(408,790,o), +(398,800,o), +(398,815,c), +(398,836,o), +(414,853,o), +(439,853,c), +(457,853,o), +(467,843,o), +(467,828,c), +(467,807,o), +(451,790,o), +(426,790,c) +); +}, +{ +closed = 1; +nodes = ( +(498,925,l), +(638,1015,l), +(503,1015,l), +(402,925,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (83,0); +ref = ringcomb.case; +}, +{ +pos = (129,188); +ref = acutecomb.case; +} +); +width = 660; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(450,690,l), +(293,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,158,l), +(511,295,l), +(143,295,l), +(114,158,l) +); +}, +{ +closed = 1; +nodes = ( +(602,0,l), +(530,690,l), +(380,690,l), +(443,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,735,o), +(543,784,o), +(543,837,c), +(543,883,o), +(509,917,o), +(449,917,c), +(379,917,o), +(336,868,o), +(336,815,c), +(336,769,o), +(370,735,o), +(430,735,c) +); +}, +{ +closed = 1; +nodes = ( +(419,800,o), +(409,808,o), +(409,823,c), +(409,839,o), +(422,852,o), +(442,852,c), +(460,852,o), +(470,844,o), +(470,829,c), +(470,813,o), +(457,800,o), +(437,800,c) +); +}, +{ +closed = 1; +nodes = ( +(525,934,l), +(662,1017,l), +(500,1017,l), +(410,934,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = A; +}, +{ +pos = (88,0); +ref = ringcomb.case; +}, +{ +pos = (137,200); +ref = acutecomb.case; +} +); +width = 675; +} +); +unicode = 506; +}, +{ +color = 10; +glyphname = Atilde; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 14:21:14 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(57,0,l), +(429,690,l), +(327,690,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,191,l), +(502,287,l), +(134,287,l), +(114,191,l) +); +}, +{ +closed = 1; +nodes = ( +(572,0,l), +(481,690,l), +(383,690,l), +(467,0,l) +); +}, +{ +closed = 1; +nodes = ( +(324,735,l), +(326,757,o), +(339,773,o), +(362,773,c), +(398,773,o), +(425,735,o), +(482,735,c), +(545,735,o), +(584,777,o), +(596,845,c), +(528,845,l), +(526,823,o), +(513,807,o), +(490,807,c), +(455,807,o), +(427,845,o), +(370,845,c), +(307,845,o), +(268,803,o), +(256,735,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (83,0); +ref = tildecomb.case; +} +); +width = 660; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(450,690,l), +(293,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,158,l), +(511,295,l), +(143,295,l), +(114,158,l) +); +}, +{ +closed = 1; +nodes = ( +(602,0,l), +(530,690,l), +(380,690,l), +(443,0,l) +); +}, +{ +closed = 1; +nodes = ( +(337,735,l), +(338,761,o), +(354,772,o), +(371,772,c), +(404,772,o), +(426,735,o), +(491,735,c), +(554,735,o), +(601,781,o), +(613,854,c), +(529,854,l), +(528,828,o), +(512,817,o), +(495,817,c), +(464,817,o), +(440,854,o), +(375,854,c), +(311,854,o), +(264,808,o), +(253,735,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = A; +}, +{ +pos = (87,0); +ref = tildecomb.case; +} +); +width = 675; +} +); +unicode = 195; +}, +{ +color = 6; +glyphname = AE; +kernLeft = B; +kernRight = E; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (589,690); +} +); +background = { +anchors = ( +{ +name = top; +pos = (589,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(65,0,l), +(574,690,l), +(461,690,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,193,l), +(502,287,l), +(194,287,l), +(174,193,l) +); +}, +{ +closed = 1; +nodes = ( +(860,0,l), +(880,96,l), +(460,96,l), +(440,0,l) +); +}, +{ +closed = 1; +nodes = ( +(495,0,l), +(642,690,l), +(537,690,l), +(390,0,l) +); +}, +{ +closed = 1; +nodes = ( +(860,306,l), +(880,402,l), +(525,402,l), +(505,306,l) +); +}, +{ +closed = 1; +nodes = ( +(981,594,l), +(1002,690,l), +(587,690,l), +(566,594,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(65,0,l), +(574,690,l), +(461,690,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,193,l), +(502,287,l), +(194,287,l), +(174,193,l) +); +}, +{ +closed = 1; +nodes = ( +(860,0,l), +(880,96,l), +(460,96,l), +(440,0,l) +); +}, +{ +closed = 1; +nodes = ( +(495,0,l), +(642,690,l), +(537,690,l), +(390,0,l) +); +}, +{ +closed = 1; +nodes = ( +(860,306,l), +(880,402,l), +(525,402,l), +(505,306,l) +); +}, +{ +closed = 1; +nodes = ( +(981,594,l), +(1002,690,l), +(587,690,l), +(566,594,l) +); +} +); +width = 979; +}, +{ +anchors = ( +{ +name = top; +pos = (610,690); +} +); +background = { +anchors = ( +{ +name = top; +pos = (610,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(118,0,l), +(593,690,l), +(426,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(464,162,l), +(493,295,l), +(203,295,l), +(174,162,l) +); +}, +{ +closed = 1; +nodes = ( +(883,0,l), +(914,145,l), +(487,145,l), +(456,0,l) +); +}, +{ +closed = 1; +nodes = ( +(543,0,l), +(690,690,l), +(535,690,l), +(388,0,l) +); +}, +{ +closed = 1; +nodes = ( +(896,282,l), +(925,419,l), +(545,419,l), +(516,282,l) +); +}, +{ +closed = 1; +nodes = ( +(995,545,l), +(1026,690,l), +(603,690,l), +(572,545,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(118,0,l), +(593,690,l), +(426,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(464,162,l), +(493,295,l), +(203,295,l), +(174,162,l) +); +}, +{ +closed = 1; +nodes = ( +(883,0,l), +(914,145,l), +(487,145,l), +(456,0,l) +); +}, +{ +closed = 1; +nodes = ( +(543,0,l), +(690,690,l), +(535,690,l), +(388,0,l) +); +}, +{ +closed = 1; +nodes = ( +(896,282,l), +(925,419,l), +(545,419,l), +(516,282,l) +); +}, +{ +closed = 1; +nodes = ( +(995,545,l), +(1026,690,l), +(603,690,l), +(572,545,l) +); +} +); +width = 991; +} +); +unicode = 198; +}, +{ +color = 10; +glyphname = AEacute; +kernLeft = B; +kernRight = E; +lastChange = "2024-03-21 14:21:18 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(65,0,l), +(574,690,l), +(461,690,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,193,l), +(502,287,l), +(194,287,l), +(174,193,l) +); +}, +{ +closed = 1; +nodes = ( +(860,0,l), +(880,96,l), +(460,96,l), +(440,0,l) +); +}, +{ +closed = 1; +nodes = ( +(495,0,l), +(642,690,l), +(537,690,l), +(390,0,l) +); +}, +{ +closed = 1; +nodes = ( +(860,306,l), +(880,402,l), +(525,402,l), +(505,306,l) +); +}, +{ +closed = 1; +nodes = ( +(634,735,l), +(792,845,l), +(657,845,l), +(533,735,l) +); +}, +{ +closed = 1; +nodes = ( +(981,594,l), +(1002,690,l), +(587,690,l), +(566,594,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = AE; +}, +{ +pos = (266,0); +ref = acutecomb.case; +} +); +width = 979; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(118,0,l), +(593,690,l), +(426,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(464,162,l), +(493,295,l), +(203,295,l), +(174,162,l) +); +}, +{ +closed = 1; +nodes = ( +(883,0,l), +(914,145,l), +(487,145,l), +(456,0,l) +); +}, +{ +closed = 1; +nodes = ( +(543,0,l), +(690,690,l), +(535,690,l), +(388,0,l) +); +}, +{ +closed = 1; +nodes = ( +(896,282,l), +(925,419,l), +(545,419,l), +(516,282,l) +); +}, +{ +closed = 1; +nodes = ( +(995,545,l), +(1026,690,l), +(603,690,l), +(572,545,l) +); +}, +{ +closed = 1; +nodes = ( +(671,735,l), +(847,850,l), +(674,850,l), +(546,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = AE; +}, +{ +pos = (288,0); +ref = acutecomb.case; +} +); +width = 991; +} +); +unicode = 508; +}, +{ +color = 6; +glyphname = B; +kernLeft = H; +kernRight = B; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(283,0,l), +(457.365,0,o), +(559,95.833,o), +(559,230,c), +(559,322.647,o), +(479.418,381,o), +(373,381,c), +(133,381,l), +(119,313,l), +(334,313,l), +(413,313,o), +(453,285,o), +(453,232,c), +(453,159,o), +(399,93,o), +(275,93,c), +(72,93,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(324,344,l), +(498,344,o), +(598,417,o), +(598,530,c), +(598,629,o), +(519,690,o), +(409,690,c), +(199,690,l), +(179,597,l), +(386,597,l), +(459,597,o), +(495,567,o), +(495,518,c), +(495,454,o), +(444,399,o), +(327,399,c), +(129,399,l), +(117,344,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(283,0,ls), +(457,0,o), +(559,96,o), +(559,230,cs), +(559,293,o), +(522,341,o), +(464,364,c), +(551,393,o), +(598,452,o), +(598,530,cs), +(598,629,o), +(519,690,o), +(409,690,cs), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(174,313,l), +(334,313,ls), +(413,313,o), +(453,285,o), +(453,232,cs), +(453,159,o), +(399,93,o), +(275,93,cs), +(127,93,l) +); +}, +{ +closed = 1; +nodes = ( +(234,597,l), +(386,597,ls), +(459,597,o), +(495,567,o), +(495,518,cs), +(495,454,o), +(444,399,o), +(327,399,cs), +(192.004,399,l) +); +} +); +width = 623; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(285,0,l), +(475,0,o), +(578,101,o), +(578,232,c), +(578,320,o), +(505.481,380,o), +(380,380,c), +(143,380,l), +(123,287,l), +(333,287,l), +(396.526,287,o), +(418,265,o), +(418,231,c), +(418,180,o), +(385.692,144,o), +(298,144,c), +(88,144,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(366,349,l), +(522.617,349,o), +(612,424.981,o), +(612,525,c), +(612,621.462,o), +(538.862,690,o), +(410,690,c), +(204,690,l), +(173,546,l), +(387,546,l), +(436,546,o), +(457,524,o), +(457,491,c), +(457,449,o), +(425.5,414,o), +(352,414,c), +(137,414,l), +(127,349,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(285,0,ls), +(475,0,o), +(578,101,o), +(578,232,cs), +(578,294,o), +(542,342,o), +(478,365,c), +(564,392,o), +(612,452,o), +(612,525,cs), +(612,621,o), +(539,690,o), +(410,690,cs), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(205,287,l), +(333,287,ls), +(397,287,o), +(418,265,o), +(418,231,cs), +(418,180,o), +(386,144,o), +(298,144,cs), +(175,144,l) +); +}, +{ +closed = 1; +nodes = ( +(260,546,l), +(387,546,ls), +(436,546,o), +(457,524,o), +(457,491,cs), +(457,449,o), +(426,414,o), +(352,414,cs), +(232,414,l) +); +} +); +width = 636; +} +); +unicode = 66; +}, +{ +color = 6; +glyphname = C; +kernLeft = O; +kernRight = C; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (273,0); +}, +{ +name = top; +pos = (419.664,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (273,0); +}, +{ +name = top; +pos = (419.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(422,-10,o), +(539,77,o), +(600,208,c), +(497,240,l), +(460,149,o), +(386,88,o), +(295,88,c), +(198,88,o), +(146,146,o), +(146,254,cs), +(146,444,o), +(253,602,o), +(390,602,c), +(485,602,o), +(538,551,o), +(543,456,c), +(650,486,l), +(637,612,o), +(545,700,o), +(406,700,c), +(198,700,o), +(38,499,o), +(38,248,cs), +(38,94,o), +(132,-10,o), +(278,-10,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(422,-10,o), +(539,77,o), +(600,208,c), +(497,240,l), +(460,149,o), +(386,88,o), +(295,88,c), +(198,88,o), +(146,146,o), +(146,254,cs), +(146,444,o), +(253,602,o), +(390,602,c), +(485,602,o), +(538,551,o), +(543,456,c), +(650,486,l), +(637,612,o), +(545,700,o), +(406,700,c), +(198,700,o), +(38,499,o), +(38,248,cs), +(38,94,o), +(132,-10,o), +(278,-10,c) +); +} +); +width = 668; +}, +{ +anchors = ( +{ +name = bottom; +pos = (286,0); +}, +{ +name = top; +pos = (433,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (286,0); +}, +{ +name = top; +pos = (433,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(465.162,-14,o), +(587.445,85,o), +(635,227,c), +(477,262,l), +(452.576,185,o), +(397.152,132,o), +(322,132,c), +(231.588,132,o), +(196,193,o), +(196,278,c), +(196,432,o), +(277.825,558,o), +(392,558,c), +(472.585,558,o), +(505.203,506,o), +(510,432,c), +(671,466,l), +(657.267,607,o), +(564.08,704,o), +(414,704,c), +(189.882,704,o), +(33,506,o), +(33,267,c), +(33,107,o), +(137.094,-14,o), +(306,-14,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(465.162,-14,o), +(587.445,85,o), +(635,227,c), +(477,262,l), +(452.576,185,o), +(397.152,132,o), +(322,132,c), +(231.588,132,o), +(196,193,o), +(196,278,c), +(196,432,o), +(277.825,558,o), +(392,558,c), +(472.585,558,o), +(505.203,506,o), +(510,432,c), +(671,466,l), +(657.267,607,o), +(564.08,704,o), +(414,704,c), +(189.882,704,o), +(33,506,o), +(33,267,c), +(33,107,o), +(137.094,-14,o), +(306,-14,c) +); +} +); +width = 688; +} +); +unicode = 67; +}, +{ +color = 10; +glyphname = Cacute; +kernLeft = O; +kernRight = C; +lastChange = "2024-03-21 14:21:18 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(422,-10,o), +(539,77,o), +(600,208,c), +(497,240,l), +(460,149,o), +(386,88,o), +(295,88,c), +(198,88,o), +(146,146,o), +(146,254,cs), +(146,444,o), +(253,602,o), +(390,602,c), +(485,602,o), +(538,551,o), +(543,456,c), +(650,486,l), +(637,612,o), +(545,700,o), +(406,700,c), +(198,700,o), +(38,499,o), +(38,248,cs), +(38,94,o), +(132,-10,o), +(278,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(465,735,l), +(623,845,l), +(488,845,l), +(364,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = C; +}, +{ +pos = (97,0); +ref = acutecomb.case; +} +); +width = 668; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(465,-14,o), +(587,85,o), +(635,227,c), +(477,262,l), +(453,185,o), +(397,132,o), +(322,132,c), +(232,132,o), +(196,193,o), +(196,278,c), +(196,432,o), +(278,558,o), +(392,558,c), +(473,558,o), +(505,506,o), +(510,432,c), +(671,466,l), +(657,607,o), +(564,704,o), +(414,704,c), +(190,704,o), +(33,506,o), +(33,267,c), +(33,107,o), +(137,-14,o), +(306,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(494,735,l), +(670,850,l), +(497,850,l), +(369,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = C; +}, +{ +pos = (111,0); +ref = acutecomb.case; +} +); +width = 688; +} +); +unicode = 262; +}, +{ +color = 10; +glyphname = Ccaron; +kernLeft = O; +kernRight = C; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(422,-10,o), +(539,77,o), +(600,208,c), +(497,240,l), +(460,149,o), +(386,88,o), +(295,88,c), +(198,88,o), +(146,146,o), +(146,254,cs), +(146,444,o), +(253,602,o), +(390,602,c), +(485,602,o), +(538,551,o), +(543,456,c), +(650,486,l), +(637,612,o), +(545,700,o), +(406,700,c), +(198,700,o), +(38,499,o), +(38,248,cs), +(38,94,o), +(132,-10,o), +(278,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(465,735,l), +(451,766,l), +(363,845,l), +(270,845,l), +(360,735,l) +); +}, +{ +closed = 1; +nodes = ( +(498,735,l), +(636,845,l), +(529,845,l), +(408,766,l), +(393,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = C; +}, +{ +pos = (95,0); +ref = caroncomb.case; +} +); +width = 668; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(465,-14,o), +(587,85,o), +(635,227,c), +(477,262,l), +(453,185,o), +(397,132,o), +(322,132,c), +(232,132,o), +(196,193,o), +(196,278,c), +(196,432,o), +(278,558,o), +(392,558,c), +(473,558,o), +(505,506,o), +(510,432,c), +(671,466,l), +(657,607,o), +(564,704,o), +(414,704,c), +(190,704,o), +(33,506,o), +(33,267,c), +(33,107,o), +(137,-14,o), +(306,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(487,735,l), +(471,773,l), +(390,850,l), +(273,850,l), +(358,735,l) +); +}, +{ +closed = 1; +nodes = ( +(526,735,l), +(661,850,l), +(534,850,l), +(419,773,l), +(397,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = C; +}, +{ +pos = (108,0); +ref = caroncomb.case; +} +); +width = 688; +} +); +unicode = 268; +}, +{ +color = 10; +glyphname = Ccedilla; +kernLeft = O; +kernRight = C; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(422,-10,o), +(539,77,o), +(600,208,c), +(497,240,l), +(460,149,o), +(386,88,o), +(295,88,c), +(198,88,o), +(146,146,o), +(146,254,cs), +(146,444,o), +(253,602,o), +(390,602,c), +(485,602,o), +(538,551,o), +(543,456,c), +(650,486,l), +(637,612,o), +(545,700,o), +(406,700,c), +(198,700,o), +(38,499,o), +(38,248,cs), +(38,94,o), +(132,-10,o), +(278,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(295,-185,o), +(339,-144,o), +(339,-96,c), +(339,-55,o), +(310,-29,o), +(269,-29,c), +(278,-43,l), +(295,9,l), +(239,11,l), +(208,-73,l), +(220,-71,o), +(227,-70,o), +(238,-70,c), +(260,-70,o), +(271,-79,o), +(271,-94,c), +(271,-108,o), +(257,-119,o), +(232,-119,c), +(212,-119,o), +(197,-114,o), +(181,-105,c), +(154,-169,l), +(177,-180,o), +(201,-185,o), +(227,-185,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = C; +}, +{ +pos = (94,0); +ref = cedillacomb; +} +); +width = 668; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(465,-14,o), +(587,85,o), +(635,227,c), +(477,262,l), +(453,185,o), +(397,132,o), +(322,132,c), +(232,132,o), +(196,193,o), +(196,278,c), +(196,432,o), +(278,558,o), +(392,558,c), +(473,558,o), +(505,506,o), +(510,432,c), +(671,466,l), +(657,607,o), +(564,704,o), +(414,704,c), +(190,704,o), +(33,506,o), +(33,267,c), +(33,107,o), +(137,-14,o), +(306,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(328,-190,o), +(367,-146,o), +(367,-97,c), +(367,-57,o), +(338,-29,o), +(288,-29,c), +(297,-43,l), +(314,9,l), +(246,11,l), +(213,-80,l), +(225,-76,o), +(235,-74,o), +(247,-74,c), +(267,-74,o), +(277,-80,o), +(277,-91,c), +(277,-103,o), +(266,-109,o), +(243,-109,c), +(223,-109,o), +(201,-105,o), +(182,-94,c), +(153,-174,l), +(178,-185,o), +(208,-190,o), +(236,-190,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = C; +}, +{ +pos = (106,0); +ref = cedillacomb; +} +); +width = 688; +} +); +unicode = 199; +}, +{ +color = 10; +glyphname = Ccircumflex; +kernLeft = O; +kernRight = C; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(422,-10,o), +(539,77,o), +(600,208,c), +(497,240,l), +(460,149,o), +(386,88,o), +(295,88,c), +(198,88,o), +(146,146,o), +(146,254,cs), +(146,444,o), +(253,602,o), +(390,602,c), +(485,602,o), +(538,551,o), +(543,456,c), +(650,486,l), +(637,612,o), +(545,700,o), +(406,700,c), +(198,700,o), +(38,499,o), +(38,248,cs), +(38,94,o), +(132,-10,o), +(278,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(353,735,l), +(474,814,l), +(489,845,l), +(384,845,l), +(246,735,l) +); +}, +{ +closed = 1; +nodes = ( +(612,735,l), +(522,845,l), +(417,845,l), +(431,814,l), +(519,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = C; +}, +{ +pos = (96,0); +ref = circumflexcomb.case; +} +); +width = 668; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(465,-14,o), +(587,85,o), +(635,227,c), +(477,262,l), +(453,185,o), +(397,132,o), +(322,132,c), +(232,132,o), +(196,193,o), +(196,278,c), +(196,432,o), +(278,558,o), +(392,558,c), +(473,558,o), +(505,506,o), +(510,432,c), +(671,466,l), +(657,607,o), +(564,704,o), +(414,704,c), +(190,704,o), +(33,506,o), +(33,267,c), +(33,107,o), +(137,-14,o), +(306,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(375,735,l), +(490,812,l), +(512,850,l), +(383,850,l), +(248,735,l) +); +}, +{ +closed = 1; +nodes = ( +(636,735,l), +(551,850,l), +(422,850,l), +(438,812,l), +(519,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = C; +}, +{ +pos = (109,0); +ref = circumflexcomb.case; +} +); +width = 688; +} +); +unicode = 264; +}, +{ +color = 10; +glyphname = Cdotaccent; +kernLeft = O; +kernRight = C; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(422,-10,o), +(539,77,o), +(600,208,c), +(497,240,l), +(460,149,o), +(386,88,o), +(295,88,c), +(198,88,o), +(146,146,o), +(146,254,cs), +(146,444,o), +(253,602,o), +(390,602,c), +(485,602,o), +(538,551,o), +(543,456,c), +(650,486,l), +(637,612,o), +(545,700,o), +(406,700,c), +(198,700,o), +(38,499,o), +(38,248,cs), +(38,94,o), +(132,-10,o), +(278,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(475,735,o), +(503,760,o), +(503,795,c), +(503,827,o), +(480,848,o), +(446,848,c), +(408,848,o), +(381,823,o), +(381,785,c), +(381,756,o), +(404,735,o), +(437,735,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = C; +}, +{ +pos = (96,0); +ref = dotaccentcomb.case; +} +); +width = 668; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(465,-14,o), +(587,85,o), +(635,227,c), +(477,262,l), +(453,185,o), +(397,132,o), +(322,132,c), +(232,132,o), +(196,193,o), +(196,278,c), +(196,432,o), +(278,558,o), +(392,558,c), +(473,558,o), +(505,506,o), +(510,432,c), +(671,466,l), +(657,607,o), +(564,704,o), +(414,704,c), +(190,704,o), +(33,506,o), +(33,267,c), +(33,107,o), +(137,-14,o), +(306,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(499,741,o), +(535,771,o), +(535,817,c), +(535,856,o), +(508,881,o), +(464,881,c), +(419,881,o), +(383,851,o), +(383,804,c), +(383,766,o), +(410,741,o), +(454,741,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = C; +}, +{ +pos = (109,0); +ref = dotaccentcomb.case; +} +); +width = 688; +} +); +unicode = 266; +}, +{ +color = 6; +glyphname = D; +kernLeft = H; +kernRight = O; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (401.664,690); +} +); +background = { +anchors = ( +{ +name = top; +pos = (401.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(236,0,ls), +(488,0,o), +(642,195.565,o), +(642,441,cs), +(642,588.093,o), +(539,690,o), +(375,690,cs), +(199,690,l), +(178,594,l), +(352,594,ls), +(487,594,o), +(534,536.512,o), +(534,434,cs), +(534,249.491,o), +(426,96,o), +(246,96,cs), +(72,96,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(236,0,ls), +(488,0,o), +(642,195.565,o), +(642,441,cs), +(642,588.093,o), +(539,690,o), +(375,690,cs), +(199,690,l), +(178,594,l), +(352,594,ls), +(487,594,o), +(534,536.512,o), +(534,434,cs), +(534,249.491,o), +(426,96,o), +(246,96,cs), +(72,96,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +} +); +width = 678; +}, +{ +anchors = ( +{ +name = top; +pos = (383.664,690); +} +); +background = { +anchors = ( +{ +name = top; +pos = (383.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(259,0,l), +(505,0,o), +(660,193,o), +(660,424,c), +(660,575,o), +(561,690,o), +(388,690,c), +(204,690,l), +(173,545,l), +(368,545,l), +(464,545,o), +(499,488.267,o), +(499,412,c), +(499,266.25,o), +(415,145,o), +(280,145,c), +(88,145,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(259,0,l), +(505,0,o), +(660,193,o), +(660,424,c), +(660,575,o), +(561,690,o), +(388,690,c), +(204,690,l), +(173,545,l), +(368,545,l), +(464,545,o), +(499,488.267,o), +(499,412,c), +(499,266.25,o), +(415,145,o), +(280,145,c), +(88,145,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +} +); +width = 689; +} +); +unicode = 68; +}, +{ +color = 10; +glyphname = Dcaron; +kernLeft = H; +kernRight = O; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(236,0,ls), +(488,0,o), +(642,196,o), +(642,441,cs), +(642,588,o), +(539,690,o), +(375,690,cs), +(199,690,l), +(178,594,l), +(352,594,ls), +(487,594,o), +(534,537,o), +(534,434,cs), +(534,249,o), +(426,96,o), +(246,96,cs), +(72,96,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(447,735,l), +(433,766,l), +(345,845,l), +(252,845,l), +(342,735,l) +); +}, +{ +closed = 1; +nodes = ( +(480,735,l), +(618,845,l), +(511,845,l), +(390,766,l), +(375,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = D; +}, +{ +pos = (77,0); +ref = caroncomb.case; +} +); +width = 678; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(259,0,l), +(505,0,o), +(660,193,o), +(660,424,c), +(660,575,o), +(561,690,o), +(388,690,c), +(204,690,l), +(173,545,l), +(368,545,l), +(464,545,o), +(499,488,o), +(499,412,c), +(499,266,o), +(415,145,o), +(280,145,c), +(88,145,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(438,735,l), +(422,773,l), +(341,850,l), +(224,850,l), +(309,735,l) +); +}, +{ +closed = 1; +nodes = ( +(477,735,l), +(612,850,l), +(485,850,l), +(370,773,l), +(348,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = D; +}, +{ +pos = (59,0); +ref = caroncomb.case; +} +); +width = 689; +} +); +unicode = 270; +}, +{ +color = 10; +glyphname = Dcroat; +kernRight = O; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(251,0,ls), +(503,0,o), +(657,196,o), +(657,441,cs), +(657,588,o), +(554,690,o), +(390,690,cs), +(214,690,l), +(193,594,l), +(367,594,ls), +(502,594,o), +(549,537,o), +(549,434,cs), +(549,249,o), +(441,96,o), +(261,96,cs), +(87,96,l), +(67,0,l) +); +}, +{ +closed = 1; +nodes = ( +(122,0,l), +(269,690,l), +(164,690,l), +(17,0,l) +); +}, +{ +closed = 1; +nodes = ( +(355,295,l), +(374,386,l), +(29,386,l), +(10,295,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = Eth; +} +); +width = 693; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(269,0,l), +(515,0,o), +(670,193,o), +(670,424,c), +(670,575,o), +(571,690,o), +(398,690,c), +(214,690,l), +(183,545,l), +(378,545,l), +(474,545,o), +(509,488,o), +(509,412,c), +(509,266,o), +(425,145,o), +(290,145,c), +(98,145,l), +(67,0,l) +); +}, +{ +closed = 1; +nodes = ( +(154,0,l), +(301,690,l), +(146,690,l), +(-1,0,l) +); +}, +{ +closed = 1; +nodes = ( +(355,280,l), +(380,401,l), +(22,401,l), +(-3,280,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = Eth; +} +); +width = 699; +} +); +unicode = 272; +}, +{ +color = 6; +glyphname = Eth; +kernRight = O; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(251,0,ls), +(503,0,o), +(657,196,o), +(657,441,cs), +(657,588,o), +(554,690,o), +(390,690,cs), +(214,690,l), +(193,594,l), +(367,594,ls), +(502,594,o), +(549,537,o), +(549,434,cs), +(549,249,o), +(441,96,o), +(261,96,cs), +(87,96,l), +(67,0,l) +); +}, +{ +closed = 1; +nodes = ( +(122,0,l), +(269,690,l), +(164,690,l), +(17,0,l) +); +}, +{ +closed = 1; +nodes = ( +(355,295,l), +(374,386,l), +(29,386,l), +(10,295,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(251,0,ls), +(503,0,o), +(657,196,o), +(657,441,cs), +(657,588,o), +(554,690,o), +(390,690,cs), +(214,690,l), +(193,594,l), +(367,594,ls), +(502,594,o), +(549,537,o), +(549,434,cs), +(549,249,o), +(441,96,o), +(261,96,cs), +(87,96,l), +(67,0,l) +); +}, +{ +closed = 1; +nodes = ( +(122,0,l), +(269,690,l), +(164,690,l), +(17,0,l) +); +}, +{ +closed = 1; +nodes = ( +(355,295,l), +(374,386,l), +(29,386,l), +(10,295,l) +); +} +); +width = 693; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(269,0,l), +(515,0,o), +(670,193,o), +(670,424,c), +(670,575,o), +(571,690,o), +(398,690,c), +(214,690,l), +(183,545,l), +(378,545,l), +(474,545,o), +(509,488,o), +(509,412,c), +(509,266,o), +(425,145,o), +(290,145,c), +(98,145,l), +(67,0,l) +); +}, +{ +closed = 1; +nodes = ( +(154,0,l), +(301,690,l), +(146,690,l), +(-1,0,l) +); +}, +{ +closed = 1; +nodes = ( +(355,280,l), +(380,401,l), +(22,401,l), +(-3,280,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(269,0,l), +(515,0,o), +(670,193,o), +(670,424,c), +(670,575,o), +(571,690,o), +(398,690,c), +(214,690,l), +(183,545,l), +(378,545,l), +(474,545,o), +(509,488,o), +(509,412,c), +(509,266,o), +(425,145,o), +(290,145,c), +(98,145,l), +(67,0,l) +); +}, +{ +closed = 1; +nodes = ( +(154,0,l), +(301,690,l), +(146,690,l), +(-1,0,l) +); +}, +{ +closed = 1; +nodes = ( +(355,280,l), +(380,401,l), +(22,401,l), +(-3,280,l) +); +} +); +width = 699; +} +); +unicode = 208; +}, +{ +color = 6; +glyphname = E; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 14:03:07 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (252,0); +}, +{ +name = ogonek; +pos = (492,0); +}, +{ +name = top; +pos = (398.664,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (252,0); +}, +{ +name = top; +pos = (398.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,0,l), +(512,96,l), +(72,96,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,306,l), +(512,402,l), +(137,402,l), +(117,306,l) +); +}, +{ +closed = 1; +nodes = ( +(613,594,l), +(634,690,l), +(199,690,l), +(178,594,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,0,l), +(512,96,l), +(72,96,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,306,l), +(512,402,l), +(137,402,l), +(117,306,l) +); +}, +{ +closed = 1; +nodes = ( +(613,594,l), +(634,690,l), +(199,690,l), +(178,594,l) +); +} +); +width = 611; +}, +{ +anchors = ( +{ +name = bottom; +pos = (254,0); +}, +{ +name = ogonek; +pos = (509,0); +}, +{ +name = top; +pos = (400.664,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (254,0); +}, +{ +name = top; +pos = (400.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(509,0,l), +(540,145,l), +(88,145,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(522,282,l), +(551,419,l), +(146,419,l), +(117,282,l) +); +}, +{ +closed = 1; +nodes = ( +(621,545,l), +(652,690,l), +(204,690,l), +(173,545,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(509,0,l), +(540,145,l), +(88,145,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(522,282,l), +(551,419,l), +(146,419,l), +(117,282,l) +); +}, +{ +closed = 1; +nodes = ( +(621,545,l), +(652,690,l), +(204,690,l), +(173,545,l) +); +} +); +width = 617; +} +); +unicode = 69; +}, +{ +color = 10; +glyphname = Eacute; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 14:21:18 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,0,l), +(512,96,l), +(72,96,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,306,l), +(512,402,l), +(137,402,l), +(117,306,l) +); +}, +{ +closed = 1; +nodes = ( +(613,594,l), +(634,690,l), +(199,690,l), +(178,594,l) +); +}, +{ +closed = 1; +nodes = ( +(444,735,l), +(602,845,l), +(467,845,l), +(343,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (76,0); +ref = acutecomb.case; +} +); +width = 611; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(509,0,l), +(540,145,l), +(88,145,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(522,282,l), +(551,419,l), +(146,419,l), +(117,282,l) +); +}, +{ +closed = 1; +nodes = ( +(621,545,l), +(652,690,l), +(204,690,l), +(173,545,l) +); +}, +{ +closed = 1; +nodes = ( +(462,735,l), +(638,850,l), +(465,850,l), +(337,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = E; +}, +{ +pos = (79,0); +ref = acutecomb.case; +} +); +width = 617; +} +); +unicode = 201; +}, +{ +color = 10; +glyphname = Ebreve; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,0,l), +(512,96,l), +(72,96,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,306,l), +(512,402,l), +(137,402,l), +(117,306,l) +); +}, +{ +closed = 1; +nodes = ( +(613,594,l), +(634,690,l), +(199,690,l), +(178,594,l) +); +}, +{ +closed = 1; +nodes = ( +(517,735,o), +(564,777,o), +(582,845,c), +(512,845,l), +(504,820,o), +(477,805,o), +(420,805,c), +(368,805,o), +(352,818,o), +(352,841,cs), +(352,845,l), +(282,845,l), +(281,838,o), +(281,833,o), +(281,828,cs), +(281,773,o), +(329,735,o), +(417,735,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = brevecomb.case; +} +); +width = 611; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(509,0,l), +(540,145,l), +(88,145,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(522,282,l), +(551,419,l), +(146,419,l), +(117,282,l) +); +}, +{ +closed = 1; +nodes = ( +(621,545,l), +(652,690,l), +(204,690,l), +(173,545,l) +); +}, +{ +closed = 1; +nodes = ( +(525,730,o), +(578,779,o), +(594,850,c), +(497,850,l), +(489,827,o), +(467,814,o), +(426,814,c), +(385,814,o), +(373,827,o), +(373,850,c), +(276,850,l), +(275,843,o), +(274,837,o), +(274,831,cs), +(274,770,o), +(327,730,o), +(421,730,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = E; +}, +{ +pos = (77,0); +ref = brevecomb.case; +} +); +width = 617; +} +); +unicode = 276; +}, +{ +color = 10; +glyphname = Ecaron; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,0,l), +(512,96,l), +(72,96,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,306,l), +(512,402,l), +(137,402,l), +(117,306,l) +); +}, +{ +closed = 1; +nodes = ( +(613,594,l), +(634,690,l), +(199,690,l), +(178,594,l) +); +}, +{ +closed = 1; +nodes = ( +(444,735,l), +(430,766,l), +(342,845,l), +(249,845,l), +(339,735,l) +); +}, +{ +closed = 1; +nodes = ( +(477,735,l), +(615,845,l), +(508,845,l), +(387,766,l), +(372,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (74,0); +ref = caroncomb.case; +} +); +width = 611; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(509,0,l), +(540,145,l), +(88,145,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(522,282,l), +(551,419,l), +(146,419,l), +(117,282,l) +); +}, +{ +closed = 1; +nodes = ( +(621,545,l), +(652,690,l), +(204,690,l), +(173,545,l) +); +}, +{ +closed = 1; +nodes = ( +(455,735,l), +(439,773,l), +(358,850,l), +(241,850,l), +(326,735,l) +); +}, +{ +closed = 1; +nodes = ( +(494,735,l), +(629,850,l), +(502,850,l), +(387,773,l), +(365,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = E; +}, +{ +pos = (76,0); +ref = caroncomb.case; +} +); +width = 617; +} +); +unicode = 282; +}, +{ +color = 10; +glyphname = Ecircumflex; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,0,l), +(512,96,l), +(72,96,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,306,l), +(512,402,l), +(137,402,l), +(117,306,l) +); +}, +{ +closed = 1; +nodes = ( +(613,594,l), +(634,690,l), +(199,690,l), +(178,594,l) +); +}, +{ +closed = 1; +nodes = ( +(332,735,l), +(453,814,l), +(468,845,l), +(363,845,l), +(225,735,l) +); +}, +{ +closed = 1; +nodes = ( +(591,735,l), +(501,845,l), +(396,845,l), +(410,814,l), +(498,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = circumflexcomb.case; +} +); +width = 611; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(509,0,l), +(540,145,l), +(88,145,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(522,282,l), +(551,419,l), +(146,419,l), +(117,282,l) +); +}, +{ +closed = 1; +nodes = ( +(621,545,l), +(652,690,l), +(204,690,l), +(173,545,l) +); +}, +{ +closed = 1; +nodes = ( +(343,735,l), +(458,812,l), +(480,850,l), +(351,850,l), +(216,735,l) +); +}, +{ +closed = 1; +nodes = ( +(604,735,l), +(519,850,l), +(390,850,l), +(406,812,l), +(487,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = E; +}, +{ +pos = (77,0); +ref = circumflexcomb.case; +} +); +width = 617; +} +); +unicode = 202; +}, +{ +color = 10; +glyphname = Edieresis; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,0,l), +(512,96,l), +(72,96,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,306,l), +(512,402,l), +(137,402,l), +(117,306,l) +); +}, +{ +closed = 1; +nodes = ( +(613,594,l), +(634,690,l), +(199,690,l), +(178,594,l) +); +}, +{ +closed = 1; +nodes = ( +(350,742,o), +(376,767,o), +(376,802,c), +(376,834,o), +(355,855,o), +(324,855,c), +(289,855,o), +(264,830,o), +(264,793,c), +(264,763,o), +(285,742,o), +(315,742,c) +); +}, +{ +closed = 1; +nodes = ( +(553,742,o), +(579,767,o), +(579,802,c), +(579,834,o), +(558,855,o), +(527,855,c), +(492,855,o), +(467,830,o), +(467,793,c), +(467,763,o), +(488,742,o), +(518,742,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (76,0); +ref = dieresiscomb.case; +} +); +width = 611; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(509,0,l), +(540,145,l), +(88,145,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(522,282,l), +(551,419,l), +(146,419,l), +(117,282,l) +); +}, +{ +closed = 1; +nodes = ( +(621,545,l), +(652,690,l), +(204,690,l), +(173,545,l) +); +}, +{ +closed = 1; +nodes = ( +(353,742,o), +(385,770,o), +(385,813,c), +(385,850,o), +(361,873,o), +(320,873,c), +(278,873,o), +(246,845,o), +(246,802,c), +(246,765,o), +(269,742,o), +(311,742,c) +); +}, +{ +closed = 1; +nodes = ( +(573,742,o), +(605,770,o), +(605,813,c), +(605,850,o), +(581,873,o), +(540,873,c), +(498,873,o), +(466,845,o), +(466,802,c), +(466,765,o), +(489,742,o), +(531,742,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = E; +}, +{ +pos = (77,0); +ref = dieresiscomb.case; +} +); +width = 617; +} +); +unicode = 203; +}, +{ +color = 10; +glyphname = Edotaccent; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,0,l), +(512,96,l), +(72,96,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,306,l), +(512,402,l), +(137,402,l), +(117,306,l) +); +}, +{ +closed = 1; +nodes = ( +(613,594,l), +(634,690,l), +(199,690,l), +(178,594,l) +); +}, +{ +closed = 1; +nodes = ( +(454,735,o), +(482,760,o), +(482,795,c), +(482,827,o), +(459,848,o), +(425,848,c), +(387,848,o), +(360,823,o), +(360,785,c), +(360,756,o), +(383,735,o), +(416,735,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = dotaccentcomb.case; +} +); +width = 611; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(509,0,l), +(540,145,l), +(88,145,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(522,282,l), +(551,419,l), +(146,419,l), +(117,282,l) +); +}, +{ +closed = 1; +nodes = ( +(621,545,l), +(652,690,l), +(204,690,l), +(173,545,l) +); +}, +{ +closed = 1; +nodes = ( +(467,741,o), +(503,771,o), +(503,817,c), +(503,856,o), +(476,881,o), +(432,881,c), +(387,881,o), +(351,851,o), +(351,804,c), +(351,766,o), +(378,741,o), +(422,741,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = E; +}, +{ +pos = (77,0); +ref = dotaccentcomb.case; +} +); +width = 617; +} +); +unicode = 278; +}, +{ +color = 10; +glyphname = Edotbelow; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(256,-195,o), +(284,-168,o), +(284,-130,c), +(284,-95,o), +(261,-72,o), +(227,-72,c), +(189,-72,o), +(162,-99,o), +(162,-140,c), +(162,-172,o), +(185,-195,o), +(218,-195,c) +); +}, +{ +closed = 1; +nodes = ( +(492,0,l), +(512,96,l), +(72,96,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,306,l), +(512,402,l), +(137,402,l), +(117,306,l) +); +}, +{ +closed = 1; +nodes = ( +(613,594,l), +(634,690,l), +(199,690,l), +(178,594,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (76,0); +ref = dotbelow; +} +); +width = 611; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(268,-198,o), +(304,-166,o), +(304,-117,c), +(304,-75,o), +(277,-48,o), +(233,-48,c), +(188,-48,o), +(152,-80,o), +(152,-130,c), +(152,-171,o), +(179,-198,o), +(223,-198,c) +); +}, +{ +closed = 1; +nodes = ( +(509,0,l), +(540,145,l), +(88,145,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(522,282,l), +(551,419,l), +(146,419,l), +(117,282,l) +); +}, +{ +closed = 1; +nodes = ( +(621,545,l), +(652,690,l), +(204,690,l), +(173,545,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = E; +}, +{ +pos = (77,0); +ref = dotbelow; +} +); +width = 617; +} +); +unicode = 7864; +}, +{ +color = 10; +glyphname = Egrave; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,0,l), +(512,96,l), +(72,96,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,306,l), +(512,402,l), +(137,402,l), +(117,306,l) +); +}, +{ +closed = 1; +nodes = ( +(613,594,l), +(634,690,l), +(199,690,l), +(178,594,l) +); +}, +{ +closed = 1; +nodes = ( +(467,735,l), +(391,845,l), +(266,845,l), +(379,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = gravecomb.case; +} +); +width = 611; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(509,0,l), +(540,145,l), +(88,145,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(522,282,l), +(551,419,l), +(146,419,l), +(117,282,l) +); +}, +{ +closed = 1; +nodes = ( +(621,545,l), +(652,690,l), +(204,690,l), +(173,545,l) +); +}, +{ +closed = 1; +nodes = ( +(476,735,l), +(398,850,l), +(237,850,l), +(366,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = E; +}, +{ +pos = (76,0); +ref = gravecomb.case; +} +); +width = 617; +} +); +unicode = 200; +}, +{ +color = 10; +glyphname = Emacron; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,0,l), +(512,96,l), +(72,96,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,306,l), +(512,402,l), +(137,402,l), +(117,306,l) +); +}, +{ +closed = 1; +nodes = ( +(613,594,l), +(634,690,l), +(199,690,l), +(178,594,l) +); +}, +{ +closed = 1; +nodes = ( +(570,753,l), +(588,837,l), +(272,837,l), +(254,753,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (76,0); +ref = macroncomb.case; +} +); +width = 611; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(509,0,l), +(540,145,l), +(88,145,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(522,282,l), +(551,419,l), +(146,419,l), +(117,282,l) +); +}, +{ +closed = 1; +nodes = ( +(621,545,l), +(652,690,l), +(204,690,l), +(173,545,l) +); +}, +{ +closed = 1; +nodes = ( +(575,735,l), +(600,850,l), +(270,850,l), +(245,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = E; +}, +{ +pos = (78,0); +ref = macroncomb.case; +} +); +width = 617; +} +); +unicode = 274; +}, +{ +color = 10; +glyphname = Eogonek; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 14:03:12 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(398,-185,o), +(435,-176,o), +(457,-165,c), +(465,-84,l), +(440,-96,o), +(409,-106,o), +(383,-106,c), +(372,-106,o), +(366,-101,o), +(366,-93,cs), +(366,-72,o), +(403,-38,o), +(492,0,c), +(392,0,l), +(307,-35,o), +(278,-74,o), +(278,-118,c), +(278,-155,o), +(304,-185,o), +(366,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(492,0,l), +(512,96,l), +(72,96,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,306,l), +(512,402,l), +(137,402,l), +(117,306,l) +); +}, +{ +closed = 1; +nodes = ( +(613,594,l), +(634,690,l), +(199,690,l), +(178,594,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (262,0); +ref = ogonekcomb; +} +); +width = 611; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(407,-190,o), +(442,-183,o), +(473,-170,c), +(484,-75,l), +(462,-87,o), +(434,-96,o), +(415,-96,c), +(402,-96,o), +(395,-90,o), +(395,-82,cs), +(395,-65,o), +(420,-36,o), +(509,0,c), +(404,0,l), +(311,-36,o), +(280,-82,o), +(280,-121,c), +(280,-158,o), +(310,-190,o), +(379,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(509,0,l), +(540,145,l), +(88,145,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(522,282,l), +(551,419,l), +(146,419,l), +(117,282,l) +); +}, +{ +closed = 1; +nodes = ( +(621,545,l), +(652,690,l), +(204,690,l), +(173,545,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = E; +}, +{ +pos = (243,0); +ref = ogonekcomb; +} +); +width = 617; +} +); +unicode = 280; +}, +{ +color = 10; +glyphname = Etilde; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,0,l), +(512,96,l), +(72,96,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,306,l), +(512,402,l), +(137,402,l), +(117,306,l) +); +}, +{ +closed = 1; +nodes = ( +(613,594,l), +(634,690,l), +(199,690,l), +(178,594,l) +); +}, +{ +closed = 1; +nodes = ( +(318,735,l), +(320,757,o), +(333,773,o), +(356,773,c), +(392,773,o), +(419,735,o), +(476,735,c), +(539,735,o), +(578,777,o), +(590,845,c), +(522,845,l), +(520,823,o), +(507,807,o), +(484,807,c), +(449,807,o), +(421,845,o), +(364,845,c), +(301,845,o), +(262,803,o), +(250,735,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (76,0); +ref = tildecomb.case; +} +); +width = 611; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(509,0,l), +(540,145,l), +(88,145,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(522,282,l), +(551,419,l), +(146,419,l), +(117,282,l) +); +}, +{ +closed = 1; +nodes = ( +(621,545,l), +(652,690,l), +(204,690,l), +(173,545,l) +); +}, +{ +closed = 1; +nodes = ( +(327,735,l), +(328,761,o), +(344,772,o), +(361,772,c), +(394,772,o), +(416,735,o), +(481,735,c), +(544,735,o), +(591,781,o), +(603,854,c), +(519,854,l), +(518,828,o), +(502,817,o), +(485,817,c), +(454,817,o), +(430,854,o), +(365,854,c), +(301,854,o), +(254,808,o), +(243,735,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = E; +}, +{ +pos = (77,0); +ref = tildecomb.case; +} +); +width = 617; +} +); +unicode = 7868; +}, +{ +color = 6; +glyphname = Schwa; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(500,-10,o), +(662,190,o), +(662,441,cs), +(662,594,o), +(565,700,o), +(410,700,c), +(286,700,o), +(179,631,o), +(112,523,c), +(202,476,l), +(247,553,o), +(316,602,o), +(394,602,c), +(499,602,o), +(554,543,o), +(554,434,cs), +(554,244,o), +(445,88,o), +(305,88,c), +(199,88,o), +(145,146,o), +(145,254,cs), +(145,287,o), +(148,318,o), +(154,348,c), +(115,283,l), +(567,283,l), +(588,379,l), +(54,379,l), +(42,338,o), +(37,294,o), +(37,248,cs), +(37,94,o), +(133,-10,o), +(288,-10,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(500,-10,o), +(662,190,o), +(662,441,cs), +(662,594,o), +(565,700,o), +(410,700,c), +(286,700,o), +(179,631,o), +(112,523,c), +(202,476,l), +(247,553,o), +(316,602,o), +(394,602,c), +(499,602,o), +(554,543,o), +(554,434,cs), +(554,244,o), +(445,88,o), +(305,88,c), +(199,88,o), +(145,146,o), +(145,254,cs), +(145,287,o), +(148,318,o), +(154,348,c), +(115,283,l), +(567,283,l), +(588,379,l), +(54,379,l), +(42,338,o), +(37,294,o), +(37,248,cs), +(37,94,o), +(133,-10,o), +(288,-10,c) +); +} +); +width = 698; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(536,-14,o), +(696,185,o), +(696,424,c), +(696,584,o), +(595,704,o), +(422,704,c), +(290,704,o), +(180,638,o), +(111,537,c), +(245,466,l), +(282,522,o), +(336,558,o), +(400,558,c), +(496,558,o), +(533,497,o), +(533,412,c), +(533,258,o), +(447,131,o), +(327,131,c), +(231,131,o), +(190,188,o), +(190,278,c), +(190,301,o), +(192,324,o), +(196,345,c), +(128,275,l), +(565,275,l), +(594,409,l), +(53,409,l), +(39,364,o), +(31,317,o), +(31,267,c), +(31,107,o), +(133,-14,o), +(305,-14,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(536,-14,o), +(696,185,o), +(696,424,c), +(696,584,o), +(595,704,o), +(422,704,c), +(290,704,o), +(180,638,o), +(111,537,c), +(245,466,l), +(282,522,o), +(336,558,o), +(400,558,c), +(496,558,o), +(533,497,o), +(533,412,c), +(533,258,o), +(447,131,o), +(327,131,c), +(231,131,o), +(190,188,o), +(190,278,c), +(190,301,o), +(192,324,o), +(196,345,c), +(128,275,l), +(565,275,l), +(594,409,l), +(53,409,l), +(39,364,o), +(31,317,o), +(31,267,c), +(31,107,o), +(133,-14,o), +(305,-14,c) +); +} +); +width = 727; +} +); +unicode = 399; +}, +{ +color = 6; +glyphname = F; +kernLeft = H; +kernRight = F; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(488,286,l), +(508,382,l), +(133,382,l), +(113,286,l) +); +}, +{ +closed = 1; +nodes = ( +(593,594,l), +(614,690,l), +(199,690,l), +(178,594,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(488,286,l), +(508,382,l), +(133,382,l), +(113,286,l) +); +}, +{ +closed = 1; +nodes = ( +(593,594,l), +(614,690,l), +(199,690,l), +(178,594,l) +); +} +); +width = 575; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,262,l), +(529,399,l), +(142,399,l), +(113,262,l) +); +}, +{ +closed = 1; +nodes = ( +(601,545,l), +(632,690,l), +(204,690,l), +(173,545,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,262,l), +(529,399,l), +(142,399,l), +(113,262,l) +); +}, +{ +closed = 1; +nodes = ( +(601,545,l), +(632,690,l), +(204,690,l), +(173,545,l) +); +} +); +width = 582; +} +); +unicode = 70; +}, +{ +color = 6; +glyphname = G; +kernLeft = O; +kernRight = G; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (278,0); +}, +{ +name = top; +pos = (437.664,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (278,0); +}, +{ +name = top; +pos = (437.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(401,-10,o), +(505,83,o), +(547,216,c), +(514,214,l), +(478,0,l), +(570,0,l), +(644,350,l), +(543,350,l), +(524,260,ls), +(503.074,164,o), +(395.57,88,o), +(298,88,c), +(197.745,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(257.578,602,o), +(403,602,c), +(501.105,602,o), +(555.837,551,o), +(561,456,c), +(668,486,l), +(654.734,612,o), +(560.848,700,o), +(419,700,c), +(202.522,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(125,-10,o), +(268,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(576,264,l), +(594,350,l), +(349,350,l), +(331,264,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(401,-10,o), +(505,83,o), +(547,216,c), +(514,214,l), +(478,0,l), +(570,0,l), +(644,350,l), +(543,350,l), +(524,260,ls), +(503.074,164,o), +(395.57,88,o), +(298,88,c), +(197.745,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(257.578,602,o), +(403,602,c), +(501.105,602,o), +(555.837,551,o), +(561,456,c), +(668,486,l), +(654.734,612,o), +(560.848,700,o), +(419,700,c), +(202.522,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(125,-10,o), +(268,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(576,264,l), +(594,350,l), +(349,350,l), +(331,264,l) +); +} +); +width = 703; +}, +{ +anchors = ( +{ +name = bottom; +pos = (285,0); +}, +{ +name = top; +pos = (432.664,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (285,0); +}, +{ +name = top; +pos = (432.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(413,-14,o), +(498,74,o), +(538,216,c), +(488,214,l), +(471,0,l), +(594,0,l), +(674,377,l), +(523,377,l), +(499,262,ls), +(482,182,o), +(407.097,132,o), +(320,132,c), +(230,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280.184,558,o), +(400,558,c), +(487.864,558,o), +(521,507,o), +(526,439,c), +(687,473,l), +(672,608,o), +(577.837,704,o), +(422,704,c), +(192.121,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(123,-14,o), +(283,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(584,250,l), +(611,377,l), +(357,377,l), +(330,250,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(413,-14,o), +(498,74,o), +(538,216,c), +(488,214,l), +(471,0,l), +(594,0,l), +(674,377,l), +(523,377,l), +(499,262,ls), +(482,182,o), +(407.097,132,o), +(320,132,c), +(230,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280.184,558,o), +(400,558,c), +(487.864,558,o), +(521,507,o), +(526,439,c), +(687,473,l), +(672,608,o), +(577.837,704,o), +(422,704,c), +(192.121,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(123,-14,o), +(283,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(584,250,l), +(611,377,l), +(357,377,l), +(330,250,l) +); +} +); +width = 722; +} +); +unicode = 71; +}, +{ +color = 10; +glyphname = Gbreve; +kernLeft = O; +kernRight = G; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(401,-10,o), +(505,83,o), +(547,216,c), +(514,214,l), +(478,0,l), +(570,0,l), +(644,350,l), +(543,350,l), +(524,260,ls), +(503,164,o), +(396,88,o), +(298,88,c), +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(258,602,o), +(403,602,c), +(501,602,o), +(556,551,o), +(561,456,c), +(668,486,l), +(655,612,o), +(561,700,o), +(419,700,c), +(203,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(125,-10,o), +(268,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(576,264,l), +(594,350,l), +(349,350,l), +(331,264,l) +); +}, +{ +closed = 1; +nodes = ( +(556,735,o), +(603,777,o), +(621,845,c), +(551,845,l), +(543,820,o), +(516,805,o), +(459,805,c), +(407,805,o), +(391,818,o), +(391,841,cs), +(391,845,l), +(321,845,l), +(320,838,o), +(320,833,o), +(320,828,cs), +(320,773,o), +(368,735,o), +(456,735,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = G; +}, +{ +pos = (114,0); +ref = brevecomb.case; +} +); +width = 703; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(413,-14,o), +(498,74,o), +(538,216,c), +(488,214,l), +(471,0,l), +(594,0,l), +(674,377,l), +(523,377,l), +(499,262,ls), +(482,182,o), +(407,132,o), +(320,132,c), +(230,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(488,558,o), +(521,507,o), +(526,439,c), +(687,473,l), +(672,608,o), +(578,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(123,-14,o), +(283,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(584,250,l), +(611,377,l), +(357,377,l), +(330,250,l) +); +}, +{ +closed = 1; +nodes = ( +(557,730,o), +(610,779,o), +(626,850,c), +(529,850,l), +(521,827,o), +(499,814,o), +(458,814,c), +(417,814,o), +(405,827,o), +(405,850,c), +(308,850,l), +(307,843,o), +(306,837,o), +(306,831,cs), +(306,770,o), +(359,730,o), +(453,730,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = G; +}, +{ +pos = (109,0); +ref = brevecomb.case; +} +); +width = 722; +} +); +unicode = 286; +}, +{ +color = 10; +glyphname = Gcaron; +kernLeft = O; +kernRight = G; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(401,-10,o), +(505,83,o), +(547,216,c), +(514,214,l), +(478,0,l), +(570,0,l), +(644,350,l), +(543,350,l), +(524,260,ls), +(503,164,o), +(396,88,o), +(298,88,c), +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(258,602,o), +(403,602,c), +(501,602,o), +(556,551,o), +(561,456,c), +(668,486,l), +(655,612,o), +(561,700,o), +(419,700,c), +(203,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(125,-10,o), +(268,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(576,264,l), +(594,350,l), +(349,350,l), +(331,264,l) +); +}, +{ +closed = 1; +nodes = ( +(483,735,l), +(469,766,l), +(381,845,l), +(288,845,l), +(378,735,l) +); +}, +{ +closed = 1; +nodes = ( +(516,735,l), +(654,845,l), +(547,845,l), +(426,766,l), +(411,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = G; +}, +{ +pos = (113,0); +ref = caroncomb.case; +} +); +width = 703; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(413,-14,o), +(498,74,o), +(538,216,c), +(488,214,l), +(471,0,l), +(594,0,l), +(674,377,l), +(523,377,l), +(499,262,ls), +(482,182,o), +(407,132,o), +(320,132,c), +(230,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(488,558,o), +(521,507,o), +(526,439,c), +(687,473,l), +(672,608,o), +(578,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(123,-14,o), +(283,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(584,250,l), +(611,377,l), +(357,377,l), +(330,250,l) +); +}, +{ +closed = 1; +nodes = ( +(487,735,l), +(471,773,l), +(390,850,l), +(273,850,l), +(358,735,l) +); +}, +{ +closed = 1; +nodes = ( +(526,735,l), +(661,850,l), +(534,850,l), +(419,773,l), +(397,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = G; +}, +{ +pos = (108,0); +ref = caroncomb.case; +} +); +width = 722; +} +); +unicode = 486; +}, +{ +color = 10; +glyphname = Gcircumflex; +kernLeft = O; +kernRight = G; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(401,-10,o), +(505,83,o), +(547,216,c), +(514,214,l), +(478,0,l), +(570,0,l), +(644,350,l), +(543,350,l), +(524,260,ls), +(503,164,o), +(396,88,o), +(298,88,c), +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(258,602,o), +(403,602,c), +(501,602,o), +(556,551,o), +(561,456,c), +(668,486,l), +(655,612,o), +(561,700,o), +(419,700,c), +(203,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(125,-10,o), +(268,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(576,264,l), +(594,350,l), +(349,350,l), +(331,264,l) +); +}, +{ +closed = 1; +nodes = ( +(371,735,l), +(492,814,l), +(507,845,l), +(402,845,l), +(264,735,l) +); +}, +{ +closed = 1; +nodes = ( +(630,735,l), +(540,845,l), +(435,845,l), +(449,814,l), +(537,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = G; +}, +{ +pos = (114,0); +ref = circumflexcomb.case; +} +); +width = 703; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(413,-14,o), +(498,74,o), +(538,216,c), +(488,214,l), +(471,0,l), +(594,0,l), +(674,377,l), +(523,377,l), +(499,262,ls), +(482,182,o), +(407,132,o), +(320,132,c), +(230,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(488,558,o), +(521,507,o), +(526,439,c), +(687,473,l), +(672,608,o), +(578,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(123,-14,o), +(283,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(584,250,l), +(611,377,l), +(357,377,l), +(330,250,l) +); +}, +{ +closed = 1; +nodes = ( +(375,735,l), +(490,812,l), +(512,850,l), +(383,850,l), +(248,735,l) +); +}, +{ +closed = 1; +nodes = ( +(636,735,l), +(551,850,l), +(422,850,l), +(438,812,l), +(519,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = G; +}, +{ +pos = (109,0); +ref = circumflexcomb.case; +} +); +width = 722; +} +); +unicode = 284; +}, +{ +color = 10; +glyphname = Gcommaaccent; +kernLeft = O; +kernRight = G; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(401,-10,o), +(505,83,o), +(547,216,c), +(514,214,l), +(478,0,l), +(570,0,l), +(644,350,l), +(543,350,l), +(524,260,ls), +(503,164,o), +(396,88,o), +(298,88,c), +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(258,602,o), +(403,602,c), +(501,602,o), +(556,551,o), +(561,456,c), +(668,486,l), +(655,612,o), +(561,700,o), +(419,700,c), +(203,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(125,-10,o), +(268,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(236,-275,l), +(320,-72,l), +(216,-72,l), +(173,-275,l) +); +}, +{ +closed = 1; +nodes = ( +(576,264,l), +(594,350,l), +(349,350,l), +(331,264,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = G; +}, +{ +pos = (101,0); +ref = commaaccentcomb; +} +); +width = 703; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(413,-14,o), +(498,74,o), +(538,216,c), +(488,214,l), +(471,0,l), +(594,0,l), +(674,377,l), +(523,377,l), +(499,262,ls), +(482,182,o), +(407,132,o), +(320,132,c), +(230,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(488,558,o), +(521,507,o), +(526,439,c), +(687,473,l), +(672,608,o), +(578,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(123,-14,o), +(283,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(256,-270,l), +(344,-54,l), +(212,-54,l), +(166,-270,l) +); +}, +{ +closed = 1; +nodes = ( +(584,250,l), +(611,377,l), +(357,377,l), +(330,250,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = G; +}, +{ +pos = (108,0); +ref = commaaccentcomb; +} +); +width = 722; +} +); +unicode = 290; +}, +{ +color = 10; +glyphname = Gdotaccent; +kernLeft = O; +kernRight = G; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(401,-10,o), +(505,83,o), +(547,216,c), +(514,214,l), +(478,0,l), +(570,0,l), +(644,350,l), +(543,350,l), +(524,260,ls), +(503,164,o), +(396,88,o), +(298,88,c), +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(258,602,o), +(403,602,c), +(501,602,o), +(556,551,o), +(561,456,c), +(668,486,l), +(655,612,o), +(561,700,o), +(419,700,c), +(203,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(125,-10,o), +(268,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(576,264,l), +(594,350,l), +(349,350,l), +(331,264,l) +); +}, +{ +closed = 1; +nodes = ( +(493,735,o), +(521,760,o), +(521,795,c), +(521,827,o), +(498,848,o), +(464,848,c), +(426,848,o), +(399,823,o), +(399,785,c), +(399,756,o), +(422,735,o), +(455,735,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = G; +}, +{ +pos = (114,0); +ref = dotaccentcomb.case; +} +); +width = 703; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(413,-14,o), +(498,74,o), +(538,216,c), +(488,214,l), +(471,0,l), +(594,0,l), +(674,377,l), +(523,377,l), +(499,262,ls), +(482,182,o), +(407,132,o), +(320,132,c), +(230,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(488,558,o), +(521,507,o), +(526,439,c), +(687,473,l), +(672,608,o), +(578,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(123,-14,o), +(283,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(584,250,l), +(611,377,l), +(357,377,l), +(330,250,l) +); +}, +{ +closed = 1; +nodes = ( +(499,741,o), +(535,771,o), +(535,817,c), +(535,856,o), +(508,881,o), +(464,881,c), +(419,881,o), +(383,851,o), +(383,804,c), +(383,766,o), +(410,741,o), +(454,741,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = G; +}, +{ +pos = (109,0); +ref = dotaccentcomb.case; +} +); +width = 722; +} +); +unicode = 288; +}, +{ +color = 6; +glyphname = H; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-22 13:33:31 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (296,0); +}, +{ +name = center; +pos = (406,518); +}, +{ +name = top; +pos = (442,690); +}, +{ +name = topleft; +pos = (110,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (296,0); +}, +{ +name = center; +pos = (406,518); +}, +{ +name = top; +pos = (442,690); +}, +{ +name = topleft; +pos = (110,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(557,0,l), +(704,690,l), +(599,690,l), +(452,0,l) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(572,306,l), +(592,402,l), +(137,402,l), +(117,306,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(172,306,l), +(517,306,l), +(452,0,l), +(557,0,l), +(704,690,l), +(599,690,l), +(538,402,l), +(193,402,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +} +); +width = 704; +}, +{ +anchors = ( +{ +name = bottom; +pos = (301,0); +}, +{ +name = center; +pos = (411,518); +}, +{ +name = top; +pos = (447,690); +}, +{ +name = topleft; +pos = (110,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (301,0); +}, +{ +name = center; +pos = (411,518); +}, +{ +name = top; +pos = (447,690); +}, +{ +name = topleft; +pos = (110,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(571,278,l), +(602,423,l), +(147,423,l), +(116,278,l) +); +}, +{ +closed = 1; +nodes = ( +(580,0,l), +(727,690,l), +(573,690,l), +(426,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(203,278,l), +(485,278,l), +(426,0,l), +(580,0,l), +(727,690,l), +(573,690,l), +(516,423,l), +(234,423,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +} +); +width = 714; +} +); +unicode = 72; +}, +{ +color = 6; +glyphname = Hbar; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(572,0,l), +(719,690,l), +(614,690,l), +(467,0,l) +); +}, +{ +closed = 1; +nodes = ( +(122,0,l), +(269,690,l), +(164,690,l), +(17,0,l) +); +}, +{ +closed = 1; +nodes = ( +(583,286,l), +(603,382,l), +(148,382,l), +(128,286,l) +); +}, +{ +closed = 1; +nodes = ( +(744,482,l), +(764,573,l), +(69,573,l), +(49,482,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(122,0,l), +(183,286,l), +(528,286,l), +(467,0,l), +(572,0,l), +(719,690,l), +(614,690,l), +(548,382,l), +(203,382,l), +(269,690,l), +(164,690,l), +(17,0,l) +); +}, +{ +closed = 1; +nodes = ( +(744,482,l), +(764,573,l), +(69,573,l), +(49,482,l) +); +} +); +width = 734; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(149,0,l), +(296,690,l), +(141,690,l), +(-6,0,l) +); +}, +{ +closed = 1; +nodes = ( +(566,228,l), +(597,373,l), +(142,373,l), +(111,228,l) +); +}, +{ +closed = 1; +nodes = ( +(744,478,l), +(769,599,l), +(64,599,l), +(39,478,l) +); +}, +{ +closed = 1; +nodes = ( +(585,0,l), +(732,690,l), +(578,690,l), +(431,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(149,0,l), +(198,228,l), +(480,228,l), +(431,0,l), +(585,0,l), +(732,690,l), +(578,690,l), +(510,373,l), +(228,373,l), +(296,690,l), +(141,690,l), +(-6,0,l) +); +}, +{ +closed = 1; +nodes = ( +(744,478,l), +(769,599,l), +(64,599,l), +(39,478,l) +); +} +); +width = 724; +} +); +unicode = 294; +}, +{ +color = 10; +glyphname = Hcircumflex; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(557,0,l), +(704,690,l), +(599,690,l), +(452,0,l) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(572,306,l), +(592,402,l), +(137,402,l), +(117,306,l) +); +}, +{ +closed = 1; +nodes = ( +(360,735,l), +(481,814,l), +(496,845,l), +(391,845,l), +(253,735,l) +); +}, +{ +closed = 1; +nodes = ( +(619,735,l), +(529,845,l), +(424,845,l), +(438,814,l), +(526,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = H; +}, +{ +pos = (118,0); +ref = circumflexcomb.case; +} +); +width = 704; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(571,278,l), +(602,423,l), +(147,423,l), +(116,278,l) +); +}, +{ +closed = 1; +nodes = ( +(580,0,l), +(727,690,l), +(573,690,l), +(426,0,l) +); +}, +{ +closed = 1; +nodes = ( +(374,735,l), +(489,812,l), +(511,850,l), +(382,850,l), +(247,735,l) +); +}, +{ +closed = 1; +nodes = ( +(635,735,l), +(550,850,l), +(421,850,l), +(437,812,l), +(518,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = H; +}, +{ +pos = (123,0); +ref = circumflexcomb.case; +} +); +width = 714; +} +); +unicode = 292; +}, +{ +color = 6; +glyphname = I; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:03:14 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (55,0); +}, +{ +name = ogonek; +pos = (107,0); +}, +{ +name = top; +pos = (201.664,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (55,0); +}, +{ +name = top; +pos = (201.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +} +); +width = 254; +}, +{ +anchors = ( +{ +name = bottom; +pos = (66,0); +}, +{ +name = ogonek; +pos = (144,0); +}, +{ +name = top; +pos = (212.664,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (66,0); +}, +{ +name = top; +pos = (212.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +} +); +width = 278; +} +); +unicode = 73; +}, +{ +color = 10; +glyphname = IJ; +kernLeft = H; +kernRight = U; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(586,-10,o), +(679,74,o), +(714,237,cs), +(811,690,l), +(706,690,l), +(611,244,ls), +(588,138,o), +(538,87,o), +(456,87,c), +(378,87,o), +(340,136,o), +(347,226,c), +(248,214,l), +(244,67,o), +(327,-10,o), +(448,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (254,0); +ref = J; +} +); +width = 805; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(657,-14,o), +(751,76,o), +(789,253,cs), +(882,690,l), +(727,690,l), +(635,261,ls), +(618,180,o), +(570,132,o), +(503,132,c), +(443,132,o), +(411,173,o), +(406,241,c), +(261,202,l), +(270,66,o), +(362,-14,o), +(493,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = I; +}, +{ +pos = (278,0); +ref = J; +} +); +width = 862; +} +); +unicode = 306; +}, +{ +color = 10; +glyphname = Iacute; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:21:18 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(247,735,l), +(405,845,l), +(270,845,l), +(146,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-121,0); +ref = acutecomb.case; +} +); +width = 254; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(274,735,l), +(450,850,l), +(277,850,l), +(149,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-109,0); +ref = acutecomb.case; +} +); +width = 278; +} +); +unicode = 205; +}, +{ +color = 10; +glyphname = Ibreve; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(108,0,l), +(255,690,l), +(150,690,l), +(3,0,l) +); +}, +{ +closed = 1; +nodes = ( +(321,735,o), +(368,777,o), +(386,845,c), +(316,845,l), +(308,820,o), +(281,805,o), +(224,805,c), +(172,805,o), +(156,818,o), +(156,841,cs), +(156,845,l), +(86,845,l), +(85,838,o), +(85,833,o), +(85,828,cs), +(85,773,o), +(133,735,o), +(221,735,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = brevecomb.case; +} +); +width = 254; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(145,0,l), +(292,690,l), +(137,690,l), +(-10,0,l) +); +}, +{ +closed = 1; +nodes = ( +(338,730,o), +(391,779,o), +(407,850,c), +(310,850,l), +(302,827,o), +(280,814,o), +(239,814,c), +(198,814,o), +(186,827,o), +(186,850,c), +(89,850,l), +(88,843,o), +(87,837,o), +(87,831,cs), +(87,770,o), +(140,730,o), +(234,730,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-111,0); +ref = brevecomb.case; +} +); +width = 278; +} +); +unicode = 300; +}, +{ +color = 10; +glyphname = Icircumflex; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(135,735,l), +(256,814,l), +(271,845,l), +(166,845,l), +(28,735,l) +); +}, +{ +closed = 1; +nodes = ( +(394,735,l), +(304,845,l), +(199,845,l), +(213,814,l), +(301,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = circumflexcomb.case; +} +); +width = 254; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(155,735,l), +(270,812,l), +(292,850,l), +(163,850,l), +(28,735,l) +); +}, +{ +closed = 1; +nodes = ( +(416,735,l), +(331,850,l), +(202,850,l), +(218,812,l), +(299,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-111,0); +ref = circumflexcomb.case; +} +); +width = 278; +} +); +unicode = 206; +}, +{ +color = 10; +glyphname = Idieresis; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(153,742,o), +(179,767,o), +(179,802,c), +(179,834,o), +(158,855,o), +(127,855,c), +(92,855,o), +(67,830,o), +(67,793,c), +(67,763,o), +(88,742,o), +(118,742,c) +); +}, +{ +closed = 1; +nodes = ( +(356,742,o), +(382,767,o), +(382,802,c), +(382,834,o), +(361,855,o), +(330,855,c), +(295,855,o), +(270,830,o), +(270,793,c), +(270,763,o), +(291,742,o), +(321,742,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-121,0); +ref = dieresiscomb.case; +} +); +width = 254; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(165,742,o), +(197,770,o), +(197,813,c), +(197,850,o), +(173,873,o), +(132,873,c), +(90,873,o), +(58,845,o), +(58,802,c), +(58,765,o), +(81,742,o), +(123,742,c) +); +}, +{ +closed = 1; +nodes = ( +(385,742,o), +(417,770,o), +(417,813,c), +(417,850,o), +(393,873,o), +(352,873,c), +(310,873,o), +(278,845,o), +(278,802,c), +(278,765,o), +(301,742,o), +(343,742,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-111,0); +ref = dieresiscomb.case; +} +); +width = 278; +} +); +unicode = 207; +}, +{ +color = 10; +glyphname = Idotaccent; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(108,0,l), +(255,690,l), +(150,690,l), +(3,0,l) +); +}, +{ +closed = 1; +nodes = ( +(258,735,o), +(286,760,o), +(286,795,c), +(286,827,o), +(263,848,o), +(229,848,c), +(191,848,o), +(164,823,o), +(164,785,c), +(164,756,o), +(187,735,o), +(220,735,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = dotaccentcomb.case; +} +); +width = 254; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(279,741,o), +(315,771,o), +(315,817,c), +(315,856,o), +(288,881,o), +(244,881,c), +(199,881,o), +(163,851,o), +(163,804,c), +(163,766,o), +(190,741,o), +(234,741,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-111,0); +ref = dotaccentcomb.case; +} +); +width = 278; +} +); +unicode = 304; +}, +{ +color = 10; +glyphname = Idotbelow; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(59,-195,o), +(87,-168,o), +(87,-130,c), +(87,-95,o), +(64,-72,o), +(30,-72,c), +(-8,-72,o), +(-35,-99,o), +(-35,-140,c), +(-35,-172,o), +(-12,-195,o), +(21,-195,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-121,0); +ref = dotbelow; +} +); +width = 254; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(80,-198,o), +(116,-166,o), +(116,-117,c), +(116,-75,o), +(89,-48,o), +(45,-48,c), +(0,-48,o), +(-36,-80,o), +(-36,-130,c), +(-36,-171,o), +(-9,-198,o), +(35,-198,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-111,0); +ref = dotbelow; +} +); +width = 278; +} +); +unicode = 7882; +}, +{ +color = 10; +glyphname = Igrave; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(108,0,l), +(255,690,l), +(150,690,l), +(3,0,l) +); +}, +{ +closed = 1; +nodes = ( +(271,735,l), +(195,845,l), +(70,845,l), +(183,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = gravecomb.case; +} +); +width = 254; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(145,0,l), +(292,690,l), +(137,690,l), +(-10,0,l) +); +}, +{ +closed = 1; +nodes = ( +(289,735,l), +(211,850,l), +(50,850,l), +(179,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-112,0); +ref = gravecomb.case; +} +); +width = 278; +} +); +unicode = 204; +}, +{ +color = 10; +glyphname = Imacron; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(373,753,l), +(391,837,l), +(75,837,l), +(57,753,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-121,0); +ref = macroncomb.case; +} +); +width = 254; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(387,735,l), +(412,850,l), +(82,850,l), +(57,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-110,0); +ref = macroncomb.case; +} +); +width = 278; +} +); +unicode = 298; +}, +{ +color = 10; +glyphname = Iogonek; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:03:14 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(13,-185,o), +(50,-176,o), +(72,-165,c), +(80,-84,l), +(55,-96,o), +(24,-106,o), +(-2,-106,c), +(-13,-106,o), +(-19,-101,o), +(-19,-93,cs), +(-19,-72,o), +(18,-38,o), +(107,0,c), +(2,0,l), +(-78,-35,o), +(-107,-74,o), +(-107,-118,c), +(-107,-155,o), +(-81,-185,o), +(-19,-185,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-123,0); +ref = ogonekcomb; +} +); +width = 254; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(145,0,l), +(292,690,l), +(137,690,l), +(-10,0,l) +); +}, +{ +closed = 1; +nodes = ( +(43,-190,o), +(78,-183,o), +(109,-170,c), +(120,-75,l), +(98,-87,o), +(70,-96,o), +(51,-96,c), +(38,-96,o), +(31,-90,o), +(31,-82,cs), +(31,-65,o), +(56,-36,o), +(145,0,c), +(40,0,l), +(-53,-36,o), +(-84,-82,o), +(-84,-121,c), +(-84,-158,o), +(-54,-190,o), +(15,-190,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = ogonekcomb; +} +); +width = 278; +} +); +unicode = 302; +}, +{ +color = 10; +glyphname = Itilde; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(121,735,l), +(123,757,o), +(136,773,o), +(159,773,c), +(195,773,o), +(222,735,o), +(279,735,c), +(342,735,o), +(381,777,o), +(393,845,c), +(325,845,l), +(323,823,o), +(310,807,o), +(287,807,c), +(252,807,o), +(224,845,o), +(167,845,c), +(104,845,o), +(65,803,o), +(53,735,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-121,0); +ref = tildecomb.case; +} +); +width = 254; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(145,0,l), +(292,690,l), +(137,690,l), +(-10,0,l) +); +}, +{ +closed = 1; +nodes = ( +(140,735,l), +(141,761,o), +(157,772,o), +(174,772,c), +(207,772,o), +(229,735,o), +(294,735,c), +(357,735,o), +(404,781,o), +(416,854,c), +(332,854,l), +(331,828,o), +(315,817,o), +(298,817,c), +(267,817,o), +(243,854,o), +(178,854,c), +(114,854,o), +(67,808,o), +(56,735,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-111,0); +ref = tildecomb.case; +} +); +width = 278; +} +); +unicode = 296; +}, +{ +color = 6; +glyphname = J; +kernLeft = J; +kernRight = U; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (501.803,690); +} +); +background = { +anchors = ( +{ +name = top; +pos = (501.803,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(331.139,-10,o), +(424.139,74,o), +(459.139,237,cs), +(556.139,690,l), +(451.139,690,l), +(356.139,244,ls), +(333.139,138,o), +(283.139,87,o), +(201.139,87,c), +(123.139,87,o), +(85.139,136,o), +(92.139,226,c), +(-6.861,214,l), +(-10.861,67,o), +(72.139,-10,o), +(193.139,-10,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(331.139,-10,o), +(424.139,74,o), +(459.139,237,cs), +(556.139,690,l), +(451.139,690,l), +(356.139,244,ls), +(333.139,138,o), +(283.139,87,o), +(201.139,87,c), +(123.139,87,o), +(85.139,136,o), +(92.139,226,c), +(-6.861,214,l), +(-10.861,67,o), +(72.139,-10,o), +(193.139,-10,c) +); +} +); +width = 551; +}, +{ +anchors = ( +{ +name = top; +pos = (525.664,690); +} +); +background = { +anchors = ( +{ +name = top; +pos = (525.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(379,-14,o), +(473,76,o), +(511,253,cs), +(604,690,l), +(449,690,l), +(357,261,ls), +(340,180,o), +(292,132,o), +(225,132,c), +(165,132,o), +(133,173,o), +(128,241,c), +(-17,202,l), +(-8,66,o), +(84,-14,o), +(215,-14,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(379,-14,o), +(473,76,o), +(511,253,cs), +(604,690,l), +(449,690,l), +(357,261,ls), +(340,180,o), +(292,132,o), +(225,132,c), +(165,132,o), +(133,173,o), +(128,241,c), +(-17,202,l), +(-8,66,o), +(84,-14,o), +(215,-14,c) +); +} +); +width = 584; +} +); +unicode = 74; +}, +{ +color = 10; +glyphname = Jcircumflex; +kernLeft = J; +kernRight = U; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(331.139,-10,o), +(424.139,74,o), +(459.139,237,cs), +(556.139,690,l), +(451.139,690,l), +(356.139,244,ls), +(333.139,138,o), +(283.139,87,o), +(201.139,87,c), +(123.139,87,o), +(85.139,136,o), +(92.139,226,c), +(-6.861,214,l), +(-10.861,67,o), +(72.139,-10,o), +(193.139,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(435.139,735,l), +(556.139,814,l), +(571.139,845,l), +(466.139,845,l), +(328.139,735,l) +); +}, +{ +closed = 1; +nodes = ( +(694.139,735,l), +(604.139,845,l), +(499.139,845,l), +(513.139,814,l), +(601.139,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = J; +}, +{ +pos = (178,0); +ref = circumflexcomb.case; +} +); +width = 551; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(379,-14,o), +(473,76,o), +(511,253,cs), +(604,690,l), +(449,690,l), +(357,261,ls), +(340,180,o), +(292,132,o), +(225,132,c), +(165,132,o), +(133,173,o), +(128,241,c), +(-17,202,l), +(-8,66,o), +(84,-14,o), +(215,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(468,735,l), +(583,812,l), +(605,850,l), +(476,850,l), +(341,735,l) +); +}, +{ +closed = 1; +nodes = ( +(729,735,l), +(644,850,l), +(515,850,l), +(531,812,l), +(612,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = J; +}, +{ +pos = (202,0); +ref = circumflexcomb.case; +} +); +width = 584; +} +); +unicode = 308; +}, +{ +color = 6; +glyphname = K; +kernLeft = H; +kernRight = X; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (264,0); +}, +{ +name = top; +pos = (410.664,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (264,0); +}, +{ +name = top; +pos = (410.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(683,690,l), +(546,690,l), +(148,320,l), +(116,171,l) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(555,0,l), +(351,403,l), +(277,334,l), +(439,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(683,690,l), +(546,690,l), +(148,320,l), +(116,171,l) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(555,0,l), +(351,403,l), +(277,334,l), +(439,0,l) +); +} +); +width = 641; +}, +{ +anchors = ( +{ +name = bottom; +pos = (258,0); +}, +{ +name = top; +pos = (404.664,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (258,0); +}, +{ +name = top; +pos = (404.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(713,690,l), +(511,690,l), +(183,367,l), +(138,148,l) +); +}, +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(584,0,l), +(375,415,l), +(267,309,l), +(411,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(713,690,l), +(511,690,l), +(183,367,l), +(138,148,l) +); +}, +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(584,0,l), +(375,415,l), +(267,309,l), +(411,0,l) +); +} +); +width = 657; +} +); +unicode = 75; +}, +{ +color = 10; +glyphname = Kcommaaccent; +kernLeft = H; +kernRight = X; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(683,690,l), +(546,690,l), +(148,320,l), +(116,171,l) +); +}, +{ +closed = 1; +nodes = ( +(222,-275,l), +(306,-72,l), +(202,-72,l), +(159,-275,l) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(555,0,l), +(351,403,l), +(277,334,l), +(439,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = K; +}, +{ +pos = (87,0); +ref = commaaccentcomb; +} +); +width = 641; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(713,690,l), +(511,690,l), +(183,367,l), +(138,148,l) +); +}, +{ +closed = 1; +nodes = ( +(229,-270,l), +(317,-54,l), +(185,-54,l), +(139,-270,l) +); +}, +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(584,0,l), +(375,415,l), +(267,309,l), +(411,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = K; +}, +{ +pos = (81,0); +ref = commaaccentcomb; +} +); +width = 657; +} +); +unicode = 310; +}, +{ +color = 6; +glyphname = L; +kernLeft = H; +kernRight = L; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (214,0); +}, +{ +name = center; +pos = (123,345); +}, +{ +name = top; +pos = (196,690); +}, +{ +name = topright; +pos = (392,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (229,0); +}, +{ +name = top; +pos = (201.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(457,96,l), +(72,96,l), +(52,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(457,96,l), +(72,96,l), +(52,0,l) +); +} +); +width = 539; +}, +{ +anchors = ( +{ +name = bottom; +pos = (216,0); +}, +{ +name = center; +pos = (139,345); +}, +{ +name = top; +pos = (212,690); +}, +{ +name = topright; +pos = (402,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (209,0); +}, +{ +name = top; +pos = (212.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(442,0,l), +(473,145,l), +(88,145,l), +(57,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(442,0,l), +(473,145,l), +(88,145,l), +(57,0,l) +); +} +); +width = 544; +} +); +unicode = 76; +}, +{ +color = 10; +glyphname = Lacute; +kernLeft = H; +kernRight = L; +lastChange = "2024-03-21 14:21:18 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(457,96,l), +(72,96,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(247,735,l), +(405,845,l), +(270,845,l), +(146,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = L; +}, +{ +pos = (-127,0); +ref = acutecomb.case; +} +); +width = 539; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(442,0,l), +(473,145,l), +(88,145,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(274,735,l), +(450,850,l), +(277,850,l), +(149,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = L; +}, +{ +pos = (-110,0); +ref = acutecomb.case; +} +); +width = 544; +} +); +unicode = 313; +}, +{ +color = 10; +glyphname = Lcaron; +kernLeft = H; +kernRight = L; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(457,96,l), +(72,96,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(414,417,l), +(516,690,l), +(412,690,l), +(354,417,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = L; +}, +{ +pos = (130,-25); +ref = caroncomb.alt; +} +); +width = 539; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(442,0,l), +(473,145,l), +(88,145,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(444,383,l), +(572,690,l), +(422,690,l), +(356,383,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = L; +}, +{ +pos = (154,-25); +ref = caroncomb.alt; +} +); +width = 544; +} +); +unicode = 317; +}, +{ +color = 10; +glyphname = Lcommaaccent; +kernLeft = H; +kernRight = L; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(187,-275,l), +(271,-72,l), +(167,-72,l), +(124,-275,l) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(457,96,l), +(72,96,l), +(52,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = L; +}, +{ +pos = (37,0); +ref = commaaccentcomb; +} +); +width = 539; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(180,-270,l), +(268,-54,l), +(136,-54,l), +(90,-270,l) +); +}, +{ +closed = 1; +nodes = ( +(442,0,l), +(473,145,l), +(88,145,l), +(57,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = L; +}, +{ +pos = (39,0); +ref = commaaccentcomb; +} +); +width = 544; +} +); +unicode = 315; +}, +{ +color = 10; +glyphname = Ldot; +kernLeft = H; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(457,96,l), +(72,96,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(428,271,o), +(458,300,o), +(458,342,c), +(458,379,o), +(433,404,o), +(396,404,c), +(355,404,o), +(326,375,o), +(326,331,c), +(326,296,o), +(351,271,o), +(387,271,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = L; +}, +{ +ref = periodcentered.loclCAT.case; +} +); +width = 539; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(442,0,l), +(473,145,l), +(88,145,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(453,249,o), +(495,286,o), +(495,344,c), +(495,392,o), +(464,424,o), +(412,424,c), +(360,424,o), +(318,386,o), +(318,328,c), +(318,280,o), +(349,249,o), +(400,249,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = L; +}, +{ +ref = periodcentered.loclCAT.case; +} +); +width = 544; +} +); +unicode = 319; +}, +{ +color = 6; +glyphname = Lslash; +kernLeft = H; +kernRight = L; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(384,388,l), +(407,493,l), +(14,317,l), +(-8,212,l) +); +}, +{ +closed = 1; +nodes = ( +(452,0,l), +(472,96,l), +(87,96,l), +(67,0,l) +); +}, +{ +closed = 1; +nodes = ( +(122,0,l), +(269,690,l), +(164,690,l), +(17,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(384,388,l), +(407,493,l), +(14,317,l), +(-8,212,l) +); +}, +{ +closed = 1; +nodes = ( +(452,0,l), +(472,96,l), +(87,96,l), +(67,0,l) +); +}, +{ +closed = 1; +nodes = ( +(122,0,l), +(269,690,l), +(164,690,l), +(17,0,l) +); +} +); +width = 553; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(417,378,l), +(447,517,l), +(5,319,l), +(-25,180,l) +); +}, +{ +closed = 1; +nodes = ( +(452,0,l), +(483,145,l), +(98,145,l), +(67,0,l) +); +}, +{ +closed = 1; +nodes = ( +(154,0,l), +(301,690,l), +(146,690,l), +(-1,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(417,378,l), +(447,517,l), +(5,319,l), +(-25,180,l) +); +}, +{ +closed = 1; +nodes = ( +(452,0,l), +(483,145,l), +(98,145,l), +(67,0,l) +); +}, +{ +closed = 1; +nodes = ( +(154,0,l), +(301,690,l), +(146,690,l), +(-1,0,l) +); +} +); +width = 554; +} +); +unicode = 321; +}, +{ +color = 6; +glyphname = M; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(393,0,l), +(311,690,l), +(213,690,l), +(294,0,l) +); +}, +{ +closed = 1; +nodes = ( +(102,0,l), +(249,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(429,0,l), +(788,690,l), +(684,690,l), +(331,0,l) +); +}, +{ +closed = 1; +nodes = ( +(714,0,l), +(861,690,l), +(756,690,l), +(609,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(102,0,l), +(226,581,l), +(294,0,l), +(429,0,l), +(734,586,l), +(609,0,l), +(714,0,l), +(861,690,l), +(684,690,l), +(381,98,l), +(311,690,l), +(149,690,l), +(2,0,l) +); +} +); +width = 861; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(484,0,l), +(781,690,l), +(627,690,l), +(341,0,l) +); +}, +{ +closed = 1; +nodes = ( +(136,0,l), +(283,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(398,0,l), +(404,690,l), +(253,690,l), +(259,0,l) +); +}, +{ +closed = 1; +nodes = ( +(759,0,l), +(906,690,l), +(751,690,l), +(604,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(136,0,l), +(254,555,l), +(259,0,l), +(484,0,l), +(722,552,l), +(604,0,l), +(759,0,l), +(906,690,l), +(627,690,l), +(399,140,l), +(404,690,l), +(136,690,l), +(-11,0,l) +); +} +); +width = 893; +} +); +unicode = 77; +}, +{ +color = 6; +glyphname = N; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (282,0); +}, +{ +name = top; +pos = (428.664,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (282,0); +}, +{ +name = top; +pos = (428.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(523,0,l), +(284,690,l), +(180,690,l), +(419,0,l) +); +}, +{ +closed = 1; +nodes = ( +(102,0,l), +(249,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(554,0,l), +(701,690,l), +(601,690,l), +(454,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(523,0,l), +(284,690,l), +(180,690,l), +(419,0,l) +); +}, +{ +closed = 1; +nodes = ( +(102,0,l), +(249,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(554,0,l), +(701,690,l), +(601,690,l), +(454,0,l) +); +} +); +width = 701; +}, +{ +anchors = ( +{ +name = bottom; +pos = (284,0); +}, +{ +name = top; +pos = (431,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (284,0); +}, +{ +name = top; +pos = (431,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(483,0,l), +(386,690,l), +(235,690,l), +(332,0,l) +); +}, +{ +closed = 1; +nodes = ( +(136,0,l), +(283,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(582,0,l), +(729,690,l), +(582,690,l), +(435,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(483,0,l), +(386,690,l), +(235,690,l), +(332,0,l) +); +}, +{ +closed = 1; +nodes = ( +(136,0,l), +(283,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(582,0,l), +(729,690,l), +(582,690,l), +(435,0,l) +); +} +); +width = 716; +} +); +unicode = 78; +}, +{ +color = 10; +glyphname = Nacute; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:21:18 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(523,0,l), +(284,690,l), +(180,690,l), +(419,0,l) +); +}, +{ +closed = 1; +nodes = ( +(102,0,l), +(249,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(554,0,l), +(701,690,l), +(601,690,l), +(454,0,l) +); +}, +{ +closed = 1; +nodes = ( +(474,735,l), +(632,845,l), +(497,845,l), +(373,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = N; +}, +{ +pos = (106,0); +ref = acutecomb.case; +} +); +width = 701; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(483,0,l), +(386,690,l), +(235,690,l), +(332,0,l) +); +}, +{ +closed = 1; +nodes = ( +(136,0,l), +(283,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(582,0,l), +(729,690,l), +(582,690,l), +(435,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,735,l), +(668,850,l), +(495,850,l), +(367,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = N; +}, +{ +pos = (109,0); +ref = acutecomb.case; +} +); +width = 716; +} +); +unicode = 323; +}, +{ +color = 10; +glyphname = Ncaron; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(523,0,l), +(284,690,l), +(180,690,l), +(419,0,l) +); +}, +{ +closed = 1; +nodes = ( +(102,0,l), +(249,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(554,0,l), +(701,690,l), +(601,690,l), +(454,0,l) +); +}, +{ +closed = 1; +nodes = ( +(474,735,l), +(460,766,l), +(372,845,l), +(279,845,l), +(369,735,l) +); +}, +{ +closed = 1; +nodes = ( +(507,735,l), +(645,845,l), +(538,845,l), +(417,766,l), +(402,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = N; +}, +{ +pos = (104,0); +ref = caroncomb.case; +} +); +width = 701; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(483,0,l), +(386,690,l), +(235,690,l), +(332,0,l) +); +}, +{ +closed = 1; +nodes = ( +(136,0,l), +(283,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(582,0,l), +(729,690,l), +(582,690,l), +(435,0,l) +); +}, +{ +closed = 1; +nodes = ( +(485,735,l), +(469,773,l), +(388,850,l), +(271,850,l), +(356,735,l) +); +}, +{ +closed = 1; +nodes = ( +(524,735,l), +(659,850,l), +(532,850,l), +(417,773,l), +(395,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = N; +}, +{ +pos = (106,0); +ref = caroncomb.case; +} +); +width = 716; +} +); +unicode = 327; +}, +{ +color = 10; +glyphname = Ncommaaccent; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(523,0,l), +(284,690,l), +(180,690,l), +(419,0,l) +); +}, +{ +closed = 1; +nodes = ( +(240,-275,l), +(324,-72,l), +(220,-72,l), +(177,-275,l) +); +}, +{ +closed = 1; +nodes = ( +(102,0,l), +(249,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(554,0,l), +(701,690,l), +(601,690,l), +(454,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = N; +}, +{ +pos = (105,0); +ref = commaaccentcomb; +} +); +width = 701; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(483,0,l), +(386,690,l), +(235,690,l), +(332,0,l) +); +}, +{ +closed = 1; +nodes = ( +(255,-270,l), +(343,-54,l), +(211,-54,l), +(165,-270,l) +); +}, +{ +closed = 1; +nodes = ( +(136,0,l), +(283,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(582,0,l), +(729,690,l), +(582,690,l), +(435,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = N; +}, +{ +pos = (107,0); +ref = commaaccentcomb; +} +); +width = 716; +} +); +unicode = 325; +}, +{ +color = 6; +glyphname = Nhookleft; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(523,0,l), +(284,690,l), +(180,690,l), +(419,0,l) +); +}, +{ +closed = 1; +nodes = ( +(7,-185,o), +(73,-138,o), +(98,-21,cs), +(249,690,l), +(149,690,l), +(-2,-17,ls), +(-13,-70,o), +(-46,-94,o), +(-91,-94,c), +(-114,-94,o), +(-134,-88,o), +(-154,-79,c), +(-173,-168,l), +(-147,-178,o), +(-119,-185,o), +(-87,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(554,0,l), +(701,690,l), +(601,690,l), +(454,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(523,0,l), +(284,690,l), +(180,690,l), +(419,0,l) +); +}, +{ +closed = 1; +nodes = ( +(7,-185,o), +(73,-138,o), +(98,-21,cs), +(249,690,l), +(149,690,l), +(-2,-17,ls), +(-13,-70,o), +(-46,-94,o), +(-91,-94,c), +(-114,-94,o), +(-134,-88,o), +(-154,-79,c), +(-173,-168,l), +(-147,-178,o), +(-119,-185,o), +(-87,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(554,0,l), +(701,690,l), +(601,690,l), +(454,0,l) +); +} +); +width = 701; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(483,0,l), +(386,690,l), +(235,690,l), +(332,0,l) +); +}, +{ +closed = 1; +nodes = ( +(27,-189,o), +(106,-143,o), +(133,-14,cs), +(283,690,l), +(136,690,l), +(-9,9,ls), +(-18,-32,o), +(-44,-54,o), +(-85,-54,c), +(-110,-54,o), +(-132,-49,o), +(-152,-41,c), +(-180,-172,l), +(-155,-183,o), +(-116,-189,o), +(-76,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(582,0,l), +(729,690,l), +(582,690,l), +(435,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(483,0,l), +(386,690,l), +(235,690,l), +(332,0,l) +); +}, +{ +closed = 1; +nodes = ( +(27,-189,o), +(106,-143,o), +(133,-14,cs), +(283,690,l), +(136,690,l), +(-9,9,ls), +(-18,-32,o), +(-44,-54,o), +(-85,-54,c), +(-110,-54,o), +(-132,-49,o), +(-152,-41,c), +(-180,-172,l), +(-155,-183,o), +(-116,-189,o), +(-76,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(582,0,l), +(729,690,l), +(582,690,l), +(435,0,l) +); +} +); +width = 716; +} +); +unicode = 413; +}, +{ +color = 10; +glyphname = Ntilde; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(523,0,l), +(284,690,l), +(180,690,l), +(419,0,l) +); +}, +{ +closed = 1; +nodes = ( +(102,0,l), +(249,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(554,0,l), +(701,690,l), +(601,690,l), +(454,0,l) +); +}, +{ +closed = 1; +nodes = ( +(348,735,l), +(350,757,o), +(363,773,o), +(386,773,c), +(422,773,o), +(449,735,o), +(506,735,c), +(569,735,o), +(608,777,o), +(620,845,c), +(552,845,l), +(550,823,o), +(537,807,o), +(514,807,c), +(479,807,o), +(451,845,o), +(394,845,c), +(331,845,o), +(292,803,o), +(280,735,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = N; +}, +{ +pos = (106,0); +ref = tildecomb.case; +} +); +width = 701; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(483,0,l), +(386,690,l), +(235,690,l), +(332,0,l) +); +}, +{ +closed = 1; +nodes = ( +(136,0,l), +(283,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(582,0,l), +(729,690,l), +(582,690,l), +(435,0,l) +); +}, +{ +closed = 1; +nodes = ( +(357,735,l), +(358,761,o), +(374,772,o), +(391,772,c), +(424,772,o), +(446,735,o), +(511,735,c), +(574,735,o), +(621,781,o), +(633,854,c), +(549,854,l), +(548,828,o), +(532,817,o), +(515,817,c), +(484,817,o), +(460,854,o), +(395,854,c), +(331,854,o), +(284,808,o), +(273,735,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = N; +}, +{ +pos = (107,0); +ref = tildecomb.case; +} +); +width = 716; +} +); +unicode = 209; +}, +{ +color = 6; +glyphname = Eng; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(523,0,l), +(284,690,l), +(180,690,l), +(419,0,l) +); +}, +{ +closed = 1; +nodes = ( +(102,0,l), +(249,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(459,-185,o), +(525,-138,o), +(550,-21,cs), +(701,690,l), +(601,690,l), +(450,-17,ls), +(439,-70,o), +(406,-94,o), +(361,-94,c), +(338,-94,o), +(318,-88,o), +(298,-79,c), +(279,-168,l), +(305,-178,o), +(333,-185,o), +(365,-185,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(523,0,l), +(284,690,l), +(180,690,l), +(419,0,l) +); +}, +{ +closed = 1; +nodes = ( +(102,0,l), +(249,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(459,-185,o), +(525,-138,o), +(550,-21,cs), +(701,690,l), +(601,690,l), +(450,-17,ls), +(439,-70,o), +(406,-94,o), +(361,-94,c), +(338,-94,o), +(318,-88,o), +(298,-79,c), +(279,-168,l), +(305,-178,o), +(333,-185,o), +(365,-185,c) +); +} +); +width = 701; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(483,0,l), +(386,690,l), +(235,690,l), +(332,0,l) +); +}, +{ +closed = 1; +nodes = ( +(136,0,l), +(283,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(473,-189,o), +(552,-143,o), +(579,-14,cs), +(729,690,l), +(582,690,l), +(437,9,ls), +(428,-32,o), +(402,-54,o), +(361,-54,c), +(336,-54,o), +(314,-49,o), +(294,-41,c), +(266,-172,l), +(291,-183,o), +(330,-189,o), +(370,-189,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(483,0,l), +(386,690,l), +(235,690,l), +(332,0,l) +); +}, +{ +closed = 1; +nodes = ( +(136,0,l), +(283,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(473,-189,o), +(552,-143,o), +(579,-14,cs), +(729,690,l), +(582,690,l), +(437,9,ls), +(428,-32,o), +(402,-54,o), +(361,-54,c), +(336,-54,o), +(314,-49,o), +(294,-41,c), +(266,-172,l), +(291,-183,o), +(330,-189,o), +(370,-189,c) +); +} +); +width = 716; +} +); +unicode = 330; +}, +{ +color = 6; +glyphname = O; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 14:03:31 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (275,0); +}, +{ +name = ogonek; +pos = (367,0); +}, +{ +name = top; +pos = (421.664,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (275,0); +}, +{ +name = top; +pos = (421.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(499.323,-10,o), +(661,190,o), +(661,441,cs), +(661,594,o), +(563.855,700,o), +(409,700,c), +(197.666,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(132.169,-10,o), +(287,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(198,88,o), +(144,146.162,o), +(144,254,cs), +(144,443.848,o), +(253,602,o), +(393,602,c), +(498,602,o), +(553,542.8,o), +(553,434,cs), +(553,244.085,o), +(444,88,o), +(304,88,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(499.323,-10,o), +(661,190,o), +(661,441,cs), +(661,594,o), +(563.855,700,o), +(409,700,c), +(197.666,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(132.169,-10,o), +(287,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(198,88,o), +(144,146.162,o), +(144,254,cs), +(144,443.848,o), +(253,602,o), +(393,602,c), +(498,602,o), +(553,542.8,o), +(553,434,cs), +(553,244.085,o), +(444,88,o), +(304,88,c) +); +} +); +width = 697; +}, +{ +anchors = ( +{ +name = bottom; +pos = (291,0); +}, +{ +name = ogonek; +pos = (408,0); +}, +{ +name = top; +pos = (438,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (291,0); +}, +{ +name = top; +pos = (438,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(536,-14,o), +(696,185,o), +(696,424,c), +(696,584,o), +(595,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(133,-14,o), +(305,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(231,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(496,558,o), +(533,497,o), +(533,412,c), +(533,258,o), +(447,132,o), +(327,132,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(536,-14,o), +(696,185,o), +(696,424,c), +(696,584,o), +(595,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(133,-14,o), +(305,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(231,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(496,558,o), +(533,497,o), +(533,412,c), +(533,258,o), +(447,132,o), +(327,132,c) +); +} +); +width = 727; +} +); +unicode = 79; +}, +{ +color = 10; +glyphname = Oacute; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 14:21:18 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(499,-10,o), +(661,190,o), +(661,441,cs), +(661,594,o), +(564,700,o), +(409,700,c), +(198,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(132,-10,o), +(287,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(253,602,o), +(393,602,c), +(498,602,o), +(553,543,o), +(553,434,cs), +(553,244,o), +(444,88,o), +(304,88,c) +); +}, +{ +closed = 1; +nodes = ( +(467,735,l), +(625,845,l), +(490,845,l), +(366,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (99,0); +ref = acutecomb.case; +} +); +width = 697; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(536,-14,o), +(696,185,o), +(696,424,c), +(696,584,o), +(595,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(133,-14,o), +(305,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(231,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(496,558,o), +(533,497,o), +(533,412,c), +(533,258,o), +(447,132,o), +(327,132,c) +); +}, +{ +closed = 1; +nodes = ( +(499,735,l), +(675,850,l), +(502,850,l), +(374,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = O; +}, +{ +pos = (116,0); +ref = acutecomb.case; +} +); +width = 727; +} +); +unicode = 211; +}, +{ +color = 10; +glyphname = Obreve; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(499,-10,o), +(661,190,o), +(661,441,cs), +(661,594,o), +(564,700,o), +(409,700,c), +(198,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(132,-10,o), +(287,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(253,602,o), +(393,602,c), +(498,602,o), +(553,543,o), +(553,434,cs), +(553,244,o), +(444,88,o), +(304,88,c) +); +}, +{ +closed = 1; +nodes = ( +(540,735,o), +(587,777,o), +(605,845,c), +(535,845,l), +(527,820,o), +(500,805,o), +(443,805,c), +(391,805,o), +(375,818,o), +(375,841,cs), +(375,845,l), +(305,845,l), +(304,838,o), +(304,833,o), +(304,828,cs), +(304,773,o), +(352,735,o), +(440,735,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = brevecomb.case; +} +); +width = 697; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(536,-14,o), +(696,185,o), +(696,424,c), +(696,584,o), +(595,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(133,-14,o), +(305,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(231,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(496,558,o), +(533,497,o), +(533,412,c), +(533,258,o), +(447,132,o), +(327,132,c) +); +}, +{ +closed = 1; +nodes = ( +(562,730,o), +(615,779,o), +(631,850,c), +(534,850,l), +(526,827,o), +(504,814,o), +(463,814,c), +(422,814,o), +(410,827,o), +(410,850,c), +(313,850,l), +(312,843,o), +(311,837,o), +(311,831,cs), +(311,770,o), +(364,730,o), +(458,730,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = O; +}, +{ +pos = (114,0); +ref = brevecomb.case; +} +); +width = 727; +} +); +unicode = 334; +}, +{ +color = 10; +glyphname = Ocircumflex; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(499,-10,o), +(661,190,o), +(661,441,cs), +(661,594,o), +(564,700,o), +(409,700,c), +(198,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(132,-10,o), +(287,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(253,602,o), +(393,602,c), +(498,602,o), +(553,543,o), +(553,434,cs), +(553,244,o), +(444,88,o), +(304,88,c) +); +}, +{ +closed = 1; +nodes = ( +(355,735,l), +(476,814,l), +(491,845,l), +(386,845,l), +(248,735,l) +); +}, +{ +closed = 1; +nodes = ( +(614,735,l), +(524,845,l), +(419,845,l), +(433,814,l), +(521,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = circumflexcomb.case; +} +); +width = 697; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(536,-14,o), +(696,185,o), +(696,424,c), +(696,584,o), +(595,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(133,-14,o), +(305,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(231,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(496,558,o), +(533,497,o), +(533,412,c), +(533,258,o), +(447,132,o), +(327,132,c) +); +}, +{ +closed = 1; +nodes = ( +(380,735,l), +(495,812,l), +(517,850,l), +(388,850,l), +(253,735,l) +); +}, +{ +closed = 1; +nodes = ( +(641,735,l), +(556,850,l), +(427,850,l), +(443,812,l), +(524,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = O; +}, +{ +pos = (114,0); +ref = circumflexcomb.case; +} +); +width = 727; +} +); +unicode = 212; +}, +{ +color = 10; +glyphname = Odieresis; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(499,-10,o), +(661,190,o), +(661,441,cs), +(661,594,o), +(564,700,o), +(409,700,c), +(198,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(132,-10,o), +(287,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(253,602,o), +(393,602,c), +(498,602,o), +(553,543,o), +(553,434,cs), +(553,244,o), +(444,88,o), +(304,88,c) +); +}, +{ +closed = 1; +nodes = ( +(373,742,o), +(399,767,o), +(399,802,c), +(399,834,o), +(378,855,o), +(347,855,c), +(312,855,o), +(287,830,o), +(287,793,c), +(287,763,o), +(308,742,o), +(338,742,c) +); +}, +{ +closed = 1; +nodes = ( +(576,742,o), +(602,767,o), +(602,802,c), +(602,834,o), +(581,855,o), +(550,855,c), +(515,855,o), +(490,830,o), +(490,793,c), +(490,763,o), +(511,742,o), +(541,742,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (99,0); +ref = dieresiscomb.case; +} +); +width = 697; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(536,-14,o), +(696,185,o), +(696,424,c), +(696,584,o), +(595,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(133,-14,o), +(305,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(231,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(496,558,o), +(533,497,o), +(533,412,c), +(533,258,o), +(447,132,o), +(327,132,c) +); +}, +{ +closed = 1; +nodes = ( +(390,742,o), +(422,770,o), +(422,813,c), +(422,850,o), +(398,873,o), +(357,873,c), +(315,873,o), +(283,845,o), +(283,802,c), +(283,765,o), +(306,742,o), +(348,742,c) +); +}, +{ +closed = 1; +nodes = ( +(610,742,o), +(642,770,o), +(642,813,c), +(642,850,o), +(618,873,o), +(577,873,c), +(535,873,o), +(503,845,o), +(503,802,c), +(503,765,o), +(526,742,o), +(568,742,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = O; +}, +{ +pos = (114,0); +ref = dieresiscomb.case; +} +); +width = 727; +} +); +unicode = 214; +}, +{ +color = 10; +glyphname = Odotbelow; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(499,-10,o), +(661,190,o), +(661,441,cs), +(661,594,o), +(564,700,o), +(409,700,c), +(198,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(132,-10,o), +(287,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(279,-195,o), +(307,-168,o), +(307,-130,c), +(307,-95,o), +(284,-72,o), +(250,-72,c), +(212,-72,o), +(185,-99,o), +(185,-140,c), +(185,-172,o), +(208,-195,o), +(241,-195,c) +); +}, +{ +closed = 1; +nodes = ( +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(253,602,o), +(393,602,c), +(498,602,o), +(553,543,o), +(553,434,cs), +(553,244,o), +(444,88,o), +(304,88,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (99,0); +ref = dotbelow; +} +); +width = 697; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(536,-14,o), +(696,185,o), +(696,424,c), +(696,584,o), +(595,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(133,-14,o), +(305,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(305,-198,o), +(341,-166,o), +(341,-117,c), +(341,-75,o), +(314,-48,o), +(270,-48,c), +(225,-48,o), +(189,-80,o), +(189,-130,c), +(189,-171,o), +(216,-198,o), +(260,-198,c) +); +}, +{ +closed = 1; +nodes = ( +(231,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(496,558,o), +(533,497,o), +(533,412,c), +(533,258,o), +(447,132,o), +(327,132,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = O; +}, +{ +pos = (114,0); +ref = dotbelow; +} +); +width = 727; +} +); +unicode = 7884; +}, +{ +color = 10; +glyphname = Ograve; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(499,-10,o), +(661,190,o), +(661,441,cs), +(661,594,o), +(564,700,o), +(409,700,c), +(198,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(132,-10,o), +(287,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(253,602,o), +(393,602,c), +(498,602,o), +(553,543,o), +(553,434,cs), +(553,244,o), +(444,88,o), +(304,88,c) +); +}, +{ +closed = 1; +nodes = ( +(490,735,l), +(414,845,l), +(289,845,l), +(402,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = gravecomb.case; +} +); +width = 697; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(536,-14,o), +(696,185,o), +(696,424,c), +(696,584,o), +(595,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(133,-14,o), +(305,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(231,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(496,558,o), +(533,497,o), +(533,412,c), +(533,258,o), +(447,132,o), +(327,132,c) +); +}, +{ +closed = 1; +nodes = ( +(513,735,l), +(435,850,l), +(274,850,l), +(403,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = O; +}, +{ +pos = (113,0); +ref = gravecomb.case; +} +); +width = 727; +} +); +unicode = 210; +}, +{ +color = 10; +glyphname = Ohungarumlaut; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(499,-10,o), +(661,190,o), +(661,441,cs), +(661,594,o), +(564,700,o), +(409,700,c), +(198,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(132,-10,o), +(287,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(253,602,o), +(393,602,c), +(498,602,o), +(553,543,o), +(553,434,cs), +(553,244,o), +(444,88,o), +(304,88,c) +); +}, +{ +closed = 1; +nodes = ( +(406,735,l), +(527,845,l), +(411,845,l), +(318,735,l) +); +}, +{ +closed = 1; +nodes = ( +(553,735,l), +(712,845,l), +(588,845,l), +(464,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (99,0); +ref = hungarumlautcomb.case; +} +); +width = 697; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(536,-14,o), +(696,185,o), +(696,424,c), +(696,584,o), +(595,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(133,-14,o), +(305,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(231,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(496,558,o), +(533,497,o), +(533,412,c), +(533,258,o), +(447,132,o), +(327,132,c) +); +}, +{ +closed = 1; +nodes = ( +(432,735,l), +(565,850,l), +(420,850,l), +(324,735,l) +); +}, +{ +closed = 1; +nodes = ( +(585,735,l), +(761,850,l), +(606,850,l), +(472,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = O; +}, +{ +pos = (115,0); +ref = hungarumlautcomb.case; +} +); +width = 727; +} +); +unicode = 336; +}, +{ +color = 10; +glyphname = Omacron; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(499,-10,o), +(661,190,o), +(661,441,cs), +(661,594,o), +(564,700,o), +(409,700,c), +(198,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(132,-10,o), +(287,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(253,602,o), +(393,602,c), +(498,602,o), +(553,543,o), +(553,434,cs), +(553,244,o), +(444,88,o), +(304,88,c) +); +}, +{ +closed = 1; +nodes = ( +(593,753,l), +(611,837,l), +(295,837,l), +(277,753,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (99,0); +ref = macroncomb.case; +} +); +width = 697; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(536,-14,o), +(696,185,o), +(696,424,c), +(696,584,o), +(595,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(133,-14,o), +(305,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(231,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(496,558,o), +(533,497,o), +(533,412,c), +(533,258,o), +(447,132,o), +(327,132,c) +); +}, +{ +closed = 1; +nodes = ( +(612,735,l), +(637,850,l), +(307,850,l), +(282,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = O; +}, +{ +pos = (115,0); +ref = macroncomb.case; +} +); +width = 727; +} +); +unicode = 332; +}, +{ +color = 10; +glyphname = Oogonek; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 14:03:31 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(275,-185,o), +(312,-176,o), +(334,-165,c), +(342,-84,l), +(317,-96,o), +(286,-106,o), +(260,-106,c), +(249,-106,o), +(243,-101,o), +(243,-93,cs), +(243,-72,o), +(286,-27,o), +(386,5,cs), +(548,57,o), +(661,231,o), +(661,441,cs), +(661,594,o), +(564,700,o), +(409,700,c), +(198,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(132,-10,o), +(287,-10,c), +(275,0,l), +(184,-35,o), +(155,-74,o), +(155,-118,c), +(155,-155,o), +(181,-185,o), +(243,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(253,602,o), +(393,602,c), +(498,602,o), +(553,543,o), +(553,434,cs), +(553,244,o), +(444,88,o), +(304,88,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (137,0); +ref = ogonekcomb; +} +); +width = 697; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(291,-190,o), +(326,-183,o), +(357,-170,c), +(368,-75,l), +(346,-87,o), +(318,-96,o), +(299,-96,c), +(286,-96,o), +(279,-90,o), +(279,-82,cs), +(279,-65,o), +(302,-29,o), +(398,-3,cs), +(577,45,o), +(696,218,o), +(696,424,c), +(696,584,o), +(595,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(133,-14,o), +(305,-14,c), +(292,-2,l), +(195,-36,o), +(164,-82,o), +(164,-121,c), +(164,-158,o), +(194,-190,o), +(263,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(231,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(496,558,o), +(533,497,o), +(533,412,c), +(533,258,o), +(447,132,o), +(327,132,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = O; +}, +{ +pos = (142,0); +ref = ogonekcomb; +} +); +width = 727; +} +); +unicode = 490; +}, +{ +color = 6; +glyphname = Oslash; +kernLeft = C; +kernRight = D; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (422,690); +} +); +background = { +anchors = ( +{ +name = top; +pos = (422,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(499,-10,o), +(661,190,o), +(661,441,cs), +(661,594,o), +(564,700,o), +(409,700,c), +(198,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(132,-10,o), +(287,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(50,0,l), +(767,690,l), +(648,690,l), +(-69,0,l) +); +}, +{ +closed = 1; +nodes = ( +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(253,602,o), +(393,602,c), +(498,602,o), +(553,543,o), +(553,434,cs), +(553,244,o), +(444,88,o), +(304,88,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(499,-10,o), +(661,190,o), +(661,441,cs), +(661,594,o), +(564,700,o), +(409,700,c), +(198,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(132,-10,o), +(287,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(50,0,l), +(767,690,l), +(648,690,l), +(-69,0,l) +); +}, +{ +closed = 1; +nodes = ( +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(253,602,o), +(393,602,c), +(498,602,o), +(553,543,o), +(553,434,cs), +(553,244,o), +(444,88,o), +(304,88,c) +); +} +); +width = 696; +}, +{ +anchors = ( +{ +name = top; +pos = (437,690); +} +); +background = { +anchors = ( +{ +name = top; +pos = (437,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(536,-14,o), +(696,185,o), +(696,424,c), +(696,584,o), +(595,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(133,-14,o), +(305,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(102,0,l), +(800,690,l), +(625,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(231,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(496,558,o), +(533,497,o), +(533,412,c), +(533,258,o), +(447,132,o), +(327,132,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(536,-14,o), +(696,185,o), +(696,424,c), +(696,584,o), +(595,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(133,-14,o), +(305,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(102,0,l), +(800,690,l), +(625,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(231,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(496,558,o), +(533,497,o), +(533,412,c), +(533,258,o), +(447,132,o), +(327,132,c) +); +} +); +width = 725; +} +); +unicode = 216; +}, +{ +color = 10; +glyphname = Oslashacute; +kernLeft = C; +kernRight = D; +lastChange = "2024-03-21 14:21:18 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(499,-10,o), +(661,190,o), +(661,441,cs), +(661,594,o), +(564,700,o), +(409,700,c), +(198,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(132,-10,o), +(287,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(50,0,l), +(767,690,l), +(648,690,l), +(-69,0,l) +); +}, +{ +closed = 1; +nodes = ( +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(253,602,o), +(393,602,c), +(498,602,o), +(553,543,o), +(553,434,cs), +(553,244,o), +(444,88,o), +(304,88,c) +); +}, +{ +closed = 1; +nodes = ( +(467,735,l), +(625,845,l), +(490,845,l), +(366,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = Oslash; +}, +{ +pos = (99,0); +ref = acutecomb.case; +} +); +width = 696; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(536,-14,o), +(696,185,o), +(696,424,c), +(696,584,o), +(595,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(133,-14,o), +(305,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(102,0,l), +(800,690,l), +(625,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(231,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(496,558,o), +(533,497,o), +(533,412,c), +(533,258,o), +(447,132,o), +(327,132,c) +); +}, +{ +closed = 1; +nodes = ( +(498,735,l), +(674,850,l), +(501,850,l), +(373,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = Oslash; +}, +{ +pos = (115,0); +ref = acutecomb.case; +} +); +width = 725; +} +); +unicode = 510; +}, +{ +color = 10; +glyphname = Otilde; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(499,-10,o), +(661,190,o), +(661,441,cs), +(661,594,o), +(564,700,o), +(409,700,c), +(198,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(132,-10,o), +(287,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(253,602,o), +(393,602,c), +(498,602,o), +(553,543,o), +(553,434,cs), +(553,244,o), +(444,88,o), +(304,88,c) +); +}, +{ +closed = 1; +nodes = ( +(341,735,l), +(343,757,o), +(356,773,o), +(379,773,c), +(415,773,o), +(442,735,o), +(499,735,c), +(562,735,o), +(601,777,o), +(613,845,c), +(545,845,l), +(543,823,o), +(530,807,o), +(507,807,c), +(472,807,o), +(444,845,o), +(387,845,c), +(324,845,o), +(285,803,o), +(273,735,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (99,0); +ref = tildecomb.case; +} +); +width = 697; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(536,-14,o), +(696,185,o), +(696,424,c), +(696,584,o), +(595,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(133,-14,o), +(305,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(231,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(496,558,o), +(533,497,o), +(533,412,c), +(533,258,o), +(447,132,o), +(327,132,c) +); +}, +{ +closed = 1; +nodes = ( +(364,735,l), +(365,761,o), +(381,772,o), +(398,772,c), +(431,772,o), +(453,735,o), +(518,735,c), +(581,735,o), +(628,781,o), +(640,854,c), +(556,854,l), +(555,828,o), +(539,817,o), +(522,817,c), +(491,817,o), +(467,854,o), +(402,854,c), +(338,854,o), +(291,808,o), +(280,735,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = O; +}, +{ +pos = (114,0); +ref = tildecomb.case; +} +); +width = 727; +} +); +unicode = 213; +}, +{ +color = 6; +glyphname = OE; +kernLeft = O; +kernRight = E; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(464,0,l), +(485,96,l), +(326,96,ls), +(191,96,o), +(144,153,o), +(144,256,cs), +(144,441,o), +(252,594,o), +(432,594,cs), +(591,594,l), +(611,690,l), +(442,690,ls), +(190,690,o), +(36,494,o), +(36,249,cs), +(36,102,o), +(139,0,o), +(303,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(879,0,l), +(899,96,l), +(479,96,l), +(459,0,l) +); +}, +{ +closed = 1; +nodes = ( +(514,0,l), +(661,690,l), +(556,690,l), +(409,0,l) +); +}, +{ +closed = 1; +nodes = ( +(879,306,l), +(899,402,l), +(544,402,l), +(524,306,l) +); +}, +{ +closed = 1; +nodes = ( +(1000,594,l), +(1021,690,l), +(606,690,l), +(585,594,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(464,0,l), +(485,96,l), +(326,96,ls), +(191,96,o), +(144,153,o), +(144,256,cs), +(144,441,o), +(252,594,o), +(432,594,cs), +(591,594,l), +(611,690,l), +(442,690,ls), +(190,690,o), +(36,494,o), +(36,249,cs), +(36,102,o), +(139,0,o), +(303,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(879,0,l), +(899,96,l), +(479,96,l), +(459,0,l) +); +}, +{ +closed = 1; +nodes = ( +(514,0,l), +(661,690,l), +(556,690,l), +(409,0,l) +); +}, +{ +closed = 1; +nodes = ( +(879,306,l), +(899,402,l), +(544,402,l), +(524,306,l) +); +}, +{ +closed = 1; +nodes = ( +(1000,594,l), +(1021,690,l), +(606,690,l), +(585,594,l) +); +} +); +width = 998; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(488,0,l), +(519,145,l), +(324,145,l), +(228,145,o), +(193,202,o), +(193,278,c), +(193,424,o), +(277,545,o), +(412,545,c), +(604,545,l), +(635,690,l), +(433,690,l), +(187,690,o), +(32,497,o), +(32,266,c), +(32,115,o), +(131,0,o), +(304,0,c) +); +}, +{ +closed = 1; +nodes = ( +(896,0,l), +(927,145,l), +(500,145,l), +(469,0,l) +); +}, +{ +closed = 1; +nodes = ( +(556,0,l), +(703,690,l), +(548,690,l), +(401,0,l) +); +}, +{ +closed = 1; +nodes = ( +(909,282,l), +(938,419,l), +(558,419,l), +(529,282,l) +); +}, +{ +closed = 1; +nodes = ( +(1008,545,l), +(1039,690,l), +(616,690,l), +(585,545,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(488,0,l), +(519,145,l), +(324,145,l), +(228,145,o), +(193,202,o), +(193,278,c), +(193,424,o), +(277,545,o), +(412,545,c), +(604,545,l), +(635,690,l), +(433,690,l), +(187,690,o), +(32,497,o), +(32,266,c), +(32,115,o), +(131,0,o), +(304,0,c) +); +}, +{ +closed = 1; +nodes = ( +(896,0,l), +(927,145,l), +(500,145,l), +(469,0,l) +); +}, +{ +closed = 1; +nodes = ( +(556,0,l), +(703,690,l), +(548,690,l), +(401,0,l) +); +}, +{ +closed = 1; +nodes = ( +(909,282,l), +(938,419,l), +(558,419,l), +(529,282,l) +); +}, +{ +closed = 1; +nodes = ( +(1008,545,l), +(1039,690,l), +(616,690,l), +(585,545,l) +); +} +); +width = 1004; +} +); +unicode = 338; +}, +{ +color = 6; +glyphname = P; +kernLeft = H; +kernRight = P; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(300,240,l), +(496,240,o), +(611,348,o), +(611,500,c), +(611,617,o), +(519,690,o), +(395,690,c), +(199,690,l), +(178,594,l), +(371,594,l), +(460,594,o), +(504,559,o), +(504,493,c), +(504,410,o), +(446,336,o), +(312,336,c), +(123,336,l), +(103,240,l) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(300,240,l), +(496,240,o), +(611,348,o), +(611,500,c), +(611,617,o), +(519,690,o), +(395,690,c), +(199,690,l), +(178,594,l), +(371,594,l), +(460,594,o), +(504,559,o), +(504,493,c), +(504,410,o), +(446,336,o), +(312,336,c), +(123,336,l), +(103,240,l) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +} +); +width = 612; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(306,213,l), +(517,213,o), +(637,337,o), +(637,491,c), +(637,611,o), +(551,690,o), +(400,690,c), +(204,690,l), +(173,545,l), +(372,545,l), +(446,545,o), +(477,515,o), +(477,469,c), +(477,403,o), +(432,358,o), +(327,358,c), +(133,358,l), +(102,213,l) +); +}, +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(306,213,l), +(517,213,o), +(637,337,o), +(637,491,c), +(637,611,o), +(551,690,o), +(400,690,c), +(204,690,l), +(173,545,l), +(372,545,l), +(446,545,o), +(477,515,o), +(477,469,c), +(477,403,o), +(432,358,o), +(327,358,c), +(133,358,l), +(102,213,l) +); +}, +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +} +); +width = 631; +} +); +unicode = 80; +}, +{ +color = 6; +glyphname = Thorn; +kernLeft = H; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(276,125,l), +(472,125,o), +(587,233,o), +(587,385,c), +(587,502,o), +(495,575,o), +(371,575,c), +(175,575,l), +(154,479,l), +(347,479,l), +(436,479,o), +(480,444,o), +(480,378,c), +(480,295,o), +(422,221,o), +(288,221,c), +(99,221,l), +(79,125,l) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(276,125,l), +(472,125,o), +(587,233,o), +(587,385,c), +(587,502,o), +(495,575,o), +(371,575,c), +(175,575,l), +(154,479,l), +(347,479,l), +(436,479,o), +(480,444,o), +(480,378,c), +(480,295,o), +(422,221,o), +(288,221,c), +(99,221,l), +(79,125,l) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +} +); +width = 614; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(284,110,l), +(495,110,o), +(615,234,o), +(615,388,c), +(615,508,o), +(529,587,o), +(378,587,c), +(182,587,l), +(151,442,l), +(350,442,l), +(424,442,o), +(455,412,o), +(455,366,c), +(455,300,o), +(410,255,o), +(305,255,c), +(111,255,l), +(80,110,l) +); +}, +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(284,110,l), +(495,110,o), +(615,234,o), +(615,388,c), +(615,508,o), +(529,587,o), +(378,587,c), +(182,587,l), +(151,442,l), +(350,442,l), +(424,442,o), +(455,412,o), +(455,366,c), +(455,300,o), +(410,255,o), +(305,255,c), +(111,255,l), +(80,110,l) +); +}, +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +} +); +width = 632; +} +); +unicode = 222; +}, +{ +color = 6; +glyphname = Q; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (275,0); +}, +{ +name = top; +pos = (422,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (275,0); +}, +{ +name = top; +pos = (422,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(499,-10,o), +(661,190,o), +(661,441,cs), +(661,594,o), +(564,700,o), +(409,700,c), +(198,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(132,-10,o), +(287,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(535,-55,l), +(446,87,l), +(390,195,l), +(285,195,l), +(371,52,l), +(425,-55,l) +); +}, +{ +closed = 1; +nodes = ( +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(253,602,o), +(393,602,c), +(498,602,o), +(553,543,o), +(553,434,cs), +(553,244,o), +(444,88,o), +(304,88,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(499,-10,o), +(661,190,o), +(661,441,cs), +(661,594,o), +(564,700,o), +(409,700,c), +(198,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(132,-10,o), +(287,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(535,-55,l), +(446,87,l), +(390,195,l), +(285,195,l), +(371,52,l), +(425,-55,l) +); +}, +{ +closed = 1; +nodes = ( +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(253,602,o), +(393,602,c), +(498,602,o), +(553,543,o), +(553,434,cs), +(553,244,o), +(444,88,o), +(304,88,c) +); +} +); +width = 697; +}, +{ +anchors = ( +{ +name = bottom; +pos = (438,690); +}, +{ +name = top; +pos = (291,0); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (438,690); +}, +{ +name = top; +pos = (291,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(536,-14,o), +(696,185,o), +(696,424,c), +(696,584,o), +(595,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(133,-14,o), +(305,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(557,-60,l), +(467,106,l), +(412,231,l), +(266,231,l), +(350,67,l), +(401,-60,l) +); +}, +{ +closed = 1; +nodes = ( +(231,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(496,558,o), +(533,497,o), +(533,412,c), +(533,258,o), +(447,132,o), +(327,132,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(536,-14,o), +(696,185,o), +(696,424,c), +(696,584,o), +(595,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(133,-14,o), +(305,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(557,-60,l), +(467,106,l), +(412,231,l), +(266,231,l), +(350,67,l), +(401,-60,l) +); +}, +{ +closed = 1; +nodes = ( +(231,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(496,558,o), +(533,497,o), +(533,412,c), +(533,258,o), +(447,132,o), +(327,132,c) +); +} +); +width = 727; +} +); +unicode = 81; +}, +{ +color = 6; +glyphname = R; +kernLeft = H; +kernRight = R; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (251,0); +}, +{ +name = top; +pos = (397.664,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (251,0); +}, +{ +name = top; +pos = (397.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(294,260,l), +(487,260,o), +(600,364,o), +(600,510,c), +(600,621,o), +(510,690,o), +(389,690,c), +(199,690,l), +(178,594,l), +(365,594,l), +(451,594,o), +(493,562,o), +(493,503,c), +(493,425,o), +(437,356,o), +(306,356,c), +(128,356,l), +(107,260,l) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(516,0,l), +(378,299,l), +(270,299,l), +(401,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(294,260,l), +(487,260,o), +(600,364,o), +(600,510,c), +(600,621,o), +(510,690,o), +(389,690,c), +(199,690,l), +(178,594,l), +(365,594,l), +(451,594,o), +(493,562,o), +(493,503,c), +(493,425,o), +(437,356,o), +(306,356,c), +(128,356,l), +(107,260,l) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(516,0,l), +(378,299,l), +(270,299,l), +(401,0,l) +); +} +); +width = 619; +}, +{ +anchors = ( +{ +name = bottom; +pos = (256,0); +}, +{ +name = top; +pos = (402.664,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (256,0); +}, +{ +name = top; +pos = (402.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(301,233,l), +(509,233,o), +(627,347,o), +(627,495,c), +(627,609,o), +(543,690,o), +(395,690,c), +(204,690,l), +(173,545,l), +(367,545,l), +(437,545,o), +(467,519,o), +(467,479,c), +(467,419,o), +(424,378,o), +(322,378,c), +(137,378,l), +(107,233,l) +); +}, +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(548,0,l), +(406,299,l), +(257,299,l), +(386,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(301,233,l), +(509,233,o), +(627,347,o), +(627,495,c), +(627,609,o), +(543,690,o), +(395,690,c), +(204,690,l), +(173,545,l), +(367,545,l), +(437,545,o), +(467,519,o), +(467,479,c), +(467,419,o), +(424,378,o), +(322,378,c), +(137,378,l), +(107,233,l) +); +}, +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(548,0,l), +(406,299,l), +(257,299,l), +(386,0,l) +); +} +); +width = 642; +} +); +unicode = 82; +}, +{ +color = 10; +glyphname = Racute; +kernLeft = H; +kernRight = R; +lastChange = "2024-03-21 14:21:18 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(294,260,l), +(487,260,o), +(600,364,o), +(600,510,c), +(600,621,o), +(510,690,o), +(389,690,c), +(199,690,l), +(178,594,l), +(365,594,l), +(451,594,o), +(493,562,o), +(493,503,c), +(493,425,o), +(437,356,o), +(306,356,c), +(128,356,l), +(107,260,l) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(516,0,l), +(378,299,l), +(270,299,l), +(401,0,l) +); +}, +{ +closed = 1; +nodes = ( +(443,735,l), +(601,845,l), +(466,845,l), +(342,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = R; +}, +{ +pos = (75,0); +ref = acutecomb.case; +} +); +width = 619; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(301,233,l), +(509,233,o), +(627,347,o), +(627,495,c), +(627,609,o), +(543,690,o), +(395,690,c), +(204,690,l), +(173,545,l), +(367,545,l), +(437,545,o), +(467,519,o), +(467,479,c), +(467,419,o), +(424,378,o), +(322,378,c), +(137,378,l), +(107,233,l) +); +}, +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(548,0,l), +(406,299,l), +(257,299,l), +(386,0,l) +); +}, +{ +closed = 1; +nodes = ( +(464,735,l), +(640,850,l), +(467,850,l), +(339,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = R; +}, +{ +pos = (81,0); +ref = acutecomb.case; +} +); +width = 642; +} +); +unicode = 340; +}, +{ +color = 10; +glyphname = Rcaron; +kernLeft = H; +kernRight = R; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(294,260,l), +(487,260,o), +(600,364,o), +(600,510,c), +(600,621,o), +(510,690,o), +(389,690,c), +(199,690,l), +(178,594,l), +(365,594,l), +(451,594,o), +(493,562,o), +(493,503,c), +(493,425,o), +(437,356,o), +(306,356,c), +(128,356,l), +(107,260,l) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(516,0,l), +(378,299,l), +(270,299,l), +(401,0,l) +); +}, +{ +closed = 1; +nodes = ( +(443,735,l), +(429,766,l), +(341,845,l), +(248,845,l), +(338,735,l) +); +}, +{ +closed = 1; +nodes = ( +(476,735,l), +(614,845,l), +(507,845,l), +(386,766,l), +(371,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = R; +}, +{ +pos = (73,0); +ref = caroncomb.case; +} +); +width = 619; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(301,233,l), +(509,233,o), +(627,347,o), +(627,495,c), +(627,609,o), +(543,690,o), +(395,690,c), +(204,690,l), +(173,545,l), +(367,545,l), +(437,545,o), +(467,519,o), +(467,479,c), +(467,419,o), +(424,378,o), +(322,378,c), +(137,378,l), +(107,233,l) +); +}, +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(548,0,l), +(406,299,l), +(257,299,l), +(386,0,l) +); +}, +{ +closed = 1; +nodes = ( +(457,735,l), +(441,773,l), +(360,850,l), +(243,850,l), +(328,735,l) +); +}, +{ +closed = 1; +nodes = ( +(496,735,l), +(631,850,l), +(504,850,l), +(389,773,l), +(367,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = R; +}, +{ +pos = (78,0); +ref = caroncomb.case; +} +); +width = 642; +} +); +unicode = 344; +}, +{ +color = 10; +glyphname = Rcommaaccent; +kernLeft = H; +kernRight = R; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(294,260,l), +(487,260,o), +(600,364,o), +(600,510,c), +(600,621,o), +(510,690,o), +(389,690,c), +(199,690,l), +(178,594,l), +(365,594,l), +(451,594,o), +(493,562,o), +(493,503,c), +(493,425,o), +(437,356,o), +(306,356,c), +(128,356,l), +(107,260,l) +); +}, +{ +closed = 1; +nodes = ( +(209,-275,l), +(293,-72,l), +(189,-72,l), +(146,-275,l) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(516,0,l), +(378,299,l), +(270,299,l), +(401,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = R; +}, +{ +pos = (74,0); +ref = commaaccentcomb; +} +); +width = 619; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(301,233,l), +(509,233,o), +(627,347,o), +(627,495,c), +(627,609,o), +(543,690,o), +(395,690,c), +(204,690,l), +(173,545,l), +(367,545,l), +(437,545,o), +(467,519,o), +(467,479,c), +(467,419,o), +(424,378,o), +(322,378,c), +(137,378,l), +(107,233,l) +); +}, +{ +closed = 1; +nodes = ( +(227,-270,l), +(315,-54,l), +(183,-54,l), +(137,-270,l) +); +}, +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(548,0,l), +(406,299,l), +(257,299,l), +(386,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = R; +}, +{ +pos = (79,0); +ref = commaaccentcomb; +} +); +width = 642; +} +); +unicode = 342; +}, +{ +color = 6; +glyphname = S; +kernLeft = S; +kernRight = S; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (222,0); +}, +{ +name = top; +pos = (369,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (222,0); +}, +{ +name = top; +pos = (369,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(431,-10,o), +(520,97,o), +(520,203,c), +(520,426,o), +(191,372,o), +(191,521,c), +(191,566,o), +(228,607,o), +(326,607,c), +(416,607,o), +(464,572,o), +(484,499,c), +(581,532,l), +(550,637,o), +(470,700,o), +(343,700,c), +(155,700,o), +(81,592,o), +(81,497,c), +(81,287,o), +(409,331,o), +(409,187,c), +(409,125,o), +(356,83,o), +(251,83,c), +(155,83,o), +(109,120,o), +(91,196,c), +(-9,163,l), +(18,55,o), +(100,-10,o), +(242,-10,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(431,-10,o), +(520,97,o), +(520,203,c), +(520,426,o), +(191,372,o), +(191,521,c), +(191,566,o), +(228,607,o), +(326,607,c), +(416,607,o), +(464,572,o), +(484,499,c), +(581,532,l), +(550,637,o), +(470,700,o), +(343,700,c), +(155,700,o), +(81,592,o), +(81,497,c), +(81,287,o), +(409,331,o), +(409,187,c), +(409,125,o), +(356,83,o), +(251,83,c), +(155,83,o), +(109,120,o), +(91,196,c), +(-9,163,l), +(18,55,o), +(100,-10,o), +(242,-10,c) +); +} +); +width = 592; +}, +{ +anchors = ( +{ +name = bottom; +pos = (244,0); +}, +{ +name = top; +pos = (389,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (244,0); +}, +{ +name = top; +pos = (389,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(450,-14,o), +(556,79,o), +(556,212,c), +(556,437,o), +(235,402,o), +(235,507,c), +(235,540,o), +(262,566,o), +(337,566,c), +(402,566,o), +(442,536,o), +(456,473,c), +(608,517,l), +(581,640,o), +(478,704,o), +(350,704,c), +(169,704,o), +(76,607,o), +(76,488,c), +(76,272,o), +(391,310,o), +(391,193,c), +(391,156,o), +(365,125,o), +(285,125,c), +(212,125,o), +(168,159,o), +(150,236,c), +(-6,190,l), +(22,53,o), +(127,-14,o), +(272,-14,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(450,-14,o), +(556,79,o), +(556,212,c), +(556,437,o), +(235,402,o), +(235,507,c), +(235,540,o), +(262,566,o), +(337,566,c), +(402,566,o), +(442,536,o), +(456,473,c), +(608,517,l), +(581,640,o), +(478,704,o), +(350,704,c), +(169,704,o), +(76,607,o), +(76,488,c), +(76,272,o), +(391,310,o), +(391,193,c), +(391,156,o), +(365,125,o), +(285,125,c), +(212,125,o), +(168,159,o), +(150,236,c), +(-6,190,l), +(22,53,o), +(127,-14,o), +(272,-14,c) +); +} +); +width = 620; +} +); +unicode = 83; +}, +{ +color = 10; +glyphname = Sacute; +kernLeft = S; +kernRight = S; +lastChange = "2024-03-21 14:21:18 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(431,-10,o), +(520,97,o), +(520,203,c), +(520,426,o), +(191,372,o), +(191,521,c), +(191,566,o), +(228,607,o), +(326,607,c), +(416,607,o), +(464,572,o), +(484,499,c), +(581,532,l), +(550,637,o), +(470,700,o), +(343,700,c), +(155,700,o), +(81,592,o), +(81,497,c), +(81,287,o), +(409,331,o), +(409,187,c), +(409,125,o), +(356,83,o), +(251,83,c), +(155,83,o), +(109,120,o), +(91,196,c), +(-9,163,l), +(18,55,o), +(100,-10,o), +(242,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(414,735,l), +(572,845,l), +(437,845,l), +(313,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = S; +}, +{ +pos = (46,0); +ref = acutecomb.case; +} +); +width = 592; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(450,-14,o), +(556,79,o), +(556,212,c), +(556,437,o), +(235,402,o), +(235,507,c), +(235,540,o), +(262,566,o), +(337,566,c), +(402,566,o), +(442,536,o), +(456,473,c), +(608,517,l), +(581,640,o), +(478,704,o), +(350,704,c), +(169,704,o), +(76,607,o), +(76,488,c), +(76,272,o), +(391,310,o), +(391,193,c), +(391,156,o), +(365,125,o), +(285,125,c), +(212,125,o), +(168,159,o), +(150,236,c), +(-6,190,l), +(22,53,o), +(127,-14,o), +(272,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(450,735,l), +(626,850,l), +(453,850,l), +(325,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = S; +}, +{ +pos = (67,0); +ref = acutecomb.case; +} +); +width = 620; +} +); +unicode = 346; +}, +{ +color = 10; +glyphname = Scaron; +kernLeft = S; +kernRight = S; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(431,-10,o), +(520,97,o), +(520,203,c), +(520,426,o), +(191,372,o), +(191,521,c), +(191,566,o), +(228,607,o), +(326,607,c), +(416,607,o), +(464,572,o), +(484,499,c), +(581,532,l), +(550,637,o), +(470,700,o), +(343,700,c), +(155,700,o), +(81,592,o), +(81,497,c), +(81,287,o), +(409,331,o), +(409,187,c), +(409,125,o), +(356,83,o), +(251,83,c), +(155,83,o), +(109,120,o), +(91,196,c), +(-9,163,l), +(18,55,o), +(100,-10,o), +(242,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(414,735,l), +(400,766,l), +(312,845,l), +(219,845,l), +(309,735,l) +); +}, +{ +closed = 1; +nodes = ( +(447,735,l), +(585,845,l), +(478,845,l), +(357,766,l), +(342,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = S; +}, +{ +pos = (44,0); +ref = caroncomb.case; +} +); +width = 592; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(450,-14,o), +(556,79,o), +(556,212,c), +(556,437,o), +(235,402,o), +(235,507,c), +(235,540,o), +(262,566,o), +(337,566,c), +(402,566,o), +(442,536,o), +(456,473,c), +(608,517,l), +(581,640,o), +(478,704,o), +(350,704,c), +(169,704,o), +(76,607,o), +(76,488,c), +(76,272,o), +(391,310,o), +(391,193,c), +(391,156,o), +(365,125,o), +(285,125,c), +(212,125,o), +(168,159,o), +(150,236,c), +(-6,190,l), +(22,53,o), +(127,-14,o), +(272,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(443,735,l), +(427,773,l), +(346,850,l), +(229,850,l), +(314,735,l) +); +}, +{ +closed = 1; +nodes = ( +(482,735,l), +(617,850,l), +(490,850,l), +(375,773,l), +(353,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = S; +}, +{ +pos = (64,0); +ref = caroncomb.case; +} +); +width = 620; +} +); +unicode = 352; +}, +{ +color = 10; +glyphname = Scedilla; +kernLeft = S; +kernRight = S; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(431,-10,o), +(520,97,o), +(520,203,c), +(520,426,o), +(191,372,o), +(191,521,c), +(191,566,o), +(228,607,o), +(326,607,c), +(416,607,o), +(464,572,o), +(484,499,c), +(581,532,l), +(550,637,o), +(470,700,o), +(343,700,c), +(155,700,o), +(81,592,o), +(81,497,c), +(81,287,o), +(409,331,o), +(409,187,c), +(409,125,o), +(356,83,o), +(251,83,c), +(155,83,o), +(109,120,o), +(91,196,c), +(-9,163,l), +(18,55,o), +(100,-10,o), +(242,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(244,-185,o), +(288,-144,o), +(288,-96,c), +(288,-55,o), +(259,-29,o), +(218,-29,c), +(227,-43,l), +(244,9,l), +(188,11,l), +(157,-73,l), +(169,-71,o), +(176,-70,o), +(187,-70,c), +(209,-70,o), +(220,-79,o), +(220,-94,c), +(220,-108,o), +(206,-119,o), +(181,-119,c), +(161,-119,o), +(146,-114,o), +(130,-105,c), +(103,-169,l), +(126,-180,o), +(150,-185,o), +(176,-185,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = S; +}, +{ +pos = (43,0); +ref = cedillacomb; +} +); +width = 592; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(450,-14,o), +(556,79,o), +(556,212,c), +(556,437,o), +(235,402,o), +(235,507,c), +(235,540,o), +(262,566,o), +(337,566,c), +(402,566,o), +(442,536,o), +(456,473,c), +(608,517,l), +(581,640,o), +(478,704,o), +(350,704,c), +(169,704,o), +(76,607,o), +(76,488,c), +(76,272,o), +(391,310,o), +(391,193,c), +(391,156,o), +(365,125,o), +(285,125,c), +(212,125,o), +(168,159,o), +(150,236,c), +(-6,190,l), +(22,53,o), +(127,-14,o), +(272,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(286,-190,o), +(325,-146,o), +(325,-97,c), +(325,-57,o), +(296,-29,o), +(246,-29,c), +(255,-43,l), +(272,9,l), +(204,11,l), +(171,-80,l), +(183,-76,o), +(193,-74,o), +(205,-74,c), +(225,-74,o), +(235,-80,o), +(235,-91,c), +(235,-103,o), +(224,-109,o), +(201,-109,c), +(181,-109,o), +(159,-105,o), +(140,-94,c), +(111,-174,l), +(136,-185,o), +(166,-190,o), +(194,-190,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = S; +}, +{ +pos = (64,0); +ref = cedillacomb; +} +); +width = 620; +} +); +unicode = 350; +}, +{ +color = 10; +glyphname = Scircumflex; +kernLeft = S; +kernRight = S; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(431,-10,o), +(520,97,o), +(520,203,c), +(520,426,o), +(191,372,o), +(191,521,c), +(191,566,o), +(228,607,o), +(326,607,c), +(416,607,o), +(464,572,o), +(484,499,c), +(581,532,l), +(550,637,o), +(470,700,o), +(343,700,c), +(155,700,o), +(81,592,o), +(81,497,c), +(81,287,o), +(409,331,o), +(409,187,c), +(409,125,o), +(356,83,o), +(251,83,c), +(155,83,o), +(109,120,o), +(91,196,c), +(-9,163,l), +(18,55,o), +(100,-10,o), +(242,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(302,735,l), +(423,814,l), +(438,845,l), +(333,845,l), +(195,735,l) +); +}, +{ +closed = 1; +nodes = ( +(561,735,l), +(471,845,l), +(366,845,l), +(380,814,l), +(468,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = S; +}, +{ +pos = (45,0); +ref = circumflexcomb.case; +} +); +width = 592; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(450,-14,o), +(556,79,o), +(556,212,c), +(556,437,o), +(235,402,o), +(235,507,c), +(235,540,o), +(262,566,o), +(337,566,c), +(402,566,o), +(442,536,o), +(456,473,c), +(608,517,l), +(581,640,o), +(478,704,o), +(350,704,c), +(169,704,o), +(76,607,o), +(76,488,c), +(76,272,o), +(391,310,o), +(391,193,c), +(391,156,o), +(365,125,o), +(285,125,c), +(212,125,o), +(168,159,o), +(150,236,c), +(-6,190,l), +(22,53,o), +(127,-14,o), +(272,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(331,735,l), +(446,812,l), +(468,850,l), +(339,850,l), +(204,735,l) +); +}, +{ +closed = 1; +nodes = ( +(592,735,l), +(507,850,l), +(378,850,l), +(394,812,l), +(475,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = S; +}, +{ +pos = (65,0); +ref = circumflexcomb.case; +} +); +width = 620; +} +); +unicode = 348; +}, +{ +color = 10; +glyphname = Scommaaccent; +kernLeft = S; +kernRight = S; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(431,-10,o), +(520,97,o), +(520,203,c), +(520,426,o), +(191,372,o), +(191,521,c), +(191,566,o), +(228,607,o), +(326,607,c), +(416,607,o), +(464,572,o), +(484,499,c), +(581,532,l), +(550,637,o), +(470,700,o), +(343,700,c), +(155,700,o), +(81,592,o), +(81,497,c), +(81,287,o), +(409,331,o), +(409,187,c), +(409,125,o), +(356,83,o), +(251,83,c), +(155,83,o), +(109,120,o), +(91,196,c), +(-9,163,l), +(18,55,o), +(100,-10,o), +(242,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(180,-275,l), +(264,-72,l), +(160,-72,l), +(117,-275,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = S; +}, +{ +pos = (45,0); +ref = commaaccentcomb; +} +); +width = 592; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(450,-14,o), +(556,79,o), +(556,212,c), +(556,437,o), +(235,402,o), +(235,507,c), +(235,540,o), +(262,566,o), +(337,566,c), +(402,566,o), +(442,536,o), +(456,473,c), +(608,517,l), +(581,640,o), +(478,704,o), +(350,704,c), +(169,704,o), +(76,607,o), +(76,488,c), +(76,272,o), +(391,310,o), +(391,193,c), +(391,156,o), +(365,125,o), +(285,125,c), +(212,125,o), +(168,159,o), +(150,236,c), +(-6,190,l), +(22,53,o), +(127,-14,o), +(272,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(215,-270,l), +(303,-54,l), +(171,-54,l), +(125,-270,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = S; +}, +{ +pos = (67,0); +ref = commaaccentcomb; +} +); +width = 620; +} +); +unicode = 536; +}, +{ +color = 6; +glyphname = Germandbls; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(519,-10,o), +(597,68,o), +(597,165,c), +(597,287,o), +(457,329,o), +(457,391,cs), +(457,422,o), +(481,456,o), +(614,489,c), +(602,643,o), +(509,700,o), +(392,700,c), +(229,700,o), +(128,614,o), +(88,426,cs), +(-3,0,l), +(102,0,l), +(190,416,ls), +(216,539,o), +(281,603,o), +(382,603,c), +(452,603,o), +(499,578,o), +(511,533,c), +(399,494,o), +(360,439,o), +(360,378,c), +(360,274,o), +(496,244,o), +(496,163,cs), +(496,114,o), +(451,80,o), +(393,80,c), +(342,80,o), +(310,91,o), +(272,120,c), +(220,35,l), +(256,8,o), +(313,-10,o), +(387,-10,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(519,-10,o), +(597,68,o), +(597,165,c), +(597,287,o), +(457,329,o), +(457,391,cs), +(457,422,o), +(481,456,o), +(614,489,c), +(602,643,o), +(509,700,o), +(392,700,c), +(229,700,o), +(128,614,o), +(88,426,cs), +(-3,0,l), +(102,0,l), +(190,416,ls), +(216,539,o), +(281,603,o), +(382,603,c), +(452,603,o), +(499,578,o), +(511,533,c), +(399,494,o), +(360,439,o), +(360,378,c), +(360,274,o), +(496,244,o), +(496,163,cs), +(496,114,o), +(451,80,o), +(393,80,c), +(342,80,o), +(310,91,o), +(272,120,c), +(220,35,l), +(256,8,o), +(313,-10,o), +(387,-10,c) +); +} +); +width = 671; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(541,-14,o), +(629,77,o), +(629,184,c), +(629,299,o), +(507,331,o), +(507,387,cs), +(507,408,o), +(520,433,o), +(639,471,c), +(634,622,o), +(537,704,o), +(387,704,c), +(208,704,o), +(110,606,o), +(72,425,cs), +(-18,0,l), +(137,0,l), +(226,417,ls), +(245,506,o), +(298,562,o), +(378,562,c), +(433,562,o), +(468,544,o), +(481,511,c), +(399,484,o), +(355,429,o), +(355,365,c), +(355,262,o), +(478,239,o), +(478,177,cs), +(478,135,o), +(442,106,o), +(396,106,c), +(358,106,o), +(327,120,o), +(292,145,c), +(225,33,l), +(264,4,o), +(323,-14,o), +(394,-14,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(541,-14,o), +(629,77,o), +(629,184,c), +(629,299,o), +(507,331,o), +(507,387,cs), +(507,408,o), +(520,433,o), +(639,471,c), +(634,622,o), +(537,704,o), +(387,704,c), +(208,704,o), +(110,606,o), +(72,425,cs), +(-18,0,l), +(137,0,l), +(226,417,ls), +(245,506,o), +(298,562,o), +(378,562,c), +(433,562,o), +(468,544,o), +(481,511,c), +(399,484,o), +(355,429,o), +(355,365,c), +(355,262,o), +(478,239,o), +(478,177,cs), +(478,135,o), +(442,106,o), +(396,106,c), +(358,106,o), +(327,120,o), +(292,145,c), +(225,33,l), +(264,4,o), +(323,-14,o), +(394,-14,c) +); +} +); +width = 691; +} +); +unicode = 7838; +}, +{ +color = 6; +glyphname = T; +kernLeft = T; +kernRight = T; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (218,0); +}, +{ +name = top; +pos = (364.664,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (218,0); +}, +{ +name = top; +pos = (364.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(270,0,l), +(417,690,l), +(312,690,l), +(165,0,l) +); +}, +{ +closed = 1; +nodes = ( +(616,594,l), +(637,690,l), +(92,690,l), +(71,594,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(270,0,l), +(417,690,l), +(312,690,l), +(165,0,l) +); +}, +{ +closed = 1; +nodes = ( +(616,594,l), +(637,690,l), +(92,690,l), +(71,594,l) +); +} +); +width = 580; +}, +{ +anchors = ( +{ +name = bottom; +pos = (225,0); +}, +{ +name = top; +pos = (371.664,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (225,0); +}, +{ +name = top; +pos = (371.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(302,0,l), +(449,690,l), +(295,690,l), +(148,0,l) +); +}, +{ +closed = 1; +nodes = ( +(618,545,l), +(649,690,l), +(95,690,l), +(64,545,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(302,0,l), +(449,690,l), +(295,690,l), +(148,0,l) +); +}, +{ +closed = 1; +nodes = ( +(618,545,l), +(649,690,l), +(95,690,l), +(64,545,l) +); +} +); +width = 594; +} +); +unicode = 84; +}, +{ +color = 6; +glyphname = Tbar; +kernLeft = T; +kernRight = T; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(270,0,l), +(417,690,l), +(312,690,l), +(165,0,l) +); +}, +{ +closed = 1; +nodes = ( +(475,261,l), +(495,352,l), +(90,352,l), +(70,261,l) +); +}, +{ +closed = 1; +nodes = ( +(616,594,l), +(637,690,l), +(92,690,l), +(71,594,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(270,0,l), +(417,690,l), +(312,690,l), +(165,0,l) +); +}, +{ +closed = 1; +nodes = ( +(475,261,l), +(495,352,l), +(90,352,l), +(70,261,l) +); +}, +{ +closed = 1; +nodes = ( +(616,594,l), +(637,690,l), +(92,690,l), +(71,594,l) +); +} +); +width = 580; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(302,0,l), +(449,690,l), +(295,690,l), +(148,0,l) +); +}, +{ +closed = 1; +nodes = ( +(514,246,l), +(540,367,l), +(66,367,l), +(40,246,l) +); +}, +{ +closed = 1; +nodes = ( +(618,545,l), +(649,690,l), +(95,690,l), +(64,545,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(302,0,l), +(449,690,l), +(295,690,l), +(148,0,l) +); +}, +{ +closed = 1; +nodes = ( +(514,246,l), +(540,367,l), +(66,367,l), +(40,246,l) +); +}, +{ +closed = 1; +nodes = ( +(618,545,l), +(649,690,l), +(95,690,l), +(64,545,l) +); +} +); +width = 594; +} +); +unicode = 358; +}, +{ +color = 10; +glyphname = Tcaron; +kernLeft = T; +kernRight = T; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(270,0,l), +(417,690,l), +(312,690,l), +(165,0,l) +); +}, +{ +closed = 1; +nodes = ( +(616,594,l), +(637,690,l), +(92,690,l), +(71,594,l) +); +}, +{ +closed = 1; +nodes = ( +(410,735,l), +(396,766,l), +(308,845,l), +(215,845,l), +(305,735,l) +); +}, +{ +closed = 1; +nodes = ( +(443,735,l), +(581,845,l), +(474,845,l), +(353,766,l), +(338,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = T; +}, +{ +pos = (40,0); +ref = caroncomb.case; +} +); +width = 580; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(302,0,l), +(449,690,l), +(295,690,l), +(148,0,l) +); +}, +{ +closed = 1; +nodes = ( +(618,545,l), +(649,690,l), +(95,690,l), +(64,545,l) +); +}, +{ +closed = 1; +nodes = ( +(426,735,l), +(410,773,l), +(329,850,l), +(212,850,l), +(297,735,l) +); +}, +{ +closed = 1; +nodes = ( +(465,735,l), +(600,850,l), +(473,850,l), +(358,773,l), +(336,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = T; +}, +{ +pos = (47,0); +ref = caroncomb.case; +} +); +width = 594; +} +); +unicode = 356; +}, +{ +color = 10; +glyphname = Tcedilla; +kernLeft = T; +kernRight = T; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(270,0,l), +(417,690,l), +(312,690,l), +(165,0,l) +); +}, +{ +closed = 1; +nodes = ( +(240,-185,o), +(284,-144,o), +(284,-96,c), +(284,-55,o), +(255,-29,o), +(214,-29,c), +(223,-43,l), +(240,9,l), +(184,11,l), +(153,-73,l), +(165,-71,o), +(172,-70,o), +(183,-70,c), +(205,-70,o), +(216,-79,o), +(216,-94,c), +(216,-108,o), +(202,-119,o), +(177,-119,c), +(157,-119,o), +(142,-114,o), +(126,-105,c), +(99,-169,l), +(122,-180,o), +(146,-185,o), +(172,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(616,594,l), +(637,690,l), +(92,690,l), +(71,594,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = T; +}, +{ +pos = (39,0); +ref = cedillacomb; +} +); +width = 580; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(302,0,l), +(449,690,l), +(295,690,l), +(148,0,l) +); +}, +{ +closed = 1; +nodes = ( +(267,-190,o), +(306,-146,o), +(306,-97,c), +(306,-57,o), +(277,-29,o), +(227,-29,c), +(236,-43,l), +(253,9,l), +(185,11,l), +(152,-80,l), +(164,-76,o), +(174,-74,o), +(186,-74,c), +(206,-74,o), +(216,-80,o), +(216,-91,c), +(216,-103,o), +(205,-109,o), +(182,-109,c), +(162,-109,o), +(140,-105,o), +(121,-94,c), +(92,-174,l), +(117,-185,o), +(147,-190,o), +(175,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(618,545,l), +(649,690,l), +(95,690,l), +(64,545,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = T; +}, +{ +pos = (45,0); +ref = cedillacomb; +} +); +width = 594; +} +); +unicode = 354; +}, +{ +color = 10; +glyphname = Tcommaaccent; +kernLeft = T; +kernRight = T; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(270,0,l), +(417,690,l), +(312,690,l), +(165,0,l) +); +}, +{ +closed = 1; +nodes = ( +(176,-275,l), +(260,-72,l), +(156,-72,l), +(113,-275,l) +); +}, +{ +closed = 1; +nodes = ( +(616,594,l), +(637,690,l), +(92,690,l), +(71,594,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = T; +}, +{ +pos = (41,0); +ref = commaaccentcomb; +} +); +width = 580; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(302,0,l), +(449,690,l), +(295,690,l), +(148,0,l) +); +}, +{ +closed = 1; +nodes = ( +(196,-270,l), +(284,-54,l), +(152,-54,l), +(106,-270,l) +); +}, +{ +closed = 1; +nodes = ( +(618,545,l), +(649,690,l), +(95,690,l), +(64,545,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = T; +}, +{ +pos = (48,0); +ref = commaaccentcomb; +} +); +width = 594; +} +); +unicode = 538; +}, +{ +color = 6; +glyphname = U; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 14:03:46 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (264,0); +}, +{ +name = ogonek; +pos = (356,0); +}, +{ +name = top; +pos = (411,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (264,0); +}, +{ +name = top; +pos = (411,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(438,-10,o), +(551,90,o), +(588,264,cs), +(679,690,l), +(577,690,l), +(488,274,ls), +(462,151,o), +(389,87,o), +(281,87,cs), +(195,87,o), +(152,128,o), +(152,208,cs), +(152,228,o), +(155,250,o), +(160,274,cs), +(249,690,l), +(144,690,l), +(53,264,ls), +(48,241,o), +(46,219,o), +(46,198,cs), +(46,73,o), +(131,-10,o), +(276,-10,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(438,-10,o), +(551,90,o), +(588,264,cs), +(679,690,l), +(577,690,l), +(488,274,ls), +(462,151,o), +(389,87,o), +(281,87,cs), +(195,87,o), +(152,128,o), +(152,208,cs), +(152,228,o), +(155,250,o), +(160,274,cs), +(249,690,l), +(144,690,l), +(53,264,ls), +(48,241,o), +(46,219,o), +(46,198,cs), +(46,73,o), +(131,-10,o), +(276,-10,c) +); +} +); +width = 674; +}, +{ +anchors = ( +{ +name = bottom; +pos = (273,0); +}, +{ +name = ogonek; +pos = (390,0); +}, +{ +name = top; +pos = (420,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (273,0); +}, +{ +name = top; +pos = (420,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(466,-14,o), +(583,87,o), +(621,265,cs), +(712,690,l), +(560,690,l), +(471,273,ls), +(452,184,o), +(388,131,o), +(299,131,c), +(225,131,o), +(189,163,o), +(189,226,cs), +(189,240,o), +(190,256,o), +(194,273,cs), +(283,690,l), +(129,690,l), +(38,265,ls), +(33,243,o), +(31,221,o), +(31,201,cs), +(31,74,o), +(121,-14,o), +(286,-14,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(466,-14,o), +(583,87,o), +(621,265,cs), +(712,690,l), +(560,690,l), +(471,273,ls), +(452,184,o), +(388,131,o), +(299,131,c), +(225,131,o), +(189,163,o), +(189,226,cs), +(189,240,o), +(190,256,o), +(194,273,cs), +(283,690,l), +(129,690,l), +(38,265,ls), +(33,243,o), +(31,221,o), +(31,201,cs), +(31,74,o), +(121,-14,o), +(286,-14,c) +); +} +); +width = 692; +} +); +unicode = 85; +}, +{ +color = 10; +glyphname = Uacute; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 14:21:18 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(438,-10,o), +(551,90,o), +(588,264,cs), +(679,690,l), +(577,690,l), +(488,274,ls), +(462,151,o), +(389,87,o), +(281,87,cs), +(195,87,o), +(152,128,o), +(152,208,cs), +(152,228,o), +(155,250,o), +(160,274,cs), +(249,690,l), +(144,690,l), +(53,264,ls), +(48,241,o), +(46,219,o), +(46,198,cs), +(46,73,o), +(131,-10,o), +(276,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(456,735,l), +(614,845,l), +(479,845,l), +(355,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (88,0); +ref = acutecomb.case; +} +); +width = 674; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(466,-14,o), +(583,87,o), +(621,265,cs), +(712,690,l), +(560,690,l), +(471,273,ls), +(452,184,o), +(388,131,o), +(299,131,c), +(225,131,o), +(189,163,o), +(189,226,cs), +(189,240,o), +(190,256,o), +(194,273,cs), +(283,690,l), +(129,690,l), +(38,265,ls), +(33,243,o), +(31,221,o), +(31,201,cs), +(31,74,o), +(121,-14,o), +(286,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(481,735,l), +(657,850,l), +(484,850,l), +(356,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = U; +}, +{ +pos = (98,0); +ref = acutecomb.case; +} +); +width = 692; +} +); +unicode = 218; +}, +{ +color = 10; +glyphname = Ubreve; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(438,-10,o), +(551,90,o), +(588,264,cs), +(679,690,l), +(577,690,l), +(488,274,ls), +(462,151,o), +(389,87,o), +(281,87,cs), +(195,87,o), +(152,128,o), +(152,208,cs), +(152,228,o), +(155,250,o), +(160,274,cs), +(249,690,l), +(144,690,l), +(53,264,ls), +(48,241,o), +(46,219,o), +(46,198,cs), +(46,73,o), +(131,-10,o), +(276,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(529,735,o), +(576,777,o), +(594,845,c), +(524,845,l), +(516,820,o), +(489,805,o), +(432,805,c), +(380,805,o), +(364,818,o), +(364,841,cs), +(364,845,l), +(294,845,l), +(293,838,o), +(293,833,o), +(293,828,cs), +(293,773,o), +(341,735,o), +(429,735,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = brevecomb.case; +} +); +width = 674; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(466,-14,o), +(583,87,o), +(621,265,cs), +(712,690,l), +(560,690,l), +(471,273,ls), +(452,184,o), +(388,131,o), +(299,131,c), +(225,131,o), +(189,163,o), +(189,226,cs), +(189,240,o), +(190,256,o), +(194,273,cs), +(283,690,l), +(129,690,l), +(38,265,ls), +(33,243,o), +(31,221,o), +(31,201,cs), +(31,74,o), +(121,-14,o), +(286,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(544,730,o), +(597,779,o), +(613,850,c), +(516,850,l), +(508,827,o), +(486,814,o), +(445,814,c), +(404,814,o), +(392,827,o), +(392,850,c), +(295,850,l), +(294,843,o), +(293,837,o), +(293,831,cs), +(293,770,o), +(346,730,o), +(440,730,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = U; +}, +{ +pos = (96,0); +ref = brevecomb.case; +} +); +width = 692; +} +); +unicode = 364; +}, +{ +color = 10; +glyphname = Ucircumflex; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(438,-10,o), +(551,90,o), +(588,264,cs), +(679,690,l), +(577,690,l), +(488,274,ls), +(462,151,o), +(389,87,o), +(281,87,cs), +(195,87,o), +(152,128,o), +(152,208,cs), +(152,228,o), +(155,250,o), +(160,274,cs), +(249,690,l), +(144,690,l), +(53,264,ls), +(48,241,o), +(46,219,o), +(46,198,cs), +(46,73,o), +(131,-10,o), +(276,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(344,735,l), +(465,814,l), +(480,845,l), +(375,845,l), +(237,735,l) +); +}, +{ +closed = 1; +nodes = ( +(603,735,l), +(513,845,l), +(408,845,l), +(422,814,l), +(510,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = circumflexcomb.case; +} +); +width = 674; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(466,-14,o), +(583,87,o), +(621,265,cs), +(712,690,l), +(560,690,l), +(471,273,ls), +(452,184,o), +(388,131,o), +(299,131,c), +(225,131,o), +(189,163,o), +(189,226,cs), +(189,240,o), +(190,256,o), +(194,273,cs), +(283,690,l), +(129,690,l), +(38,265,ls), +(33,243,o), +(31,221,o), +(31,201,cs), +(31,74,o), +(121,-14,o), +(286,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(362,735,l), +(477,812,l), +(499,850,l), +(370,850,l), +(235,735,l) +); +}, +{ +closed = 1; +nodes = ( +(623,735,l), +(538,850,l), +(409,850,l), +(425,812,l), +(506,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = U; +}, +{ +pos = (96,0); +ref = circumflexcomb.case; +} +); +width = 692; +} +); +unicode = 219; +}, +{ +color = 10; +glyphname = Udieresis; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(438,-10,o), +(551,90,o), +(588,264,cs), +(679,690,l), +(577,690,l), +(488,274,ls), +(462,151,o), +(389,87,o), +(281,87,cs), +(195,87,o), +(152,128,o), +(152,208,cs), +(152,228,o), +(155,250,o), +(160,274,cs), +(249,690,l), +(144,690,l), +(53,264,ls), +(48,241,o), +(46,219,o), +(46,198,cs), +(46,73,o), +(131,-10,o), +(276,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(362,742,o), +(388,767,o), +(388,802,c), +(388,834,o), +(367,855,o), +(336,855,c), +(301,855,o), +(276,830,o), +(276,793,c), +(276,763,o), +(297,742,o), +(327,742,c) +); +}, +{ +closed = 1; +nodes = ( +(565,742,o), +(591,767,o), +(591,802,c), +(591,834,o), +(570,855,o), +(539,855,c), +(504,855,o), +(479,830,o), +(479,793,c), +(479,763,o), +(500,742,o), +(530,742,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (88,0); +ref = dieresiscomb.case; +} +); +width = 674; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(466,-14,o), +(583,87,o), +(621,265,cs), +(712,690,l), +(560,690,l), +(471,273,ls), +(452,184,o), +(388,131,o), +(299,131,c), +(225,131,o), +(189,163,o), +(189,226,cs), +(189,240,o), +(190,256,o), +(194,273,cs), +(283,690,l), +(129,690,l), +(38,265,ls), +(33,243,o), +(31,221,o), +(31,201,cs), +(31,74,o), +(121,-14,o), +(286,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(372,742,o), +(404,770,o), +(404,813,c), +(404,850,o), +(380,873,o), +(339,873,c), +(297,873,o), +(265,845,o), +(265,802,c), +(265,765,o), +(288,742,o), +(330,742,c) +); +}, +{ +closed = 1; +nodes = ( +(592,742,o), +(624,770,o), +(624,813,c), +(624,850,o), +(600,873,o), +(559,873,c), +(517,873,o), +(485,845,o), +(485,802,c), +(485,765,o), +(508,742,o), +(550,742,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = U; +}, +{ +pos = (96,0); +ref = dieresiscomb.case; +} +); +width = 692; +} +); +unicode = 220; +}, +{ +color = 10; +glyphname = Udotbelow; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(438,-10,o), +(551,90,o), +(588,264,cs), +(679,690,l), +(577,690,l), +(488,274,ls), +(462,151,o), +(389,87,o), +(281,87,cs), +(195,87,o), +(152,128,o), +(152,208,cs), +(152,228,o), +(155,250,o), +(160,274,cs), +(249,690,l), +(144,690,l), +(53,264,ls), +(48,241,o), +(46,219,o), +(46,198,cs), +(46,73,o), +(131,-10,o), +(276,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(268,-195,o), +(296,-168,o), +(296,-130,c), +(296,-95,o), +(273,-72,o), +(239,-72,c), +(201,-72,o), +(174,-99,o), +(174,-140,c), +(174,-172,o), +(197,-195,o), +(230,-195,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (88,0); +ref = dotbelow; +} +); +width = 674; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(466,-14,o), +(583,87,o), +(621,265,cs), +(712,690,l), +(560,690,l), +(471,273,ls), +(452,184,o), +(388,131,o), +(299,131,c), +(225,131,o), +(189,163,o), +(189,226,cs), +(189,240,o), +(190,256,o), +(194,273,cs), +(283,690,l), +(129,690,l), +(38,265,ls), +(33,243,o), +(31,221,o), +(31,201,cs), +(31,74,o), +(121,-14,o), +(286,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(287,-198,o), +(323,-166,o), +(323,-117,c), +(323,-75,o), +(296,-48,o), +(252,-48,c), +(207,-48,o), +(171,-80,o), +(171,-130,c), +(171,-171,o), +(198,-198,o), +(242,-198,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = U; +}, +{ +pos = (96,0); +ref = dotbelow; +} +); +width = 692; +} +); +unicode = 7908; +}, +{ +color = 10; +glyphname = Ugrave; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(438,-10,o), +(551,90,o), +(588,264,cs), +(679,690,l), +(577,690,l), +(488,274,ls), +(462,151,o), +(389,87,o), +(281,87,cs), +(195,87,o), +(152,128,o), +(152,208,cs), +(152,228,o), +(155,250,o), +(160,274,cs), +(249,690,l), +(144,690,l), +(53,264,ls), +(48,241,o), +(46,219,o), +(46,198,cs), +(46,73,o), +(131,-10,o), +(276,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(479,735,l), +(403,845,l), +(278,845,l), +(391,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = gravecomb.case; +} +); +width = 674; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(466,-14,o), +(583,87,o), +(621,265,cs), +(712,690,l), +(560,690,l), +(471,273,ls), +(452,184,o), +(388,131,o), +(299,131,c), +(225,131,o), +(189,163,o), +(189,226,cs), +(189,240,o), +(190,256,o), +(194,273,cs), +(283,690,l), +(129,690,l), +(38,265,ls), +(33,243,o), +(31,221,o), +(31,201,cs), +(31,74,o), +(121,-14,o), +(286,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(495,735,l), +(417,850,l), +(256,850,l), +(385,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = U; +}, +{ +pos = (95,0); +ref = gravecomb.case; +} +); +width = 692; +} +); +unicode = 217; +}, +{ +color = 10; +glyphname = Uhungarumlaut; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(438,-10,o), +(551,90,o), +(588,264,cs), +(679,690,l), +(577,690,l), +(488,274,ls), +(462,151,o), +(389,87,o), +(281,87,cs), +(195,87,o), +(152,128,o), +(152,208,cs), +(152,228,o), +(155,250,o), +(160,274,cs), +(249,690,l), +(144,690,l), +(53,264,ls), +(48,241,o), +(46,219,o), +(46,198,cs), +(46,73,o), +(131,-10,o), +(276,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(395,735,l), +(516,845,l), +(400,845,l), +(307,735,l) +); +}, +{ +closed = 1; +nodes = ( +(542,735,l), +(701,845,l), +(577,845,l), +(453,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (88,0); +ref = hungarumlautcomb.case; +} +); +width = 674; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(466,-14,o), +(583,87,o), +(621,265,cs), +(712,690,l), +(560,690,l), +(471,273,ls), +(452,184,o), +(388,131,o), +(299,131,c), +(225,131,o), +(189,163,o), +(189,226,cs), +(189,240,o), +(190,256,o), +(194,273,cs), +(283,690,l), +(129,690,l), +(38,265,ls), +(33,243,o), +(31,221,o), +(31,201,cs), +(31,74,o), +(121,-14,o), +(286,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(414,735,l), +(547,850,l), +(402,850,l), +(306,735,l) +); +}, +{ +closed = 1; +nodes = ( +(567,735,l), +(743,850,l), +(588,850,l), +(454,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = U; +}, +{ +pos = (97,0); +ref = hungarumlautcomb.case; +} +); +width = 692; +} +); +unicode = 368; +}, +{ +color = 10; +glyphname = Umacron; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(438,-10,o), +(551,90,o), +(588,264,cs), +(679,690,l), +(577,690,l), +(488,274,ls), +(462,151,o), +(389,87,o), +(281,87,cs), +(195,87,o), +(152,128,o), +(152,208,cs), +(152,228,o), +(155,250,o), +(160,274,cs), +(249,690,l), +(144,690,l), +(53,264,ls), +(48,241,o), +(46,219,o), +(46,198,cs), +(46,73,o), +(131,-10,o), +(276,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(582,753,l), +(600,837,l), +(284,837,l), +(266,753,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (88,0); +ref = macroncomb.case; +} +); +width = 674; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(466,-14,o), +(583,87,o), +(621,265,cs), +(712,690,l), +(560,690,l), +(471,273,ls), +(452,184,o), +(388,131,o), +(299,131,c), +(225,131,o), +(189,163,o), +(189,226,cs), +(189,240,o), +(190,256,o), +(194,273,cs), +(283,690,l), +(129,690,l), +(38,265,ls), +(33,243,o), +(31,221,o), +(31,201,cs), +(31,74,o), +(121,-14,o), +(286,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(594,735,l), +(619,850,l), +(289,850,l), +(264,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = U; +}, +{ +pos = (97,0); +ref = macroncomb.case; +} +); +width = 692; +} +); +unicode = 362; +}, +{ +color = 10; +glyphname = Uogonek; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 14:03:46 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(262,-185,o), +(299,-176,o), +(321,-165,c), +(329,-84,l), +(304,-96,o), +(273,-106,o), +(247,-106,c), +(236,-106,o), +(230,-101,o), +(230,-93,cs), +(230,-72,o), +(278,-21,o), +(358,0,cs), +(476,31,o), +(558,121,o), +(588,264,cs), +(679,690,l), +(577,690,l), +(488,274,ls), +(462,151,o), +(389,87,o), +(281,87,cs), +(195,87,o), +(152,128,o), +(152,208,cs), +(152,228,o), +(155,250,o), +(160,274,cs), +(249,690,l), +(144,690,l), +(53,264,ls), +(48,241,o), +(46,219,o), +(46,198,cs), +(46,73,o), +(131,-10,o), +(276,-10,c), +(261,-2,l), +(171,-35,o), +(142,-74,o), +(142,-118,c), +(142,-155,o), +(168,-185,o), +(230,-185,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (126,0); +ref = ogonekcomb; +} +); +width = 674; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(273,-190,o), +(308,-183,o), +(339,-170,c), +(350,-75,l), +(328,-87,o), +(300,-96,o), +(281,-96,c), +(268,-96,o), +(261,-90,o), +(261,-80,c), +(261,-65,o), +(286,-26,o), +(377,-4,cs), +(506,27,o), +(590,119,o), +(621,265,cs), +(712,690,l), +(560,690,l), +(471,273,ls), +(452,184,o), +(388,131,o), +(299,131,c), +(225,131,o), +(189,163,o), +(189,226,cs), +(189,240,o), +(190,256,o), +(194,273,cs), +(283,690,l), +(129,690,l), +(38,265,ls), +(33,243,o), +(31,221,o), +(31,201,cs), +(31,74,o), +(121,-14,o), +(286,-14,c), +(274,-3,l), +(177,-36,o), +(146,-82,o), +(146,-121,c), +(146,-158,o), +(176,-190,o), +(245,-190,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = U; +}, +{ +pos = (124,0); +ref = ogonekcomb; +} +); +width = 692; +} +); +unicode = 370; +}, +{ +color = 10; +glyphname = Uring; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(438,-10,o), +(551,90,o), +(588,264,cs), +(679,690,l), +(577,690,l), +(488,274,ls), +(462,151,o), +(389,87,o), +(281,87,cs), +(195,87,o), +(152,128,o), +(152,208,cs), +(152,228,o), +(155,250,o), +(160,274,cs), +(249,690,l), +(144,690,l), +(53,264,ls), +(48,241,o), +(46,219,o), +(46,198,cs), +(46,73,o), +(131,-10,o), +(276,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(492,735,o), +(536,779,o), +(536,833,c), +(536,878,o), +(501,908,o), +(450,908,c), +(385,908,o), +(341,864,o), +(341,810,c), +(341,765,o), +(376,735,o), +(427,735,c) +); +}, +{ +closed = 1; +nodes = ( +(414,790,o), +(404,800,o), +(404,815,c), +(404,836,o), +(420,853,o), +(445,853,c), +(463,853,o), +(473,843,o), +(473,828,c), +(473,807,o), +(457,790,o), +(432,790,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (88,0); +ref = ringcomb.case; +} +); +width = 674; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(466,-14,o), +(583,87,o), +(621,265,cs), +(712,690,l), +(560,690,l), +(471,273,ls), +(452,184,o), +(388,131,o), +(299,131,c), +(225,131,o), +(189,163,o), +(189,226,cs), +(189,240,o), +(190,256,o), +(194,273,cs), +(283,690,l), +(129,690,l), +(38,265,ls), +(33,243,o), +(31,221,o), +(31,201,cs), +(31,74,o), +(121,-14,o), +(286,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(509,735,o), +(552,784,o), +(552,837,c), +(552,883,o), +(518,917,o), +(458,917,c), +(388,917,o), +(345,868,o), +(345,815,c), +(345,769,o), +(379,735,o), +(439,735,c) +); +}, +{ +closed = 1; +nodes = ( +(428,800,o), +(418,808,o), +(418,823,c), +(418,839,o), +(431,852,o), +(451,852,c), +(469,852,o), +(479,844,o), +(479,829,c), +(479,813,o), +(466,800,o), +(446,800,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = U; +}, +{ +pos = (97,0); +ref = ringcomb.case; +} +); +width = 692; +} +); +unicode = 366; +}, +{ +color = 10; +glyphname = Utilde; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(438,-10,o), +(551,90,o), +(588,264,cs), +(679,690,l), +(577,690,l), +(488,274,ls), +(462,151,o), +(389,87,o), +(281,87,cs), +(195,87,o), +(152,128,o), +(152,208,cs), +(152,228,o), +(155,250,o), +(160,274,cs), +(249,690,l), +(144,690,l), +(53,264,ls), +(48,241,o), +(46,219,o), +(46,198,cs), +(46,73,o), +(131,-10,o), +(276,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(330,735,l), +(332,757,o), +(345,773,o), +(368,773,c), +(404,773,o), +(431,735,o), +(488,735,c), +(551,735,o), +(590,777,o), +(602,845,c), +(534,845,l), +(532,823,o), +(519,807,o), +(496,807,c), +(461,807,o), +(433,845,o), +(376,845,c), +(313,845,o), +(274,803,o), +(262,735,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (88,0); +ref = tildecomb.case; +} +); +width = 674; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(466,-14,o), +(583,87,o), +(621,265,cs), +(712,690,l), +(560,690,l), +(471,273,ls), +(452,184,o), +(388,131,o), +(299,131,c), +(225,131,o), +(189,163,o), +(189,226,cs), +(189,240,o), +(190,256,o), +(194,273,cs), +(283,690,l), +(129,690,l), +(38,265,ls), +(33,243,o), +(31,221,o), +(31,201,cs), +(31,74,o), +(121,-14,o), +(286,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(346,735,l), +(347,761,o), +(363,772,o), +(380,772,c), +(413,772,o), +(435,735,o), +(500,735,c), +(563,735,o), +(610,781,o), +(622,854,c), +(538,854,l), +(537,828,o), +(521,817,o), +(504,817,c), +(473,817,o), +(449,854,o), +(384,854,c), +(320,854,o), +(273,808,o), +(262,735,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = U; +}, +{ +pos = (96,0); +ref = tildecomb.case; +} +); +width = 692; +} +); +unicode = 360; +}, +{ +color = 6; +glyphname = V; +kernLeft = V; +kernRight = V; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(335,0,l), +(720,690,l), +(605,690,l), +(233,0,l) +); +}, +{ +closed = 1; +nodes = ( +(279,0,l), +(195,690,l), +(90,690,l), +(181,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(335,0,l), +(720,690,l), +(605,690,l), +(233,0,l) +); +}, +{ +closed = 1; +nodes = ( +(279,0,l), +(195,690,l), +(90,690,l), +(181,0,l) +); +} +); +width = 660; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(384,0,l), +(750,690,l), +(574,690,l), +(227,0,l) +); +}, +{ +closed = 1; +nodes = ( +(297,0,l), +(234,690,l), +(75,690,l), +(147,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(384,0,l), +(750,690,l), +(574,690,l), +(227,0,l) +); +}, +{ +closed = 1; +nodes = ( +(297,0,l), +(234,690,l), +(75,690,l), +(147,0,l) +); +} +); +width = 675; +} +); +unicode = 86; +}, +{ +color = 6; +glyphname = W; +kernLeft = W; +kernRight = W; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (405,0); +}, +{ +name = top; +pos = (551,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (405,0); +}, +{ +name = top; +pos = (551,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(679,0,l), +(978,690,l), +(870,690,l), +(579,0,l) +); +}, +{ +closed = 1; +nodes = ( +(195,0,l), +(197,690,l), +(93,690,l), +(98,0,l) +); +}, +{ +closed = 1; +nodes = ( +(259,0,l), +(555,690,l), +(456,690,l), +(159,0,l) +); +}, +{ +closed = 1; +nodes = ( +(615,0,l), +(611,690,l), +(517,690,l), +(520,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(259,0,l), +(517,602,l), +(520,0,l), +(679,0,l), +(978,690,l), +(870,690,l), +(615,84,l), +(611,690,l), +(456,690,l), +(195,84,l), +(197,690,l), +(93,690,l), +(98,0,l) +); +} +); +width = 921; +}, +{ +anchors = ( +{ +name = bottom; +pos = (437,0); +}, +{ +name = top; +pos = (583,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (437,0); +}, +{ +name = top; +pos = (583,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(770,0,l), +(1057,690,l), +(893,690,l), +(620,0,l) +); +}, +{ +closed = 1; +nodes = ( +(218,0,l), +(235,690,l), +(79,690,l), +(72,0,l) +); +}, +{ +closed = 1; +nodes = ( +(323,0,l), +(592,690,l), +(446,690,l), +(175,0,l) +); +}, +{ +closed = 1; +nodes = ( +(663,0,l), +(682,690,l), +(544,690,l), +(519,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(323,0,l), +(539,554,l), +(519,0,l), +(770,0,l), +(1057,690,l), +(893,690,l), +(666,117,l), +(682,690,l), +(446,690,l), +(221,117,l), +(235,690,l), +(79,690,l), +(72,0,l) +); +} +); +width = 986; +} +); +unicode = 87; +}, +{ +color = 10; +glyphname = Wacute; +kernLeft = W; +kernRight = W; +lastChange = "2024-03-21 14:21:18 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(679,0,l), +(978,690,l), +(870,690,l), +(579,0,l) +); +}, +{ +closed = 1; +nodes = ( +(195,0,l), +(197,690,l), +(93,690,l), +(98,0,l) +); +}, +{ +closed = 1; +nodes = ( +(259,0,l), +(555,690,l), +(456,690,l), +(159,0,l) +); +}, +{ +closed = 1; +nodes = ( +(615,0,l), +(611,690,l), +(517,690,l), +(520,0,l) +); +}, +{ +closed = 1; +nodes = ( +(582,735,l), +(740,845,l), +(605,845,l), +(481,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = W; +}, +{ +pos = (228,0); +ref = acutecomb.case; +} +); +width = 921; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(770,0,l), +(1057,690,l), +(893,690,l), +(620,0,l) +); +}, +{ +closed = 1; +nodes = ( +(218,0,l), +(235,690,l), +(79,690,l), +(72,0,l) +); +}, +{ +closed = 1; +nodes = ( +(323,0,l), +(592,690,l), +(446,690,l), +(175,0,l) +); +}, +{ +closed = 1; +nodes = ( +(663,0,l), +(682,690,l), +(544,690,l), +(519,0,l) +); +}, +{ +closed = 1; +nodes = ( +(627,735,l), +(803,850,l), +(630,850,l), +(502,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = W; +}, +{ +pos = (261,0); +ref = acutecomb.case; +} +); +width = 986; +} +); +unicode = 7810; +}, +{ +color = 10; +glyphname = Wcircumflex; +kernLeft = W; +kernRight = W; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(679,0,l), +(978,690,l), +(870,690,l), +(579,0,l) +); +}, +{ +closed = 1; +nodes = ( +(195,0,l), +(197,690,l), +(93,690,l), +(98,0,l) +); +}, +{ +closed = 1; +nodes = ( +(259,0,l), +(555,690,l), +(456,690,l), +(159,0,l) +); +}, +{ +closed = 1; +nodes = ( +(615,0,l), +(611,690,l), +(517,690,l), +(520,0,l) +); +}, +{ +closed = 1; +nodes = ( +(470,735,l), +(591,814,l), +(606,845,l), +(501,845,l), +(363,735,l) +); +}, +{ +closed = 1; +nodes = ( +(729,735,l), +(639,845,l), +(534,845,l), +(548,814,l), +(636,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = W; +}, +{ +pos = (227,0); +ref = circumflexcomb.case; +} +); +width = 921; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(770,0,l), +(1057,690,l), +(893,690,l), +(620,0,l) +); +}, +{ +closed = 1; +nodes = ( +(218,0,l), +(235,690,l), +(79,690,l), +(72,0,l) +); +}, +{ +closed = 1; +nodes = ( +(323,0,l), +(592,690,l), +(446,690,l), +(175,0,l) +); +}, +{ +closed = 1; +nodes = ( +(663,0,l), +(682,690,l), +(544,690,l), +(519,0,l) +); +}, +{ +closed = 1; +nodes = ( +(508,735,l), +(623,812,l), +(645,850,l), +(516,850,l), +(381,735,l) +); +}, +{ +closed = 1; +nodes = ( +(769,735,l), +(684,850,l), +(555,850,l), +(571,812,l), +(652,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = W; +}, +{ +pos = (259,0); +ref = circumflexcomb.case; +} +); +width = 986; +} +); +unicode = 372; +}, +{ +color = 10; +glyphname = Wdieresis; +kernLeft = W; +kernRight = W; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(679,0,l), +(978,690,l), +(870,690,l), +(579,0,l) +); +}, +{ +closed = 1; +nodes = ( +(195,0,l), +(197,690,l), +(93,690,l), +(98,0,l) +); +}, +{ +closed = 1; +nodes = ( +(259,0,l), +(555,690,l), +(456,690,l), +(159,0,l) +); +}, +{ +closed = 1; +nodes = ( +(615,0,l), +(611,690,l), +(517,690,l), +(520,0,l) +); +}, +{ +closed = 1; +nodes = ( +(488,742,o), +(514,767,o), +(514,802,c), +(514,834,o), +(493,855,o), +(462,855,c), +(427,855,o), +(402,830,o), +(402,793,c), +(402,763,o), +(423,742,o), +(453,742,c) +); +}, +{ +closed = 1; +nodes = ( +(691,742,o), +(717,767,o), +(717,802,c), +(717,834,o), +(696,855,o), +(665,855,c), +(630,855,o), +(605,830,o), +(605,793,c), +(605,763,o), +(626,742,o), +(656,742,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = W; +}, +{ +pos = (228,0); +ref = dieresiscomb.case; +} +); +width = 921; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(770,0,l), +(1057,690,l), +(893,690,l), +(620,0,l) +); +}, +{ +closed = 1; +nodes = ( +(218,0,l), +(235,690,l), +(79,690,l), +(72,0,l) +); +}, +{ +closed = 1; +nodes = ( +(323,0,l), +(592,690,l), +(446,690,l), +(175,0,l) +); +}, +{ +closed = 1; +nodes = ( +(663,0,l), +(682,690,l), +(544,690,l), +(519,0,l) +); +}, +{ +closed = 1; +nodes = ( +(518,742,o), +(550,770,o), +(550,813,c), +(550,850,o), +(526,873,o), +(485,873,c), +(443,873,o), +(411,845,o), +(411,802,c), +(411,765,o), +(434,742,o), +(476,742,c) +); +}, +{ +closed = 1; +nodes = ( +(738,742,o), +(770,770,o), +(770,813,c), +(770,850,o), +(746,873,o), +(705,873,c), +(663,873,o), +(631,845,o), +(631,802,c), +(631,765,o), +(654,742,o), +(696,742,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = W; +}, +{ +pos = (259,0); +ref = dieresiscomb.case; +} +); +width = 986; +} +); +unicode = 7812; +}, +{ +color = 10; +glyphname = Wgrave; +kernLeft = W; +kernRight = W; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(679,0,l), +(978,690,l), +(870,690,l), +(579,0,l) +); +}, +{ +closed = 1; +nodes = ( +(195,0,l), +(197,690,l), +(93,690,l), +(98,0,l) +); +}, +{ +closed = 1; +nodes = ( +(259,0,l), +(555,690,l), +(456,690,l), +(159,0,l) +); +}, +{ +closed = 1; +nodes = ( +(615,0,l), +(611,690,l), +(517,690,l), +(520,0,l) +); +}, +{ +closed = 1; +nodes = ( +(605,735,l), +(529,845,l), +(404,845,l), +(517,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = W; +}, +{ +pos = (227,0); +ref = gravecomb.case; +} +); +width = 921; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(770,0,l), +(1057,690,l), +(893,690,l), +(620,0,l) +); +}, +{ +closed = 1; +nodes = ( +(218,0,l), +(235,690,l), +(79,690,l), +(72,0,l) +); +}, +{ +closed = 1; +nodes = ( +(323,0,l), +(592,690,l), +(446,690,l), +(175,0,l) +); +}, +{ +closed = 1; +nodes = ( +(663,0,l), +(682,690,l), +(544,690,l), +(519,0,l) +); +}, +{ +closed = 1; +nodes = ( +(641,735,l), +(563,850,l), +(402,850,l), +(531,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = W; +}, +{ +pos = (258,0); +ref = gravecomb.case; +} +); +width = 986; +} +); +unicode = 7808; +}, +{ +color = 6; +glyphname = X; +kernLeft = X; +kernRight = X; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(71,0,l), +(304,286,l), +(351,334,l), +(661,690,l), +(530,690,l), +(311,423,l), +(263,374,l), +(-60,0,l) +); +}, +{ +closed = 1; +nodes = ( +(524,0,l), +(209,690,l), +(97,690,l), +(412,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(71,0,l), +(304,286,l), +(351,334,l), +(661,690,l), +(530,690,l), +(311,423,l), +(263,374,l), +(-60,0,l) +); +}, +{ +closed = 1; +nodes = ( +(524,0,l), +(209,690,l), +(97,690,l), +(412,0,l) +); +} +); +width = 610; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(115,0,l), +(313,249,l), +(388,321,l), +(699,690,l), +(511,690,l), +(326,458,l), +(251,384,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(562,0,l), +(250,690,l), +(84,690,l), +(396,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(115,0,l), +(313,249,l), +(388,321,l), +(699,690,l), +(511,690,l), +(326,458,l), +(251,384,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(562,0,l), +(250,690,l), +(84,690,l), +(396,0,l) +); +} +); +width = 635; +} +); +unicode = 88; +}, +{ +color = 6; +glyphname = Y; +kernLeft = Y; +kernRight = Y; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (379.664,690); +} +); +background = { +anchors = ( +{ +name = top; +pos = (379.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(672,690,l), +(547,690,l), +(262,320,l), +(315,243,l) +); +}, +{ +closed = 1; +nodes = ( +(280,0,l), +(354,350,l), +(249,350,l), +(175,0,l) +); +}, +{ +closed = 1; +nodes = ( +(319,320,l), +(189,690,l), +(78,690,l), +(245,243,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(672,690,l), +(547,690,l), +(262,320,l), +(315,243,l) +); +}, +{ +closed = 1; +nodes = ( +(280,0,l), +(354,350,l), +(249,350,l), +(175,0,l) +); +}, +{ +closed = 1; +nodes = ( +(319,320,l), +(189,690,l), +(78,690,l), +(245,243,l) +); +} +); +width = 600; +}, +{ +anchors = ( +{ +name = top; +pos = (399.664,690); +} +); +background = { +anchors = ( +{ +name = top; +pos = (399.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(717,690,l), +(536,690,l), +(277,343,l), +(353,221,l) +); +}, +{ +closed = 1; +nodes = ( +(324,0,l), +(405,381,l), +(251,381,l), +(170,0,l) +); +}, +{ +closed = 1; +nodes = ( +(349,343,l), +(234,690,l), +(73,690,l), +(236,220,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(717,690,l), +(536,690,l), +(277,343,l), +(353,221,l) +); +}, +{ +closed = 1; +nodes = ( +(324,0,l), +(405,381,l), +(251,381,l), +(170,0,l) +); +}, +{ +closed = 1; +nodes = ( +(349,343,l), +(234,690,l), +(73,690,l), +(236,220,l) +); +} +); +width = 640; +} +); +unicode = 89; +}, +{ +color = 10; +glyphname = Yacute; +kernLeft = Y; +kernRight = Y; +lastChange = "2024-03-21 14:21:18 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(672,690,l), +(547,690,l), +(262,320,l), +(315,243,l) +); +}, +{ +closed = 1; +nodes = ( +(280,0,l), +(354,350,l), +(249,350,l), +(175,0,l) +); +}, +{ +closed = 1; +nodes = ( +(319,320,l), +(189,690,l), +(78,690,l), +(245,243,l) +); +}, +{ +closed = 1; +nodes = ( +(425,735,l), +(583,845,l), +(448,845,l), +(324,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = Y; +}, +{ +pos = (57,0); +ref = acutecomb.case; +} +); +width = 600; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(717,690,l), +(536,690,l), +(277,343,l), +(353,221,l) +); +}, +{ +closed = 1; +nodes = ( +(324,0,l), +(405,381,l), +(251,381,l), +(170,0,l) +); +}, +{ +closed = 1; +nodes = ( +(349,343,l), +(234,690,l), +(73,690,l), +(236,220,l) +); +}, +{ +closed = 1; +nodes = ( +(461,735,l), +(637,850,l), +(464,850,l), +(336,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (78,0); +ref = acutecomb.case; +} +); +width = 640; +} +); +unicode = 221; +}, +{ +color = 10; +glyphname = Ycircumflex; +kernLeft = Y; +kernRight = Y; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(672,690,l), +(547,690,l), +(262,320,l), +(315,243,l) +); +}, +{ +closed = 1; +nodes = ( +(280,0,l), +(354,350,l), +(249,350,l), +(175,0,l) +); +}, +{ +closed = 1; +nodes = ( +(319,320,l), +(189,690,l), +(78,690,l), +(245,243,l) +); +}, +{ +closed = 1; +nodes = ( +(313,735,l), +(434,814,l), +(449,845,l), +(344,845,l), +(206,735,l) +); +}, +{ +closed = 1; +nodes = ( +(572,735,l), +(482,845,l), +(377,845,l), +(391,814,l), +(479,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = Y; +}, +{ +pos = (56,0); +ref = circumflexcomb.case; +} +); +width = 600; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(717,690,l), +(536,690,l), +(277,343,l), +(353,221,l) +); +}, +{ +closed = 1; +nodes = ( +(324,0,l), +(405,381,l), +(251,381,l), +(170,0,l) +); +}, +{ +closed = 1; +nodes = ( +(349,343,l), +(234,690,l), +(73,690,l), +(236,220,l) +); +}, +{ +closed = 1; +nodes = ( +(342,735,l), +(457,812,l), +(479,850,l), +(350,850,l), +(215,735,l) +); +}, +{ +closed = 1; +nodes = ( +(603,735,l), +(518,850,l), +(389,850,l), +(405,812,l), +(486,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (76,0); +ref = circumflexcomb.case; +} +); +width = 640; +} +); +unicode = 374; +}, +{ +color = 10; +glyphname = Ydieresis; +kernLeft = Y; +kernRight = Y; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(672,690,l), +(547,690,l), +(262,320,l), +(315,243,l) +); +}, +{ +closed = 1; +nodes = ( +(280,0,l), +(354,350,l), +(249,350,l), +(175,0,l) +); +}, +{ +closed = 1; +nodes = ( +(319,320,l), +(189,690,l), +(78,690,l), +(245,243,l) +); +}, +{ +closed = 1; +nodes = ( +(331,742,o), +(357,767,o), +(357,802,c), +(357,834,o), +(336,855,o), +(305,855,c), +(270,855,o), +(245,830,o), +(245,793,c), +(245,763,o), +(266,742,o), +(296,742,c) +); +}, +{ +closed = 1; +nodes = ( +(534,742,o), +(560,767,o), +(560,802,c), +(560,834,o), +(539,855,o), +(508,855,c), +(473,855,o), +(448,830,o), +(448,793,c), +(448,763,o), +(469,742,o), +(499,742,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = Y; +}, +{ +pos = (57,0); +ref = dieresiscomb.case; +} +); +width = 600; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(717,690,l), +(536,690,l), +(277,343,l), +(353,221,l) +); +}, +{ +closed = 1; +nodes = ( +(324,0,l), +(405,381,l), +(251,381,l), +(170,0,l) +); +}, +{ +closed = 1; +nodes = ( +(349,343,l), +(234,690,l), +(73,690,l), +(236,220,l) +); +}, +{ +closed = 1; +nodes = ( +(352,742,o), +(384,770,o), +(384,813,c), +(384,850,o), +(360,873,o), +(319,873,c), +(277,873,o), +(245,845,o), +(245,802,c), +(245,765,o), +(268,742,o), +(310,742,c) +); +}, +{ +closed = 1; +nodes = ( +(572,742,o), +(604,770,o), +(604,813,c), +(604,850,o), +(580,873,o), +(539,873,c), +(497,873,o), +(465,845,o), +(465,802,c), +(465,765,o), +(488,742,o), +(530,742,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (76,0); +ref = dieresiscomb.case; +} +); +width = 640; +} +); +unicode = 376; +}, +{ +color = 10; +glyphname = Ygrave; +kernLeft = Y; +kernRight = Y; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(672,690,l), +(547,690,l), +(262,320,l), +(315,243,l) +); +}, +{ +closed = 1; +nodes = ( +(280,0,l), +(354,350,l), +(249,350,l), +(175,0,l) +); +}, +{ +closed = 1; +nodes = ( +(319,320,l), +(189,690,l), +(78,690,l), +(245,243,l) +); +}, +{ +closed = 1; +nodes = ( +(448,735,l), +(372,845,l), +(247,845,l), +(360,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = Y; +}, +{ +pos = (56,0); +ref = gravecomb.case; +} +); +width = 600; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(717,690,l), +(536,690,l), +(277,343,l), +(353,221,l) +); +}, +{ +closed = 1; +nodes = ( +(324,0,l), +(405,381,l), +(251,381,l), +(170,0,l) +); +}, +{ +closed = 1; +nodes = ( +(349,343,l), +(234,690,l), +(73,690,l), +(236,220,l) +); +}, +{ +closed = 1; +nodes = ( +(475,735,l), +(397,850,l), +(236,850,l), +(365,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (75,0); +ref = gravecomb.case; +} +); +width = 640; +} +); +unicode = 7922; +}, +{ +color = 10; +glyphname = Ymacron; +kernLeft = Y; +kernRight = Y; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(672,690,l), +(547,690,l), +(262,320,l), +(315,243,l) +); +}, +{ +closed = 1; +nodes = ( +(280,0,l), +(354,350,l), +(249,350,l), +(175,0,l) +); +}, +{ +closed = 1; +nodes = ( +(319,320,l), +(189,690,l), +(78,690,l), +(245,243,l) +); +}, +{ +closed = 1; +nodes = ( +(551,753,l), +(569,837,l), +(253,837,l), +(235,753,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = Y; +}, +{ +pos = (57,0); +ref = macroncomb.case; +} +); +width = 600; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(717,690,l), +(536,690,l), +(277,343,l), +(353,221,l) +); +}, +{ +closed = 1; +nodes = ( +(324,0,l), +(405,381,l), +(251,381,l), +(170,0,l) +); +}, +{ +closed = 1; +nodes = ( +(349,343,l), +(234,690,l), +(73,690,l), +(236,220,l) +); +}, +{ +closed = 1; +nodes = ( +(574,735,l), +(599,850,l), +(269,850,l), +(244,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (77,0); +ref = macroncomb.case; +} +); +width = 640; +} +); +unicode = 562; +}, +{ +color = 10; +glyphname = Ytilde; +kernLeft = Y; +kernRight = Y; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(672,690,l), +(547,690,l), +(262,320,l), +(315,243,l) +); +}, +{ +closed = 1; +nodes = ( +(280,0,l), +(354,350,l), +(249,350,l), +(175,0,l) +); +}, +{ +closed = 1; +nodes = ( +(319,320,l), +(189,690,l), +(78,690,l), +(245,243,l) +); +}, +{ +closed = 1; +nodes = ( +(299,735,l), +(301,757,o), +(314,773,o), +(337,773,c), +(373,773,o), +(400,735,o), +(457,735,c), +(520,735,o), +(559,777,o), +(571,845,c), +(503,845,l), +(501,823,o), +(488,807,o), +(465,807,c), +(430,807,o), +(402,845,o), +(345,845,c), +(282,845,o), +(243,803,o), +(231,735,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = Y; +}, +{ +pos = (57,0); +ref = tildecomb.case; +} +); +width = 600; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(717,690,l), +(536,690,l), +(277,343,l), +(353,221,l) +); +}, +{ +closed = 1; +nodes = ( +(324,0,l), +(405,381,l), +(251,381,l), +(170,0,l) +); +}, +{ +closed = 1; +nodes = ( +(349,343,l), +(234,690,l), +(73,690,l), +(236,220,l) +); +}, +{ +closed = 1; +nodes = ( +(326,735,l), +(327,761,o), +(343,772,o), +(360,772,c), +(393,772,o), +(415,735,o), +(480,735,c), +(543,735,o), +(590,781,o), +(602,854,c), +(518,854,l), +(517,828,o), +(501,817,o), +(484,817,c), +(453,817,o), +(429,854,o), +(364,854,c), +(300,854,o), +(253,808,o), +(242,735,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (76,0); +ref = tildecomb.case; +} +); +width = 640; +} +); +unicode = 7928; +}, +{ +color = 6; +glyphname = Z; +kernLeft = Z; +kernRight = Z; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (253,0); +}, +{ +name = center; +pos = (326,345); +}, +{ +name = top; +pos = (399,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (253,0); +}, +{ +name = center; +pos = (326,345); +}, +{ +name = top; +pos = (399,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(108,52,l), +(635,638,l), +(499,638,l), +(-28,52,l) +); +}, +{ +closed = 1; +nodes = ( +(511,0,l), +(531,96,l), +(21,96,l), +(-28,52,l), +(-39,0,l) +); +}, +{ +closed = 1; +nodes = ( +(585,594,l), +(635,638,l), +(646,690,l), +(123,690,l), +(102,594,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(108,52,l), +(635,638,l), +(499,638,l), +(-28,52,l) +); +}, +{ +closed = 1; +nodes = ( +(511,0,l), +(531,96,l), +(21,96,l), +(-28,52,l), +(-39,0,l) +); +}, +{ +closed = 1; +nodes = ( +(585,594,l), +(635,638,l), +(646,690,l), +(123,690,l), +(102,594,l) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (252,0); +}, +{ +name = center; +pos = (325,345); +}, +{ +name = top; +pos = (398,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (252,0); +}, +{ +name = center; +pos = (325,345); +}, +{ +name = top; +pos = (398,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(174,103,l), +(632,587,l), +(431,587,l), +(-26,103,l) +); +}, +{ +closed = 1; +nodes = ( +(519,0,l), +(549,140,l), +(40,140,l), +(-26,103,l), +(-48,0,l) +); +}, +{ +closed = 1; +nodes = ( +(566,550,l), +(632,587,l), +(654,690,l), +(114,690,l), +(84,550,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(174,103,l), +(632,587,l), +(431,587,l), +(-26,103,l) +); +}, +{ +closed = 1; +nodes = ( +(519,0,l), +(549,140,l), +(40,140,l), +(-26,103,l), +(-48,0,l) +); +}, +{ +closed = 1; +nodes = ( +(566,550,l), +(632,587,l), +(654,690,l), +(114,690,l), +(84,550,l) +); +} +); +width = 616; +} +); +unicode = 90; +}, +{ +color = 10; +glyphname = Zacute; +kernLeft = Z; +kernRight = Z; +lastChange = "2024-03-21 14:21:18 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(108,52,l), +(635,638,l), +(499,638,l), +(-28,52,l) +); +}, +{ +closed = 1; +nodes = ( +(511,0,l), +(531,96,l), +(21,96,l), +(-28,52,l), +(-39,0,l) +); +}, +{ +closed = 1; +nodes = ( +(585,594,l), +(635,638,l), +(646,690,l), +(123,690,l), +(102,594,l) +); +}, +{ +closed = 1; +nodes = ( +(433,735,l), +(591,845,l), +(456,845,l), +(332,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = Z; +}, +{ +pos = (76,0); +ref = acutecomb.case; +} +); +width = 618; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(174,103,l), +(632,587,l), +(431,587,l), +(-26,103,l) +); +}, +{ +closed = 1; +nodes = ( +(519,0,l), +(549,140,l), +(40,140,l), +(-26,103,l), +(-48,0,l) +); +}, +{ +closed = 1; +nodes = ( +(566,550,l), +(632,587,l), +(654,690,l), +(114,690,l), +(84,550,l) +); +}, +{ +closed = 1; +nodes = ( +(443,735,l), +(619,850,l), +(446,850,l), +(318,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (76,0); +ref = acutecomb.case; +} +); +width = 616; +} +); +unicode = 377; +}, +{ +color = 10; +glyphname = Zcaron; +kernLeft = Z; +kernRight = Z; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(108,52,l), +(635,638,l), +(499,638,l), +(-28,52,l) +); +}, +{ +closed = 1; +nodes = ( +(511,0,l), +(531,96,l), +(21,96,l), +(-28,52,l), +(-39,0,l) +); +}, +{ +closed = 1; +nodes = ( +(585,594,l), +(635,638,l), +(646,690,l), +(123,690,l), +(102,594,l) +); +}, +{ +closed = 1; +nodes = ( +(433,735,l), +(419,766,l), +(331,845,l), +(238,845,l), +(328,735,l) +); +}, +{ +closed = 1; +nodes = ( +(466,735,l), +(604,845,l), +(497,845,l), +(376,766,l), +(361,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = Z; +}, +{ +pos = (74,0); +ref = caroncomb.case; +} +); +width = 618; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(174,103,l), +(632,587,l), +(431,587,l), +(-26,103,l) +); +}, +{ +closed = 1; +nodes = ( +(519,0,l), +(549,140,l), +(40,140,l), +(-26,103,l), +(-48,0,l) +); +}, +{ +closed = 1; +nodes = ( +(566,550,l), +(632,587,l), +(654,690,l), +(114,690,l), +(84,550,l) +); +}, +{ +closed = 1; +nodes = ( +(436,735,l), +(420,773,l), +(339,850,l), +(222,850,l), +(307,735,l) +); +}, +{ +closed = 1; +nodes = ( +(475,735,l), +(610,850,l), +(483,850,l), +(368,773,l), +(346,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (73,0); +ref = caroncomb.case; +} +); +width = 616; +} +); +unicode = 381; +}, +{ +color = 10; +glyphname = Zdotaccent; +kernLeft = Z; +kernRight = Z; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(108,52,l), +(635,638,l), +(499,638,l), +(-28,52,l) +); +}, +{ +closed = 1; +nodes = ( +(511,0,l), +(531,96,l), +(21,96,l), +(-28,52,l), +(-39,0,l) +); +}, +{ +closed = 1; +nodes = ( +(585,594,l), +(635,638,l), +(646,690,l), +(123,690,l), +(102,594,l) +); +}, +{ +closed = 1; +nodes = ( +(443,735,o), +(471,760,o), +(471,795,c), +(471,827,o), +(448,848,o), +(414,848,c), +(376,848,o), +(349,823,o), +(349,785,c), +(349,756,o), +(372,735,o), +(405,735,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = Z; +}, +{ +pos = (75,0); +ref = dotaccentcomb.case; +} +); +width = 618; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(174,103,l), +(632,587,l), +(431,587,l), +(-26,103,l) +); +}, +{ +closed = 1; +nodes = ( +(519,0,l), +(549,140,l), +(40,140,l), +(-26,103,l), +(-48,0,l) +); +}, +{ +closed = 1; +nodes = ( +(566,550,l), +(632,587,l), +(654,690,l), +(114,690,l), +(84,550,l) +); +}, +{ +closed = 1; +nodes = ( +(448,741,o), +(484,771,o), +(484,817,c), +(484,856,o), +(457,881,o), +(413,881,c), +(368,881,o), +(332,851,o), +(332,804,c), +(332,766,o), +(359,741,o), +(403,741,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (74,0); +ref = dotaccentcomb.case; +} +); +width = 616; +} +); +unicode = 379; +}, +{ +color = 6; +glyphname = a; +kernLeft = o; +kernRight = i; +lastChange = "2024-03-22 13:33:38 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (218,0); +}, +{ +name = ogonek; +pos = (437,0); +}, +{ +name = top; +pos = (329,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (218,0); +}, +{ +name = top; +pos = (329,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(290,-10,o), +(381,74,o), +(412,221,c), +(439,380,l), +(439,483,o), +(376,540,o), +(287,540,c), +(138,540,o), +(15,392,o), +(15,188,c), +(15,64,o), +(87,-10,o), +(184,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(159,77,o), +(120,113,o), +(120,195,c), +(120,343,o), +(196,453,o), +(303,453,c), +(368,453,o), +(407,417,o), +(407,335,c), +(407,196,o), +(331,77,o), +(224,77,c) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(550,530,l), +(450,530,l), +(424,407,l), +(409,265,l), +(363,122,l), +(337,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(290,-10,o), +(381,74,o), +(412,221,c), +(439,380,l), +(439,483,o), +(376,540,o), +(287,540,c), +(138,540,o), +(15,392,o), +(15,188,c), +(15,64,o), +(87,-10,o), +(184,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(159,77,o), +(120,113,o), +(120,195,c), +(120,343,o), +(196,453,o), +(303,453,c), +(368,453,o), +(407,417,o), +(407,335,c), +(407,196,o), +(331,77,o), +(224,77,c) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(550,530,l), +(450,530,l), +(424,407,l), +(409,265,l), +(363,122,l), +(337,0,l) +); +} +); +width = 574; +}, +{ +anchors = ( +{ +name = bottom; +pos = (221,0); +}, +{ +name = ogonek; +pos = (459,0); +}, +{ +name = top; +pos = (333,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (221,0); +}, +{ +name = top; +pos = (333,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(572,530,l), +(423,530,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(572,530,l), +(423,530,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +} +); +width = 584; +} +); +unicode = 97; +}, +{ +color = 10; +glyphname = aacute; +kernLeft = o; +kernRight = i; +lastChange = "2024-03-21 14:49:53 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(290,-10,o), +(381,74,o), +(412,221,c), +(439,380,l), +(439,483,o), +(376,540,o), +(287,540,c), +(138,540,o), +(15,392,o), +(15,188,c), +(15,64,o), +(87,-10,o), +(184,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(159,77,o), +(120,113,o), +(120,195,c), +(120,343,o), +(196,453,o), +(303,453,c), +(368,453,o), +(407,417,o), +(407,335,c), +(407,196,o), +(331,77,o), +(224,77,c) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(550,530,l), +(450,530,l), +(424,407,l), +(409,265,l), +(363,122,l), +(337,0,l) +); +}, +{ +closed = 1; +nodes = ( +(374,585,l), +(511,725,l), +(385,725,l), +(285,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (28,0); +ref = acutecomb; +} +); +width = 574; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(572,530,l), +(423,530,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +}, +{ +closed = 1; +nodes = ( +(389,585,l), +(545,730,l), +(384,730,l), +(274,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = a; +}, +{ +pos = (55,0); +ref = acutecomb; +} +); +width = 584; +} +); +unicode = 225; +}, +{ +color = 10; +glyphname = abreve; +kernLeft = o; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(290,-10,o), +(381,74,o), +(412,221,c), +(439,380,l), +(439,483,o), +(376,540,o), +(287,540,c), +(138,540,o), +(15,392,o), +(15,188,c), +(15,64,o), +(87,-10,o), +(184,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(159,77,o), +(120,113,o), +(120,195,c), +(120,343,o), +(196,453,o), +(303,453,c), +(368,453,o), +(407,417,o), +(407,335,c), +(407,196,o), +(331,77,o), +(224,77,c) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(550,530,l), +(450,530,l), +(424,407,l), +(409,265,l), +(363,122,l), +(337,0,l) +); +}, +{ +closed = 1; +nodes = ( +(445,585,o), +(492,639,o), +(510,725,c), +(440,725,l), +(432,684,o), +(401,660,o), +(354,660,c), +(316,660,o), +(298,677,o), +(298,707,cs), +(298,712,o), +(299,719,o), +(300,725,c), +(230,725,l), +(228,713,o), +(227,702,o), +(227,692,cs), +(227,629,o), +(273,585,o), +(350,585,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (40,0); +ref = brevecomb; +} +); +width = 574; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(572,530,l), +(423,530,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +}, +{ +closed = 1; +nodes = ( +(459,585,o), +(505,639,o), +(524,730,c), +(433,730,l), +(426,693,o), +(398,671,o), +(361,671,c), +(330,671,o), +(315,686,o), +(315,713,cs), +(315,718,o), +(316,724,o), +(317,730,c), +(226,730,l), +(224,718,o), +(223,708,o), +(223,697,cs), +(223,626,o), +(273,585,o), +(354,585,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = a; +}, +{ +pos = (45,0); +ref = brevecomb; +} +); +width = 584; +} +); +unicode = 259; +}, +{ +color = 10; +glyphname = acircumflex; +kernLeft = o; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(290,-10,o), +(381,74,o), +(412,221,c), +(439,380,l), +(439,483,o), +(376,540,o), +(287,540,c), +(138,540,o), +(15,392,o), +(15,188,c), +(15,64,o), +(87,-10,o), +(184,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(159,77,o), +(120,113,o), +(120,195,c), +(120,343,o), +(196,453,o), +(303,453,c), +(368,453,o), +(407,417,o), +(407,335,c), +(407,196,o), +(331,77,o), +(224,77,c) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(550,530,l), +(450,530,l), +(424,407,l), +(409,265,l), +(363,122,l), +(337,0,l) +); +}, +{ +closed = 1; +nodes = ( +(278,585,l), +(382,685,l), +(389,725,l), +(314,725,l), +(184,585,l) +); +}, +{ +closed = 1; +nodes = ( +(496,585,l), +(426,725,l), +(351,725,l), +(352,685,l), +(414,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (41,0); +ref = circumflexcomb; +} +); +width = 574; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(572,530,l), +(423,530,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +}, +{ +closed = 1; +nodes = ( +(288,585,l), +(399,686,l), +(411,730,l), +(305,730,l), +(172,585,l) +); +}, +{ +closed = 1; +nodes = ( +(516,585,l), +(445,730,l), +(339,730,l), +(344,686,l), +(412,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = a; +}, +{ +pos = (45,0); +ref = circumflexcomb; +} +); +width = 584; +} +); +unicode = 226; +}, +{ +color = 10; +glyphname = adieresis; +kernLeft = o; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(290,-10,o), +(381,74,o), +(412,221,c), +(439,380,l), +(439,483,o), +(376,540,o), +(287,540,c), +(138,540,o), +(15,392,o), +(15,188,c), +(15,64,o), +(87,-10,o), +(184,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(159,77,o), +(120,113,o), +(120,195,c), +(120,343,o), +(196,453,o), +(303,453,c), +(368,453,o), +(407,417,o), +(407,335,c), +(407,196,o), +(331,77,o), +(224,77,c) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(550,530,l), +(450,530,l), +(424,407,l), +(409,265,l), +(363,122,l), +(337,0,l) +); +}, +{ +closed = 1; +nodes = ( +(295,602,o), +(321,627,o), +(321,662,c), +(321,694,o), +(300,715,o), +(269,715,c), +(234,715,o), +(209,690,o), +(209,653,c), +(209,623,o), +(230,602,o), +(260,602,c) +); +}, +{ +closed = 1; +nodes = ( +(477,602,o), +(503,627,o), +(503,662,c), +(503,694,o), +(482,715,o), +(451,715,c), +(416,715,o), +(391,690,o), +(391,653,c), +(391,623,o), +(412,602,o), +(442,602,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (39,0); +ref = dieresiscomb; +} +); +width = 574; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(572,530,l), +(423,530,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +}, +{ +closed = 1; +nodes = ( +(299,588,o), +(333,618,o), +(333,664,c), +(333,703,o), +(308,728,o), +(267,728,c), +(225,728,o), +(191,698,o), +(191,652,c), +(191,613,o), +(216,588,o), +(257,588,c) +); +}, +{ +closed = 1; +nodes = ( +(495,588,o), +(529,618,o), +(529,664,c), +(529,703,o), +(504,728,o), +(463,728,c), +(421,728,o), +(387,698,o), +(387,652,c), +(387,613,o), +(412,588,o), +(453,588,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = a; +}, +{ +pos = (43,0); +ref = dieresiscomb; +} +); +width = 584; +} +); +unicode = 228; +}, +{ +color = 10; +glyphname = adotbelow; +kernLeft = o; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(290,-10,o), +(381,74,o), +(412,221,c), +(439,380,l), +(439,483,o), +(376,540,o), +(287,540,c), +(138,540,o), +(15,392,o), +(15,188,c), +(15,64,o), +(87,-10,o), +(184,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(222,-195,o), +(250,-168,o), +(250,-130,c), +(250,-95,o), +(227,-72,o), +(193,-72,c), +(155,-72,o), +(128,-99,o), +(128,-140,c), +(128,-172,o), +(151,-195,o), +(184,-195,c) +); +}, +{ +closed = 1; +nodes = ( +(159,77,o), +(120,113,o), +(120,195,c), +(120,343,o), +(196,453,o), +(303,453,c), +(368,453,o), +(407,417,o), +(407,335,c), +(407,196,o), +(331,77,o), +(224,77,c) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(550,530,l), +(450,530,l), +(424,407,l), +(409,265,l), +(363,122,l), +(337,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (42,0); +ref = dotbelow; +} +); +width = 574; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(235,-198,o), +(271,-166,o), +(271,-117,c), +(271,-75,o), +(244,-48,o), +(200,-48,c), +(155,-48,o), +(119,-80,o), +(119,-130,c), +(119,-171,o), +(146,-198,o), +(190,-198,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(572,530,l), +(423,530,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = a; +}, +{ +pos = (44,0); +ref = dotbelow; +} +); +width = 584; +} +); +unicode = 7841; +}, +{ +color = 10; +glyphname = agrave; +kernLeft = o; +kernRight = i; +lastChange = "2024-03-21 14:48:12 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(290,-10,o), +(381,74,o), +(412,221,c), +(439,380,l), +(439,483,o), +(376,540,o), +(287,540,c), +(138,540,o), +(15,392,o), +(15,188,c), +(15,64,o), +(87,-10,o), +(184,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(159,77,o), +(120,113,o), +(120,195,c), +(120,343,o), +(196,453,o), +(303,453,c), +(368,453,o), +(407,417,o), +(407,335,c), +(407,196,o), +(331,77,o), +(224,77,c) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(550,530,l), +(450,530,l), +(424,407,l), +(409,265,l), +(363,122,l), +(337,0,l) +); +}, +{ +closed = 1; +nodes = ( +(390,585,l), +(350,725,l), +(229,725,l), +(309,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (39,0); +ref = gravecomb; +} +); +width = 574; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(572,530,l), +(423,530,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +}, +{ +closed = 1; +nodes = ( +(407,585,l), +(358,730,l), +(208,730,l), +(305,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = a; +}, +{ +pos = (97,0); +ref = gravecomb; +} +); +width = 584; +} +); +unicode = 224; +}, +{ +color = 10; +glyphname = amacron; +kernLeft = o; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(290,-10,o), +(381,74,o), +(412,221,c), +(439,380,l), +(439,483,o), +(376,540,o), +(287,540,c), +(138,540,o), +(15,392,o), +(15,188,c), +(15,64,o), +(87,-10,o), +(184,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(159,77,o), +(120,113,o), +(120,195,c), +(120,343,o), +(196,453,o), +(303,453,c), +(368,453,o), +(407,417,o), +(407,335,c), +(407,196,o), +(331,77,o), +(224,77,c) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(550,530,l), +(450,530,l), +(424,407,l), +(409,265,l), +(363,122,l), +(337,0,l) +); +}, +{ +closed = 1; +nodes = ( +(486,621,l), +(504,705,l), +(228,705,l), +(210,621,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (39,0); +ref = macroncomb; +} +); +width = 574; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(572,530,l), +(423,530,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +}, +{ +closed = 1; +nodes = ( +(495,603,l), +(520,718,l), +(226,718,l), +(201,603,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = a; +}, +{ +pos = (44,0); +ref = macroncomb; +} +); +width = 584; +} +); +unicode = 257; +}, +{ +color = 10; +glyphname = aogonek; +kernLeft = o; +kernRight = i; +lastChange = "2024-03-21 14:04:03 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(290,-10,o), +(381,74,o), +(412,221,c), +(439,380,l), +(439,483,o), +(376,540,o), +(287,540,c), +(138,540,o), +(15,392,o), +(15,188,c), +(15,64,o), +(87,-10,o), +(184,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(343,-185,o), +(380,-176,o), +(402,-165,c), +(410,-84,l), +(385,-96,o), +(354,-106,o), +(328,-106,c), +(317,-106,o), +(311,-101,o), +(311,-93,cs), +(311,-72,o), +(348,-38,o), +(437,0,c), +(337,0,l), +(252,-35,o), +(223,-74,o), +(223,-118,c), +(223,-155,o), +(249,-185,o), +(311,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(159,77,o), +(120,113,o), +(120,195,c), +(120,343,o), +(196,453,o), +(303,453,c), +(368,453,o), +(407,417,o), +(407,335,c), +(407,196,o), +(331,77,o), +(224,77,c) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(550,530,l), +(450,530,l), +(424,407,l), +(409,265,l), +(363,122,l), +(337,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (207,0); +ref = ogonekcomb; +} +); +width = 574; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(357,-190,o), +(392,-183,o), +(423,-170,c), +(434,-75,l), +(412,-87,o), +(384,-96,o), +(365,-96,c), +(352,-96,o), +(345,-90,o), +(345,-82,cs), +(345,-65,o), +(370,-36,o), +(459,0,c), +(354,0,l), +(261,-36,o), +(230,-82,o), +(230,-121,c), +(230,-158,o), +(260,-190,o), +(329,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(572,530,l), +(423,530,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = a; +}, +{ +pos = (193,0); +ref = ogonekcomb; +} +); +width = 584; +} +); +unicode = 261; +}, +{ +color = 10; +glyphname = aring; +kernLeft = o; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(290,-10,o), +(381,74,o), +(412,221,c), +(439,380,l), +(439,483,o), +(376,540,o), +(287,540,c), +(138,540,o), +(15,392,o), +(15,188,c), +(15,64,o), +(87,-10,o), +(184,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(159,77,o), +(120,113,o), +(120,195,c), +(120,343,o), +(196,453,o), +(303,453,c), +(368,453,o), +(407,417,o), +(407,335,c), +(407,196,o), +(331,77,o), +(224,77,c) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(550,530,l), +(450,530,l), +(424,407,l), +(409,265,l), +(363,122,l), +(337,0,l) +); +}, +{ +closed = 1; +nodes = ( +(410,575,o), +(454,622,o), +(454,680,c), +(454,728,o), +(420,758,o), +(370,758,c), +(305,758,o), +(261,711,o), +(261,653,c), +(261,605,o), +(295,575,o), +(345,575,c) +); +}, +{ +closed = 1; +nodes = ( +(332,630,o), +(323,641,o), +(323,658,c), +(323,681,o), +(340,703,o), +(364,703,c), +(383,703,o), +(392,692,o), +(392,675,c), +(392,652,o), +(375,630,o), +(351,630,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (41,0); +ref = ringcomb; +} +); +width = 574; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(572,530,l), +(423,530,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +}, +{ +closed = 1; +nodes = ( +(422,575,o), +(469,624,o), +(469,682,c), +(469,733,o), +(432,768,o), +(373,768,c), +(303,768,o), +(256,719,o), +(256,661,c), +(256,610,o), +(293,575,o), +(352,575,c) +); +}, +{ +closed = 1; +nodes = ( +(339,640,o), +(331,651,o), +(331,666,c), +(331,685,o), +(345,703,o), +(367,703,c), +(386,703,o), +(394,692,o), +(394,677,c), +(394,658,o), +(380,640,o), +(358,640,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = a; +}, +{ +pos = (44,0); +ref = ringcomb; +} +); +width = 584; +} +); +unicode = 229; +}, +{ +color = 10; +glyphname = aringacute; +kernLeft = o; +kernRight = i; +lastChange = "2024-03-21 14:21:18 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(290,-10,o), +(381,74,o), +(412,221,c), +(439,380,l), +(439,483,o), +(376,540,o), +(287,540,c), +(138,540,o), +(15,392,o), +(15,188,c), +(15,64,o), +(87,-10,o), +(184,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(159,77,o), +(120,113,o), +(120,195,c), +(120,343,o), +(196,453,o), +(303,453,c), +(368,453,o), +(407,417,o), +(407,335,c), +(407,196,o), +(331,77,o), +(224,77,c) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(550,530,l), +(450,530,l), +(424,407,l), +(409,265,l), +(363,122,l), +(337,0,l) +); +}, +{ +closed = 1; +nodes = ( +(410,575,o), +(454,622,o), +(454,680,c), +(454,728,o), +(420,758,o), +(370,758,c), +(305,758,o), +(261,711,o), +(261,653,c), +(261,605,o), +(295,575,o), +(345,575,c) +); +}, +{ +closed = 1; +nodes = ( +(332,630,o), +(323,641,o), +(323,658,c), +(323,681,o), +(340,703,o), +(364,703,c), +(383,703,o), +(392,692,o), +(392,675,c), +(392,652,o), +(375,630,o), +(351,630,c) +); +}, +{ +closed = 1; +nodes = ( +(421,775,l), +(551,875,l), +(417,875,l), +(333,775,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (41,0); +ref = ringcomb; +}, +{ +pos = (41,38); +ref = acutecomb.case; +} +); +width = 574; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(572,530,l), +(423,530,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +}, +{ +closed = 1; +nodes = ( +(422,575,o), +(469,624,o), +(469,682,c), +(469,733,o), +(432,768,o), +(373,768,c), +(303,768,o), +(256,719,o), +(256,661,c), +(256,610,o), +(293,575,o), +(352,575,c) +); +}, +{ +closed = 1; +nodes = ( +(339,640,o), +(331,651,o), +(331,666,c), +(331,685,o), +(345,703,o), +(367,703,c), +(386,703,o), +(394,692,o), +(394,677,c), +(394,658,o), +(380,640,o), +(358,640,c) +); +}, +{ +closed = 1; +nodes = ( +(446,784,l), +(583,888,l), +(423,888,l), +(334,784,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = a; +}, +{ +pos = (44,0); +ref = ringcomb; +}, +{ +pos = (62,48); +ref = acutecomb.case; +} +); +width = 584; +} +); +unicode = 507; +}, +{ +color = 10; +glyphname = atilde; +kernLeft = o; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(290,-10,o), +(381,74,o), +(412,221,c), +(439,380,l), +(439,483,o), +(376,540,o), +(287,540,c), +(138,540,o), +(15,392,o), +(15,188,c), +(15,64,o), +(87,-10,o), +(184,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(159,77,o), +(120,113,o), +(120,195,c), +(120,343,o), +(196,453,o), +(303,453,c), +(368,453,o), +(407,417,o), +(407,335,c), +(407,196,o), +(331,77,o), +(224,77,c) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(550,530,l), +(450,530,l), +(424,407,l), +(409,265,l), +(363,122,l), +(337,0,l) +); +}, +{ +closed = 1; +nodes = ( +(261,585,l), +(265,624,o), +(274,642,o), +(299,642,c), +(331,642,o), +(347,585,o), +(408,585,c), +(471,585,o), +(505,639,o), +(517,725,c), +(449,725,l), +(446,686,o), +(436,668,o), +(411,668,c), +(380,668,o), +(363,725,o), +(302,725,c), +(239,725,o), +(206,671,o), +(193,585,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (40,0); +ref = tildecomb; +} +); +width = 574; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(572,530,l), +(423,530,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +}, +{ +closed = 1; +nodes = ( +(269,585,l), +(270,612,o), +(285,624,o), +(304,624,c), +(338,624,o), +(353,585,o), +(411,585,c), +(473,585,o), +(520,641,o), +(534,730,c), +(450,730,l), +(449,702,o), +(435,690,o), +(416,690,c), +(384,690,o), +(366,730,o), +(308,730,c), +(245,730,o), +(198,674,o), +(185,585,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = a; +}, +{ +pos = (44,0); +ref = tildecomb; +} +); +width = 584; +} +); +unicode = 227; +}, +{ +color = 6; +glyphname = ae; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (500,530); +} +); +background = { +anchors = ( +{ +name = top; +pos = (500,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(707,-10,o), +(786,43,o), +(834,125,c), +(749,170,l), +(716,116,o), +(666,84,o), +(610,84,c), +(538,84,o), +(498,121,o), +(498,195,cs), +(498,337,o), +(578,454,o), +(675,454,c), +(744,454,o), +(781,412,o), +(781,335,cs), +(781,311,o), +(779,288,o), +(774,266,c), +(812,310,l), +(494,310,l), +(477,231,l), +(869,231,l), +(878,265,o), +(885,302,o), +(885,340,cs), +(885,459,o), +(815,540,o), +(702,540,c), +(556,540,o), +(444,376,o), +(444,170,cs), +(444,63,o), +(509,-10,o), +(612,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(290,-10,o), +(381,74,o), +(412,221,c), +(439,380,l), +(439,483,o), +(376,540,o), +(287,540,c), +(138,540,o), +(15,392,o), +(15,188,c), +(15,64,o), +(87,-10,o), +(184,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(159,77,o), +(120,113,o), +(120,195,c), +(120,343,o), +(196,453,o), +(303,453,c), +(368,453,o), +(407,417,o), +(407,335,c), +(407,196,o), +(331,77,o), +(224,77,c) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(550,530,l), +(450,530,l), +(424,407,l), +(409,265,l), +(363,122,l), +(337,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(707,-10,o), +(786,43,o), +(834,125,c), +(749,170,l), +(716,116,o), +(666,84,o), +(610,84,c), +(538,84,o), +(498,121,o), +(498,195,cs), +(498,337,o), +(578,454,o), +(675,454,c), +(744,454,o), +(781,412,o), +(781,335,cs), +(781,311,o), +(779,288,o), +(774,266,c), +(812,310,l), +(494,310,l), +(477,231,l), +(869,231,l), +(878,265,o), +(885,302,o), +(885,340,cs), +(885,459,o), +(815,540,o), +(702,540,c), +(556,540,o), +(444,376,o), +(444,170,cs), +(444,63,o), +(509,-10,o), +(612,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(290,-10,o), +(381,74,o), +(412,221,c), +(439,380,l), +(439,483,o), +(376,540,o), +(287,540,c), +(138,540,o), +(15,392,o), +(15,188,c), +(15,64,o), +(87,-10,o), +(184,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(159,77,o), +(120,113,o), +(120,195,c), +(120,343,o), +(196,453,o), +(303,453,c), +(368,453,o), +(407,417,o), +(407,335,c), +(407,196,o), +(331,77,o), +(224,77,c) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(550,530,l), +(450,530,l), +(424,407,l), +(409,265,l), +(363,122,l), +(337,0,l) +); +} +); +width = 932; +}, +{ +anchors = ( +{ +name = top; +pos = (496,530); +} +); +background = { +anchors = ( +{ +name = top; +pos = (496,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(719,-14,o), +(796,42,o), +(835,128,c), +(699,177,l), +(682,141,o), +(646,114,o), +(598,114,c), +(544,114,o), +(517,159,o), +(517,218,c), +(517,328,o), +(580,419,o), +(659,419,c), +(713,419,o), +(739,387,o), +(739,312,c), +(739,296,o), +(738,280,o), +(735,265,c), +(785,323,l), +(469,323,l), +(447,223,l), +(872,223,l), +(882,256,o), +(887,292,o), +(887,327,c), +(887,454,o), +(822,544,o), +(711,544,c), +(570,544,o), +(468,371,o), +(468,166,c), +(468,61,o), +(529,-14,o), +(627,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(572,530,l), +(423,530,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(719,-14,o), +(796,42,o), +(835,128,c), +(699,177,l), +(682,141,o), +(646,114,o), +(598,114,c), +(544,114,o), +(517,159,o), +(517,218,c), +(517,328,o), +(580,419,o), +(659,419,c), +(713,419,o), +(739,387,o), +(739,312,c), +(739,296,o), +(738,280,o), +(735,265,c), +(785,323,l), +(469,323,l), +(447,223,l), +(872,223,l), +(882,256,o), +(887,292,o), +(887,327,c), +(887,454,o), +(822,544,o), +(711,544,c), +(570,544,o), +(468,371,o), +(468,166,c), +(468,61,o), +(529,-14,o), +(627,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(572,530,l), +(423,530,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +} +); +width = 927; +} +); +unicode = 230; +}, +{ +color = 10; +glyphname = aeacute; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:49:53 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(707,-10,o), +(786,43,o), +(834,125,c), +(749,170,l), +(716,116,o), +(666,84,o), +(610,84,c), +(538,84,o), +(498,121,o), +(498,195,cs), +(498,337,o), +(578,454,o), +(675,454,c), +(744,454,o), +(781,412,o), +(781,335,cs), +(781,311,o), +(779,288,o), +(774,266,c), +(812,310,l), +(494,310,l), +(477,231,l), +(869,231,l), +(878,265,o), +(885,302,o), +(885,340,cs), +(885,459,o), +(815,540,o), +(702,540,c), +(556,540,o), +(444,376,o), +(444,170,cs), +(444,63,o), +(509,-10,o), +(612,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(290,-10,o), +(381,74,o), +(412,221,c), +(439,380,l), +(439,483,o), +(376,540,o), +(287,540,c), +(138,540,o), +(15,392,o), +(15,188,c), +(15,64,o), +(87,-10,o), +(184,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(159,77,o), +(120,113,o), +(120,195,c), +(120,343,o), +(196,453,o), +(303,453,c), +(368,453,o), +(407,417,o), +(407,335,c), +(407,196,o), +(331,77,o), +(224,77,c) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(550,530,l), +(450,530,l), +(424,407,l), +(409,265,l), +(363,122,l), +(337,0,l) +); +}, +{ +closed = 1; +nodes = ( +(545,585,l), +(682,725,l), +(556,725,l), +(456,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = ae; +}, +{ +pos = (199,0); +ref = acutecomb; +} +); +width = 932; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(719,-14,o), +(796,42,o), +(835,128,c), +(699,177,l), +(682,141,o), +(646,114,o), +(598,114,c), +(544,114,o), +(517,159,o), +(517,218,c), +(517,328,o), +(580,419,o), +(659,419,c), +(713,419,o), +(739,387,o), +(739,312,c), +(739,296,o), +(738,280,o), +(735,265,c), +(785,323,l), +(469,323,l), +(447,223,l), +(872,223,l), +(882,256,o), +(887,292,o), +(887,327,c), +(887,454,o), +(822,544,o), +(711,544,c), +(570,544,o), +(468,371,o), +(468,166,c), +(468,61,o), +(529,-14,o), +(627,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(572,530,l), +(423,530,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +}, +{ +closed = 1; +nodes = ( +(552,585,l), +(708,730,l), +(547,730,l), +(437,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = ae; +}, +{ +pos = (218,0); +ref = acutecomb; +} +); +width = 927; +} +); +unicode = 509; +}, +{ +color = 6; +glyphname = b; +kernLeft = l; +kernRight = o; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(404,-10,o), +(527,138,o), +(527,342,c), +(527,466,o), +(455,540,o), +(358,540,c), +(252,540,o), +(161,456,o), +(130,309,c), +(103,150,l), +(103,47,o), +(166,-10,o), +(255,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(92,0,l), +(118,123,l), +(133,265,l), +(179,408,l), +(244,715,l), +(144,715,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(174,77,o), +(135,113,o), +(135,195,c), +(135,334,o), +(211,453,o), +(318,453,c), +(383,453,o), +(422,417,o), +(422,335,c), +(422,187,o), +(346,77,o), +(239,77,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(404,-10,o), +(527,138,o), +(527,342,c), +(527,466,o), +(455,540,o), +(358,540,c), +(252,540,o), +(161,456,o), +(130,309,c), +(103,150,l), +(103,47,o), +(166,-10,o), +(255,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(92,0,l), +(118,123,l), +(133,265,l), +(179,408,l), +(244,715,l), +(144,715,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(174,77,o), +(135,113,o), +(135,195,c), +(135,334,o), +(211,453,o), +(318,453,c), +(383,453,o), +(422,417,o), +(422,335,c), +(422,187,o), +(346,77,o), +(239,77,c) +); +} +); +width = 575; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(440,-14,o), +(542,154,o), +(542,341,c), +(542,468,o), +(482,544,o), +(384,544,c), +(283,544,o), +(200,458,o), +(168,304,c), +(146,145,l), +(143,42,o), +(195,-14,o), +(283,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(129,0,l), +(159,139,l), +(166,265,l), +(210,383,l), +(281,715,l), +(132,715,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(197,120,o), +(169,151,o), +(169,212,c), +(169,322,o), +(227,410,o), +(309,410,c), +(360,410,o), +(388,379,o), +(388,318,c), +(388,208,o), +(330,120,o), +(248,120,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(440,-14,o), +(542,154,o), +(542,341,c), +(542,468,o), +(482,544,o), +(384,544,c), +(283,544,o), +(200,458,o), +(168,304,c), +(146,145,l), +(143,42,o), +(195,-14,o), +(283,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(129,0,l), +(159,139,l), +(166,265,l), +(210,383,l), +(281,715,l), +(132,715,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(197,120,o), +(169,151,o), +(169,212,c), +(169,322,o), +(227,410,o), +(309,410,c), +(360,410,o), +(388,379,o), +(388,318,c), +(388,208,o), +(330,120,o), +(248,120,c) +); +} +); +width = 586; +} +); +unicode = 98; +}, +{ +color = 6; +glyphname = c; +kernLeft = o; +kernRight = c; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (203,0); +}, +{ +name = top; +pos = (315.655,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (203,0); +}, +{ +name = top; +pos = (315.655,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(313,-10,o), +(394,40,o), +(447,145,c), +(353,179,l), +(319,109,o), +(277,80,o), +(226,80,c), +(160,80,o), +(120,121,o), +(120,195,cs), +(120,334,o), +(200,450,o), +(300,450,c), +(357,450,o), +(387,422,o), +(400,355,c), +(498,384,l), +(480,486,o), +(410,540,o), +(314,540,c), +(145,540,o), +(16,385,o), +(16,190,cs), +(16,71,o), +(94,-10,o), +(213,-10,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(313,-10,o), +(394,40,o), +(447,145,c), +(353,179,l), +(319,109,o), +(277,80,o), +(226,80,c), +(160,80,o), +(120,121,o), +(120,195,cs), +(120,334,o), +(200,450,o), +(300,450,c), +(357,450,o), +(387,422,o), +(400,355,c), +(498,384,l), +(480,486,o), +(410,540,o), +(314,540,c), +(145,540,o), +(16,385,o), +(16,190,cs), +(16,71,o), +(94,-10,o), +(213,-10,c) +); +} +); +width = 522; +}, +{ +anchors = ( +{ +name = bottom; +pos = (220,0); +}, +{ +name = top; +pos = (332.655,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (220,0); +}, +{ +name = top; +pos = (332.655,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(352,-14,o), +(453,58,o), +(501,177,c), +(355,207,l), +(337,148,o), +(292,119,o), +(242,119,c), +(185,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(356,411,o), +(384,381,o), +(386,325,c), +(534,355,l), +(523,472,o), +(441,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(88,-14,o), +(221,-14,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(352,-14,o), +(453,58,o), +(501,177,c), +(355,207,l), +(337,148,o), +(292,119,o), +(242,119,c), +(185,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(356,411,o), +(384,381,o), +(386,325,c), +(534,355,l), +(523,472,o), +(441,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(88,-14,o), +(221,-14,c) +); +} +); +width = 559; +} +); +unicode = 99; +}, +{ +color = 10; +glyphname = cacute; +kernLeft = o; +kernRight = c; +lastChange = "2024-03-21 14:49:53 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(313,-10,o), +(394,40,o), +(447,145,c), +(353,179,l), +(319,109,o), +(277,80,o), +(226,80,c), +(160,80,o), +(120,121,o), +(120,195,cs), +(120,334,o), +(200,450,o), +(300,450,c), +(357,450,o), +(387,422,o), +(400,355,c), +(498,384,l), +(480,486,o), +(410,540,o), +(314,540,c), +(145,540,o), +(16,385,o), +(16,190,cs), +(16,71,o), +(94,-10,o), +(213,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(361,585,l), +(498,725,l), +(372,725,l), +(272,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = c; +}, +{ +pos = (15,0); +ref = acutecomb; +} +); +width = 522; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(352,-14,o), +(453,58,o), +(501,177,c), +(355,207,l), +(337,148,o), +(292,119,o), +(242,119,c), +(185,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(356,411,o), +(384,381,o), +(386,325,c), +(534,355,l), +(523,472,o), +(441,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(88,-14,o), +(221,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(389,585,l), +(545,730,l), +(384,730,l), +(274,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = c; +}, +{ +pos = (55,0); +ref = acutecomb; +} +); +width = 559; +} +); +unicode = 263; +}, +{ +color = 10; +glyphname = ccaron; +kernLeft = o; +kernRight = c; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(313,-10,o), +(394,40,o), +(447,145,c), +(353,179,l), +(319,109,o), +(277,80,o), +(226,80,c), +(160,80,o), +(120,121,o), +(120,195,cs), +(120,334,o), +(200,450,o), +(300,450,c), +(357,450,o), +(387,422,o), +(400,355,c), +(498,384,l), +(480,486,o), +(410,540,o), +(314,540,c), +(145,540,o), +(16,385,o), +(16,190,cs), +(16,71,o), +(94,-10,o), +(213,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(346,585,l), +(345,625,l), +(283,725,l), +(201,725,l), +(271,585,l) +); +}, +{ +closed = 1; +nodes = ( +(383,585,l), +(513,725,l), +(419,725,l), +(315,625,l), +(308,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = c; +}, +{ +pos = (27,0); +ref = caroncomb; +} +); +width = 522; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(352,-14,o), +(453,58,o), +(501,177,c), +(355,207,l), +(337,148,o), +(292,119,o), +(242,119,c), +(185,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(356,411,o), +(384,381,o), +(386,325,c), +(534,355,l), +(523,472,o), +(441,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(88,-14,o), +(221,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(380,585,l), +(375,629,l), +(307,730,l), +(203,730,l), +(274,585,l) +); +}, +{ +closed = 1; +nodes = ( +(414,585,l), +(547,730,l), +(431,730,l), +(320,629,l), +(308,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = c; +}, +{ +pos = (45,0); +ref = caroncomb; +} +); +width = 559; +} +); +unicode = 269; +}, +{ +color = 10; +glyphname = ccedilla; +kernLeft = o; +kernRight = c; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(313,-10,o), +(394,40,o), +(447,145,c), +(353,179,l), +(319,109,o), +(277,80,o), +(226,80,c), +(160,80,o), +(120,121,o), +(120,195,cs), +(120,334,o), +(200,450,o), +(300,450,c), +(357,450,o), +(387,422,o), +(400,355,c), +(498,384,l), +(480,486,o), +(410,540,o), +(314,540,c), +(145,540,o), +(16,385,o), +(16,190,cs), +(16,71,o), +(94,-10,o), +(213,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(225,-185,o), +(269,-144,o), +(269,-96,c), +(269,-55,o), +(240,-29,o), +(199,-29,c), +(208,-43,l), +(225,9,l), +(169,11,l), +(138,-73,l), +(150,-71,o), +(157,-70,o), +(168,-70,c), +(190,-70,o), +(201,-79,o), +(201,-94,c), +(201,-108,o), +(187,-119,o), +(162,-119,c), +(142,-119,o), +(127,-114,o), +(111,-105,c), +(84,-169,l), +(107,-180,o), +(131,-185,o), +(157,-185,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = c; +}, +{ +pos = (24,0); +ref = cedillacomb; +} +); +width = 522; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(352,-14,o), +(453,58,o), +(501,177,c), +(355,207,l), +(337,148,o), +(292,119,o), +(242,119,c), +(185,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(356,411,o), +(384,381,o), +(386,325,c), +(534,355,l), +(523,472,o), +(441,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(88,-14,o), +(221,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(262,-190,o), +(301,-146,o), +(301,-97,c), +(301,-57,o), +(272,-29,o), +(222,-29,c), +(231,-43,l), +(248,9,l), +(180,11,l), +(147,-80,l), +(159,-76,o), +(169,-74,o), +(181,-74,c), +(201,-74,o), +(211,-80,o), +(211,-91,c), +(211,-103,o), +(200,-109,o), +(177,-109,c), +(157,-109,o), +(135,-105,o), +(116,-94,c), +(87,-174,l), +(112,-185,o), +(142,-190,o), +(170,-190,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = c; +}, +{ +pos = (40,0); +ref = cedillacomb; +} +); +width = 559; +} +); +unicode = 231; +}, +{ +color = 10; +glyphname = ccircumflex; +kernLeft = o; +kernRight = c; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(313,-10,o), +(394,40,o), +(447,145,c), +(353,179,l), +(319,109,o), +(277,80,o), +(226,80,c), +(160,80,o), +(120,121,o), +(120,195,cs), +(120,334,o), +(200,450,o), +(300,450,c), +(357,450,o), +(387,422,o), +(400,355,c), +(498,384,l), +(480,486,o), +(410,540,o), +(314,540,c), +(145,540,o), +(16,385,o), +(16,190,cs), +(16,71,o), +(94,-10,o), +(213,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(265,585,l), +(369,685,l), +(376,725,l), +(301,725,l), +(171,585,l) +); +}, +{ +closed = 1; +nodes = ( +(483,585,l), +(413,725,l), +(338,725,l), +(339,685,l), +(401,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = c; +}, +{ +pos = (28,0); +ref = circumflexcomb; +} +); +width = 522; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(352,-14,o), +(453,58,o), +(501,177,c), +(355,207,l), +(337,148,o), +(292,119,o), +(242,119,c), +(185,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(356,411,o), +(384,381,o), +(386,325,c), +(534,355,l), +(523,472,o), +(441,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(88,-14,o), +(221,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(288,585,l), +(399,686,l), +(411,730,l), +(305,730,l), +(172,585,l) +); +}, +{ +closed = 1; +nodes = ( +(516,585,l), +(445,730,l), +(339,730,l), +(344,686,l), +(412,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = c; +}, +{ +pos = (45,0); +ref = circumflexcomb; +} +); +width = 559; +} +); +unicode = 265; +}, +{ +color = 10; +glyphname = cdotaccent; +kernLeft = o; +kernRight = c; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(313,-10,o), +(394,40,o), +(447,145,c), +(353,179,l), +(319,109,o), +(277,80,o), +(226,80,c), +(160,80,o), +(120,121,o), +(120,195,cs), +(120,334,o), +(200,450,o), +(300,450,c), +(357,450,o), +(387,422,o), +(400,355,c), +(498,384,l), +(480,486,o), +(410,540,o), +(314,540,c), +(145,540,o), +(16,385,o), +(16,190,cs), +(16,71,o), +(94,-10,o), +(213,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(377,602,o), +(405,629,o), +(405,667,c), +(405,702,o), +(382,725,o), +(348,725,c), +(310,725,o), +(283,698,o), +(283,657,c), +(283,625,o), +(306,602,o), +(339,602,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = c; +}, +{ +pos = (26,0); +ref = dotaccentcomb; +} +); +width = 522; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(352,-14,o), +(453,58,o), +(501,177,c), +(355,207,l), +(337,148,o), +(292,119,o), +(242,119,c), +(185,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(356,411,o), +(384,381,o), +(386,325,c), +(534,355,l), +(523,472,o), +(441,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(88,-14,o), +(221,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(401,588,o), +(437,620,o), +(437,669,c), +(437,711,o), +(410,738,o), +(366,738,c), +(321,738,o), +(285,706,o), +(285,656,c), +(285,615,o), +(312,588,o), +(356,588,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = c; +}, +{ +pos = (43,0); +ref = dotaccentcomb; +} +); +width = 559; +} +); +unicode = 267; +}, +{ +color = 6; +glyphname = d; +kernLeft = o; +kernRight = l; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (232,0); +}, +{ +name = center; +pos = (497,572); +}, +{ +name = top; +pos = (344,530); +}, +{ +name = topright; +pos = (619,715); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(292,-10,o), +(383,74,o), +(414,221,c), +(441,380,l), +(441,483,o), +(378,540,o), +(289,540,c), +(140,540,o), +(17,392,o), +(17,188,c), +(17,64,o), +(89,-10,o), +(186,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(161,77,o), +(122,113,o), +(122,195,c), +(122,343,o), +(198,453,o), +(305,453,c), +(370,453,o), +(409,417,o), +(409,335,c), +(409,196,o), +(333,77,o), +(226,77,c) +); +}, +{ +closed = 1; +nodes = ( +(439,0,l), +(591,715,l), +(491,715,l), +(426,407,l), +(411,265,l), +(365,122,l), +(339,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(292,-10,o), +(383,74,o), +(414,221,c), +(441,380,l), +(441,483,o), +(378,540,o), +(289,540,c), +(140,540,o), +(17,392,o), +(17,188,c), +(17,64,o), +(89,-10,o), +(186,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(161,77,o), +(122,113,o), +(122,195,c), +(122,343,o), +(198,453,o), +(305,453,c), +(370,453,o), +(409,417,o), +(409,335,c), +(409,196,o), +(333,77,o), +(226,77,c) +); +}, +{ +closed = 1; +nodes = ( +(439,0,l), +(591,715,l), +(491,715,l), +(426,407,l), +(411,265,l), +(365,122,l), +(339,0,l) +); +} +); +width = 576; +}, +{ +anchors = ( +{ +name = bottom; +pos = (236,0); +}, +{ +name = center; +pos = (503,572); +}, +{ +name = top; +pos = (348,530); +}, +{ +name = topright; +pos = (637,715); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(611,715,l), +(462,715,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(611,715,l), +(462,715,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +} +); +width = 584; +} +); +unicode = 100; +}, +{ +color = 10; +glyphname = dcaron; +kernLeft = o; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(292,-10,o), +(383,74,o), +(414,221,c), +(441,380,l), +(441,483,o), +(378,540,o), +(289,540,c), +(140,540,o), +(17,392,o), +(17,188,c), +(17,64,o), +(89,-10,o), +(186,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(161,77,o), +(122,113,o), +(122,195,c), +(122,343,o), +(198,453,o), +(305,453,c), +(370,453,o), +(409,417,o), +(409,335,c), +(409,196,o), +(333,77,o), +(226,77,c) +); +}, +{ +closed = 1; +nodes = ( +(439,0,l), +(591,715,l), +(491,715,l), +(426,407,l), +(411,265,l), +(365,122,l), +(339,0,l) +); +}, +{ +closed = 1; +nodes = ( +(641,442,l), +(743,715,l), +(639,715,l), +(581,442,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = d; +}, +{ +pos = (357,0); +ref = caroncomb.alt; +} +); +width = 576; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(611,715,l), +(462,715,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +}, +{ +closed = 1; +nodes = ( +(679,408,l), +(806,715,l), +(656,715,l), +(591,408,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = d; +}, +{ +pos = (389,0); +ref = caroncomb.alt; +} +); +width = 584; +} +); +unicode = 271; +}, +{ +color = 6; +glyphname = dcroat; +kernLeft = o; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(292,-10,o), +(383,74,o), +(414,221,c), +(441,380,l), +(441,483,o), +(378,540,o), +(289,540,c), +(140,540,o), +(17,392,o), +(17,188,c), +(17,64,o), +(89,-10,o), +(186,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(161,77,o), +(122,113,o), +(122,195,c), +(122,343,o), +(198,453,o), +(305,453,c), +(370,453,o), +(409,417,o), +(409,335,c), +(409,196,o), +(333,77,o), +(226,77,c) +); +}, +{ +closed = 1; +nodes = ( +(439,0,l), +(591,715,l), +(491,715,l), +(426,407,l), +(411,265,l), +(365,122,l), +(339,0,l) +); +}, +{ +closed = 1; +nodes = ( +(620,567,l), +(638,653,l), +(363,653,l), +(345,567,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(292,-10,o), +(383,74,o), +(414,221,c), +(441,380,l), +(441,483,o), +(378,540,o), +(289,540,c), +(140,540,o), +(17,392,o), +(17,188,c), +(17,64,o), +(89,-10,o), +(186,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(161,77,o), +(122,113,o), +(122,195,c), +(122,343,o), +(198,453,o), +(305,453,c), +(370,453,o), +(409,417,o), +(409,335,c), +(409,196,o), +(333,77,o), +(226,77,c) +); +}, +{ +closed = 1; +nodes = ( +(439,0,l), +(591,715,l), +(491,715,l), +(426,407,l), +(411,265,l), +(365,122,l), +(339,0,l) +); +}, +{ +closed = 1; +nodes = ( +(620,567,l), +(638,653,l), +(363,653,l), +(345,567,l) +); +} +); +width = 591; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(611,715,l), +(462,715,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +}, +{ +closed = 1; +nodes = ( +(629,560,l), +(653,675,l), +(333,675,l), +(309,560,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(611,715,l), +(462,715,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +}, +{ +closed = 1; +nodes = ( +(629,560,l), +(653,675,l), +(333,675,l), +(309,560,l) +); +} +); +width = 593; +} +); +unicode = 273; +}, +{ +color = 6; +glyphname = eth; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (226,0); +}, +{ +name = top; +pos = (378,715); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (226,0); +}, +{ +name = top; +pos = (378,715); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(373,-10,o), +(513,108,o), +(513,343,cs), +(513,462,o), +(466,600,o), +(349,715,c), +(213,715,l), +(359,585,o), +(421,473,o), +(421,327,cs), +(421,325,o), +(421,322,o), +(421,320,c), +(429,320,l), +(422,408,o), +(357,456,o), +(269,456,c), +(121,456,o), +(13,328,o), +(13,192,c), +(13,71,o), +(94,-10,o), +(222,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(169,80,o), +(116,120,o), +(116,197,c), +(116,294,o), +(193,374,o), +(279,374,c), +(360,374,o), +(401,334,o), +(401,267,cs), +(401,167,o), +(325,80,o), +(241,80,c) +); +}, +{ +closed = 1; +nodes = ( +(518,658,l), +(472,725,l), +(225,555,l), +(271,488,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(373,-10,o), +(513,108,o), +(513,343,cs), +(513,462,o), +(466,600,o), +(349,715,c), +(213,715,l), +(359,585,o), +(421,473,o), +(421,327,cs), +(421,325,o), +(421,322,o), +(421,320,c), +(429,320,l), +(422,408,o), +(357,456,o), +(269,456,c), +(121,456,o), +(13,328,o), +(13,192,c), +(13,71,o), +(94,-10,o), +(222,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(169,80,o), +(116,120,o), +(116,197,c), +(116,294,o), +(193,374,o), +(279,374,c), +(360,374,o), +(401,334,o), +(401,267,cs), +(401,167,o), +(325,80,o), +(241,80,c) +); +}, +{ +closed = 1; +nodes = ( +(518,658,l), +(472,725,l), +(225,555,l), +(271,488,l) +); +} +); +width = 563; +}, +{ +anchors = ( +{ +name = bottom; +pos = (231,0); +}, +{ +name = top; +pos = (383,715); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (231,0); +}, +{ +name = top; +pos = (383,715); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(388,-14,o), +(536,99,o), +(536,349,cs), +(536,452,o), +(488,594,o), +(383,715,c), +(184,715,l), +(332,570,o), +(391,444,o), +(391,284,cs), +(391,276,o), +(391,268,o), +(391,260,c), +(399,260,l), +(399,268,o), +(400,276,o), +(400,283,cs), +(400,394,o), +(341,461,o), +(244,461,c), +(117,461,o), +(4,339,o), +(4,197,c), +(4,76,o), +(91,-14,o), +(223,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(188,120,o), +(158,156,o), +(158,213,c), +(158,278,o), +(207,334,o), +(281,334,c), +(341,334,o), +(373,301,o), +(373,249,c), +(373,184,o), +(315,120,o), +(248,120,c) +); +}, +{ +closed = 1; +nodes = ( +(533,636,l), +(481,730,l), +(197,575,l), +(249,481,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(388,-14,o), +(536,99,o), +(536,349,cs), +(536,452,o), +(488,594,o), +(383,715,c), +(184,715,l), +(332,570,o), +(391,444,o), +(391,284,cs), +(391,276,o), +(391,268,o), +(391,260,c), +(399,260,l), +(399,381,o), +(361,461,o), +(244,461,c), +(117,461,o), +(4,339,o), +(4,197,c), +(4,76,o), +(91,-14,o), +(223,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(188,120,o), +(158,156,o), +(158,213,c), +(158,278,o), +(207,334,o), +(281,334,c), +(341,334,o), +(373,301,o), +(373,249,c), +(373,184,o), +(315,120,o), +(248,120,c) +); +}, +{ +closed = 1; +nodes = ( +(533,636,l), +(481,730,l), +(197,575,l), +(249,481,l) +); +} +); +width = 574; +} +); +unicode = 240; +}, +{ +color = 6; +glyphname = e; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:04:07 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (209,0); +}, +{ +name = ogonek; +pos = (288,0); +}, +{ +name = top; +pos = (321.655,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (209,0); +}, +{ +name = top; +pos = (321.655,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(319,-10,o), +(404,43,o), +(455,125,c), +(370,170,l), +(337,116,o), +(287,84,o), +(231,84,c), +(159,84,o), +(119,121,o), +(119,195,cs), +(119,336.725,o), +(199,454,o), +(296,454,c), +(365,454,o), +(402,412.217,o), +(402,335,cs), +(402,311,o), +(400,288,o), +(395,266,c), +(433,310,l), +(115,310,l), +(98,231,l), +(490,231,l), +(499,265,o), +(506,302,o), +(506,340,cs), +(506,459,o), +(429.921,540,o), +(308,540,c), +(141.836,540,o), +(15,385,o), +(15,190,cs), +(15,71,o), +(93,-10,o), +(218,-10,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(319,-10,o), +(404,43,o), +(455,125,c), +(370,170,l), +(337,116,o), +(287,84,o), +(231,84,c), +(159,84,o), +(119,121,o), +(119,195,cs), +(119,336.725,o), +(199,454,o), +(296,454,c), +(365,454,o), +(402,412.217,o), +(402,335,cs), +(402,311,o), +(400,288,o), +(395,266,c), +(433,310,l), +(115,310,l), +(98,231,l), +(490,231,l), +(499,265,o), +(506,302,o), +(506,340,cs), +(506,459,o), +(429.921,540,o), +(308,540,c), +(141.836,540,o), +(15,385,o), +(15,190,cs), +(15,71,o), +(93,-10,o), +(218,-10,c) +); +} +); +width = 553; +}, +{ +anchors = ( +{ +name = bottom; +pos = (217,0); +}, +{ +name = ogonek; +pos = (320,0); +}, +{ +name = top; +pos = (329.655,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (217,0); +}, +{ +name = top; +pos = (329.655,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(342,-14,o), +(433,42,o), +(480,128,c), +(344,177,l), +(327,141,o), +(291,114,o), +(243,114,c), +(189,114,o), +(162,159,o), +(162,218,c), +(162,328.44,o), +(225,419,o), +(304,419,c), +(358,419,o), +(384,387,o), +(384,312,c), +(384,296,o), +(383,280,o), +(380,265,c), +(430,323,l), +(114,323,l), +(92,223,l), +(517,223,l), +(527,256,o), +(532,292,o), +(532,327,c), +(532,454,o), +(452,544,o), +(316,544,c), +(138,544,o), +(8,387,o), +(8,201,c), +(8,76,o), +(93,-14,o), +(232,-14,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(342,-14,o), +(433,42,o), +(480,128,c), +(344,177,l), +(327,141,o), +(291,114,o), +(243,114,c), +(189,114,o), +(162,159,o), +(162,218,c), +(162,328.44,o), +(225,419,o), +(304,419,c), +(358,419,o), +(384,387,o), +(384,312,c), +(384,296,o), +(383,280,o), +(380,265,c), +(430,323,l), +(114,323,l), +(92,223,l), +(517,223,l), +(527,256,o), +(532,292,o), +(532,327,c), +(532,454,o), +(452,544,o), +(316,544,c), +(138,544,o), +(8,387,o), +(8,201,c), +(8,76,o), +(93,-14,o), +(232,-14,c) +); +} +); +width = 572; +} +); +unicode = 101; +}, +{ +color = 10; +glyphname = eacute; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:49:53 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(319,-10,o), +(404,43,o), +(455,125,c), +(370,170,l), +(337,116,o), +(287,84,o), +(231,84,c), +(159,84,o), +(119,121,o), +(119,195,cs), +(119,337,o), +(199,454,o), +(296,454,c), +(365,454,o), +(402,412,o), +(402,335,cs), +(402,311,o), +(400,288,o), +(395,266,c), +(433,310,l), +(115,310,l), +(98,231,l), +(490,231,l), +(499,265,o), +(506,302,o), +(506,340,cs), +(506,459,o), +(430,540,o), +(308,540,c), +(142,540,o), +(15,385,o), +(15,190,cs), +(15,71,o), +(93,-10,o), +(218,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(367,585,l), +(504,725,l), +(378,725,l), +(278,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (21,0); +ref = acutecomb; +} +); +width = 553; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(342,-14,o), +(433,42,o), +(480,128,c), +(344,177,l), +(327,141,o), +(291,114,o), +(243,114,c), +(189,114,o), +(162,159,o), +(162,218,c), +(162,328,o), +(225,419,o), +(304,419,c), +(358,419,o), +(384,387,o), +(384,312,c), +(384,296,o), +(383,280,o), +(380,265,c), +(430,323,l), +(114,323,l), +(92,223,l), +(517,223,l), +(527,256,o), +(532,292,o), +(532,327,c), +(532,454,o), +(452,544,o), +(316,544,c), +(138,544,o), +(8,387,o), +(8,201,c), +(8,76,o), +(93,-14,o), +(232,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(386,585,l), +(542,730,l), +(381,730,l), +(271,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = e; +}, +{ +pos = (52,0); +ref = acutecomb; +} +); +width = 572; +} +); +unicode = 233; +}, +{ +color = 10; +glyphname = ebreve; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(319,-10,o), +(404,43,o), +(455,125,c), +(370,170,l), +(337,116,o), +(287,84,o), +(231,84,c), +(159,84,o), +(119,121,o), +(119,195,cs), +(119,337,o), +(199,454,o), +(296,454,c), +(365,454,o), +(402,412,o), +(402,335,cs), +(402,311,o), +(400,288,o), +(395,266,c), +(433,310,l), +(115,310,l), +(98,231,l), +(490,231,l), +(499,265,o), +(506,302,o), +(506,340,cs), +(506,459,o), +(430,540,o), +(308,540,c), +(142,540,o), +(15,385,o), +(15,190,cs), +(15,71,o), +(93,-10,o), +(218,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(438,585,o), +(485,639,o), +(503,725,c), +(433,725,l), +(425,684,o), +(394,660,o), +(347,660,c), +(309,660,o), +(291,677,o), +(291,707,cs), +(291,712,o), +(292,719,o), +(293,725,c), +(223,725,l), +(221,713,o), +(220,702,o), +(220,692,cs), +(220,629,o), +(266,585,o), +(343,585,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (33,0); +ref = brevecomb; +} +); +width = 553; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(342,-14,o), +(433,42,o), +(480,128,c), +(344,177,l), +(327,141,o), +(291,114,o), +(243,114,c), +(189,114,o), +(162,159,o), +(162,218,c), +(162,328,o), +(225,419,o), +(304,419,c), +(358,419,o), +(384,387,o), +(384,312,c), +(384,296,o), +(383,280,o), +(380,265,c), +(430,323,l), +(114,323,l), +(92,223,l), +(517,223,l), +(527,256,o), +(532,292,o), +(532,327,c), +(532,454,o), +(452,544,o), +(316,544,c), +(138,544,o), +(8,387,o), +(8,201,c), +(8,76,o), +(93,-14,o), +(232,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(456,585,o), +(502,639,o), +(521,730,c), +(430,730,l), +(423,693,o), +(395,671,o), +(358,671,c), +(327,671,o), +(312,686,o), +(312,713,cs), +(312,718,o), +(313,724,o), +(314,730,c), +(223,730,l), +(221,718,o), +(220,708,o), +(220,697,cs), +(220,626,o), +(270,585,o), +(351,585,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = e; +}, +{ +pos = (42,0); +ref = brevecomb; +} +); +width = 572; +} +); +unicode = 277; +}, +{ +color = 10; +glyphname = ecaron; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(319,-10,o), +(404,43,o), +(455,125,c), +(370,170,l), +(337,116,o), +(287,84,o), +(231,84,c), +(159,84,o), +(119,121,o), +(119,195,cs), +(119,337,o), +(199,454,o), +(296,454,c), +(365,454,o), +(402,412,o), +(402,335,cs), +(402,311,o), +(400,288,o), +(395,266,c), +(433,310,l), +(115,310,l), +(98,231,l), +(490,231,l), +(499,265,o), +(506,302,o), +(506,340,cs), +(506,459,o), +(430,540,o), +(308,540,c), +(142,540,o), +(15,385,o), +(15,190,cs), +(15,71,o), +(93,-10,o), +(218,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(352,585,l), +(351,625,l), +(289,725,l), +(207,725,l), +(277,585,l) +); +}, +{ +closed = 1; +nodes = ( +(389,585,l), +(519,725,l), +(425,725,l), +(321,625,l), +(314,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (33,0); +ref = caroncomb; +} +); +width = 553; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(342,-14,o), +(433,42,o), +(480,128,c), +(344,177,l), +(327,141,o), +(291,114,o), +(243,114,c), +(189,114,o), +(162,159,o), +(162,218,c), +(162,328,o), +(225,419,o), +(304,419,c), +(358,419,o), +(384,387,o), +(384,312,c), +(384,296,o), +(383,280,o), +(380,265,c), +(430,323,l), +(114,323,l), +(92,223,l), +(517,223,l), +(527,256,o), +(532,292,o), +(532,327,c), +(532,454,o), +(452,544,o), +(316,544,c), +(138,544,o), +(8,387,o), +(8,201,c), +(8,76,o), +(93,-14,o), +(232,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(377,585,l), +(372,629,l), +(304,730,l), +(200,730,l), +(271,585,l) +); +}, +{ +closed = 1; +nodes = ( +(411,585,l), +(544,730,l), +(428,730,l), +(317,629,l), +(305,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = e; +}, +{ +pos = (42,0); +ref = caroncomb; +} +); +width = 572; +} +); +unicode = 283; +}, +{ +color = 10; +glyphname = ecircumflex; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(319,-10,o), +(404,43,o), +(455,125,c), +(370,170,l), +(337,116,o), +(287,84,o), +(231,84,c), +(159,84,o), +(119,121,o), +(119,195,cs), +(119,337,o), +(199,454,o), +(296,454,c), +(365,454,o), +(402,412,o), +(402,335,cs), +(402,311,o), +(400,288,o), +(395,266,c), +(433,310,l), +(115,310,l), +(98,231,l), +(490,231,l), +(499,265,o), +(506,302,o), +(506,340,cs), +(506,459,o), +(430,540,o), +(308,540,c), +(142,540,o), +(15,385,o), +(15,190,cs), +(15,71,o), +(93,-10,o), +(218,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(271,585,l), +(375,685,l), +(382,725,l), +(307,725,l), +(177,585,l) +); +}, +{ +closed = 1; +nodes = ( +(489,585,l), +(419,725,l), +(344,725,l), +(345,685,l), +(407,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (34,0); +ref = circumflexcomb; +} +); +width = 553; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(342,-14,o), +(433,42,o), +(480,128,c), +(344,177,l), +(327,141,o), +(291,114,o), +(243,114,c), +(189,114,o), +(162,159,o), +(162,218,c), +(162,328,o), +(225,419,o), +(304,419,c), +(358,419,o), +(384,387,o), +(384,312,c), +(384,296,o), +(383,280,o), +(380,265,c), +(430,323,l), +(114,323,l), +(92,223,l), +(517,223,l), +(527,256,o), +(532,292,o), +(532,327,c), +(532,454,o), +(452,544,o), +(316,544,c), +(138,544,o), +(8,387,o), +(8,201,c), +(8,76,o), +(93,-14,o), +(232,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(285,585,l), +(396,686,l), +(408,730,l), +(302,730,l), +(169,585,l) +); +}, +{ +closed = 1; +nodes = ( +(513,585,l), +(442,730,l), +(336,730,l), +(341,686,l), +(409,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = e; +}, +{ +pos = (42,0); +ref = circumflexcomb; +} +); +width = 572; +} +); +unicode = 234; +}, +{ +color = 10; +glyphname = edieresis; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(319,-10,o), +(404,43,o), +(455,125,c), +(370,170,l), +(337,116,o), +(287,84,o), +(231,84,c), +(159,84,o), +(119,121,o), +(119,195,cs), +(119,337,o), +(199,454,o), +(296,454,c), +(365,454,o), +(402,412,o), +(402,335,cs), +(402,311,o), +(400,288,o), +(395,266,c), +(433,310,l), +(115,310,l), +(98,231,l), +(490,231,l), +(499,265,o), +(506,302,o), +(506,340,cs), +(506,459,o), +(430,540,o), +(308,540,c), +(142,540,o), +(15,385,o), +(15,190,cs), +(15,71,o), +(93,-10,o), +(218,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(288,602,o), +(314,627,o), +(314,662,c), +(314,694,o), +(293,715,o), +(262,715,c), +(227,715,o), +(202,690,o), +(202,653,c), +(202,623,o), +(223,602,o), +(253,602,c) +); +}, +{ +closed = 1; +nodes = ( +(470,602,o), +(496,627,o), +(496,662,c), +(496,694,o), +(475,715,o), +(444,715,c), +(409,715,o), +(384,690,o), +(384,653,c), +(384,623,o), +(405,602,o), +(435,602,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (32,0); +ref = dieresiscomb; +} +); +width = 553; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(342,-14,o), +(433,42,o), +(480,128,c), +(344,177,l), +(327,141,o), +(291,114,o), +(243,114,c), +(189,114,o), +(162,159,o), +(162,218,c), +(162,328,o), +(225,419,o), +(304,419,c), +(358,419,o), +(384,387,o), +(384,312,c), +(384,296,o), +(383,280,o), +(380,265,c), +(430,323,l), +(114,323,l), +(92,223,l), +(517,223,l), +(527,256,o), +(532,292,o), +(532,327,c), +(532,454,o), +(452,544,o), +(316,544,c), +(138,544,o), +(8,387,o), +(8,201,c), +(8,76,o), +(93,-14,o), +(232,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(296,588,o), +(330,618,o), +(330,664,c), +(330,703,o), +(305,728,o), +(264,728,c), +(222,728,o), +(188,698,o), +(188,652,c), +(188,613,o), +(213,588,o), +(254,588,c) +); +}, +{ +closed = 1; +nodes = ( +(492,588,o), +(526,618,o), +(526,664,c), +(526,703,o), +(501,728,o), +(460,728,c), +(418,728,o), +(384,698,o), +(384,652,c), +(384,613,o), +(409,588,o), +(450,588,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = e; +}, +{ +pos = (40,0); +ref = dieresiscomb; +} +); +width = 572; +} +); +unicode = 235; +}, +{ +color = 10; +glyphname = edotaccent; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(319,-10,o), +(404,43,o), +(455,125,c), +(370,170,l), +(337,116,o), +(287,84,o), +(231,84,c), +(159,84,o), +(119,121,o), +(119,195,cs), +(119,337,o), +(199,454,o), +(296,454,c), +(365,454,o), +(402,412,o), +(402,335,cs), +(402,311,o), +(400,288,o), +(395,266,c), +(433,310,l), +(115,310,l), +(98,231,l), +(490,231,l), +(499,265,o), +(506,302,o), +(506,340,cs), +(506,459,o), +(430,540,o), +(308,540,c), +(142,540,o), +(15,385,o), +(15,190,cs), +(15,71,o), +(93,-10,o), +(218,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(383,602,o), +(411,629,o), +(411,667,c), +(411,702,o), +(388,725,o), +(354,725,c), +(316,725,o), +(289,698,o), +(289,657,c), +(289,625,o), +(312,602,o), +(345,602,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (32,0); +ref = dotaccentcomb; +} +); +width = 553; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(342,-14,o), +(433,42,o), +(480,128,c), +(344,177,l), +(327,141,o), +(291,114,o), +(243,114,c), +(189,114,o), +(162,159,o), +(162,218,c), +(162,328,o), +(225,419,o), +(304,419,c), +(358,419,o), +(384,387,o), +(384,312,c), +(384,296,o), +(383,280,o), +(380,265,c), +(430,323,l), +(114,323,l), +(92,223,l), +(517,223,l), +(527,256,o), +(532,292,o), +(532,327,c), +(532,454,o), +(452,544,o), +(316,544,c), +(138,544,o), +(8,387,o), +(8,201,c), +(8,76,o), +(93,-14,o), +(232,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(398,588,o), +(434,620,o), +(434,669,c), +(434,711,o), +(407,738,o), +(363,738,c), +(318,738,o), +(282,706,o), +(282,656,c), +(282,615,o), +(309,588,o), +(353,588,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = e; +}, +{ +pos = (40,0); +ref = dotaccentcomb; +} +); +width = 572; +} +); +unicode = 279; +}, +{ +color = 10; +glyphname = edotbelow; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(319,-10,o), +(404,43,o), +(455,125,c), +(370,170,l), +(337,116,o), +(287,84,o), +(231,84,c), +(159,84,o), +(119,121,o), +(119,195,cs), +(119,337,o), +(199,454,o), +(296,454,c), +(365,454,o), +(402,412,o), +(402,335,cs), +(402,311,o), +(400,288,o), +(395,266,c), +(433,310,l), +(115,310,l), +(98,231,l), +(490,231,l), +(499,265,o), +(506,302,o), +(506,340,cs), +(506,459,o), +(430,540,o), +(308,540,c), +(142,540,o), +(15,385,o), +(15,190,cs), +(15,71,o), +(93,-10,o), +(218,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(213,-195,o), +(241,-168,o), +(241,-130,c), +(241,-95,o), +(218,-72,o), +(184,-72,c), +(146,-72,o), +(119,-99,o), +(119,-140,c), +(119,-172,o), +(142,-195,o), +(175,-195,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (33,0); +ref = dotbelow; +} +); +width = 553; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(342,-14,o), +(433,42,o), +(480,128,c), +(344,177,l), +(327,141,o), +(291,114,o), +(243,114,c), +(189,114,o), +(162,159,o), +(162,218,c), +(162,328,o), +(225,419,o), +(304,419,c), +(358,419,o), +(384,387,o), +(384,312,c), +(384,296,o), +(383,280,o), +(380,265,c), +(430,323,l), +(114,323,l), +(92,223,l), +(517,223,l), +(527,256,o), +(532,292,o), +(532,327,c), +(532,454,o), +(452,544,o), +(316,544,c), +(138,544,o), +(8,387,o), +(8,201,c), +(8,76,o), +(93,-14,o), +(232,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(231,-198,o), +(267,-166,o), +(267,-117,c), +(267,-75,o), +(240,-48,o), +(196,-48,c), +(151,-48,o), +(115,-80,o), +(115,-130,c), +(115,-171,o), +(142,-198,o), +(186,-198,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = e; +}, +{ +pos = (40,0); +ref = dotbelow; +} +); +width = 572; +} +); +unicode = 7865; +}, +{ +color = 10; +glyphname = egrave; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:48:12 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(319,-10,o), +(404,43,o), +(455,125,c), +(370,170,l), +(337,116,o), +(287,84,o), +(231,84,c), +(159,84,o), +(119,121,o), +(119,195,cs), +(119,337,o), +(199,454,o), +(296,454,c), +(365,454,o), +(402,412,o), +(402,335,cs), +(402,311,o), +(400,288,o), +(395,266,c), +(433,310,l), +(115,310,l), +(98,231,l), +(490,231,l), +(499,265,o), +(506,302,o), +(506,340,cs), +(506,459,o), +(430,540,o), +(308,540,c), +(142,540,o), +(15,385,o), +(15,190,cs), +(15,71,o), +(93,-10,o), +(218,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(383,585,l), +(343,725,l), +(222,725,l), +(302,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (32,0); +ref = gravecomb; +} +); +width = 553; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(342,-14,o), +(433,42,o), +(480,128,c), +(344,177,l), +(327,141,o), +(291,114,o), +(243,114,c), +(189,114,o), +(162,159,o), +(162,218,c), +(162,328,o), +(225,419,o), +(304,419,c), +(358,419,o), +(384,387,o), +(384,312,c), +(384,296,o), +(383,280,o), +(380,265,c), +(430,323,l), +(114,323,l), +(92,223,l), +(517,223,l), +(527,256,o), +(532,292,o), +(532,327,c), +(532,454,o), +(452,544,o), +(316,544,c), +(138,544,o), +(8,387,o), +(8,201,c), +(8,76,o), +(93,-14,o), +(232,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(404,585,l), +(355,730,l), +(205,730,l), +(302,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = e; +}, +{ +pos = (94,0); +ref = gravecomb; +} +); +width = 572; +} +); +unicode = 232; +}, +{ +color = 10; +glyphname = emacron; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(319,-10,o), +(404,43,o), +(455,125,c), +(370,170,l), +(337,116,o), +(287,84,o), +(231,84,c), +(159,84,o), +(119,121,o), +(119,195,cs), +(119,337,o), +(199,454,o), +(296,454,c), +(365,454,o), +(402,412,o), +(402,335,cs), +(402,311,o), +(400,288,o), +(395,266,c), +(433,310,l), +(115,310,l), +(98,231,l), +(490,231,l), +(499,265,o), +(506,302,o), +(506,340,cs), +(506,459,o), +(430,540,o), +(308,540,c), +(142,540,o), +(15,385,o), +(15,190,cs), +(15,71,o), +(93,-10,o), +(218,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(479,621,l), +(497,705,l), +(221,705,l), +(203,621,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (32,0); +ref = macroncomb; +} +); +width = 553; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(342,-14,o), +(433,42,o), +(480,128,c), +(344,177,l), +(327,141,o), +(291,114,o), +(243,114,c), +(189,114,o), +(162,159,o), +(162,218,c), +(162,328,o), +(225,419,o), +(304,419,c), +(358,419,o), +(384,387,o), +(384,312,c), +(384,296,o), +(383,280,o), +(380,265,c), +(430,323,l), +(114,323,l), +(92,223,l), +(517,223,l), +(527,256,o), +(532,292,o), +(532,327,c), +(532,454,o), +(452,544,o), +(316,544,c), +(138,544,o), +(8,387,o), +(8,201,c), +(8,76,o), +(93,-14,o), +(232,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(492,603,l), +(517,718,l), +(223,718,l), +(198,603,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = e; +}, +{ +pos = (41,0); +ref = macroncomb; +} +); +width = 572; +} +); +unicode = 275; +}, +{ +color = 10; +glyphname = eogonek; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-22 12:28:31 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(287,-185,o), +(324,-176,o), +(346,-165,c), +(354,-84,l), +(329,-96,o), +(298,-106,o), +(274,-106,c), +(261,-106,o), +(255,-101,o), +(255,-90,c), +(255,-72,o), +(281,-28,o), +(365,33,cs), +(400,59,o), +(432,88,o), +(455,125,c), +(370,170,l), +(337,116,o), +(287,84,o), +(231,84,c), +(159,84,o), +(119,121,o), +(119,195,cs), +(119,337,o), +(199,454,o), +(296,454,c), +(365,454,o), +(402,412,o), +(402,335,cs), +(402,311,o), +(400,288,o), +(395,266,c), +(433,310,l), +(115,310,l), +(98,231,l), +(490,231,l), +(499,265,o), +(506,302,o), +(506,340,cs), +(506,459,o), +(430,540,o), +(308,540,c), +(142,540,o), +(15,385,o), +(15,190,cs), +(15,71,o), +(93,-10,o), +(218,-10,c), +(243,-10,o), +(268,-7,o), +(291,0,c), +(281,2,l), +(196,-35,o), +(167,-74,o), +(167,-118,c), +(167,-155,o), +(193,-185,o), +(255,-185,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(287,-185,o), +(324,-176,o), +(346,-165,c), +(354,-84,l), +(329,-96,o), +(298,-106,o), +(274,-106,c), +(261,-106,o), +(255,-101,o), +(255,-90,c), +(255,-72,o), +(281,-28,o), +(365,33,cs), +(400,59,o), +(432,88,o), +(455,125,c), +(370,170,l), +(337,116,o), +(287,84,o), +(231,84,c), +(159,84,o), +(119,121,o), +(119,195,cs), +(119,337,o), +(199,454,o), +(296,454,c), +(365,454,o), +(402,412,o), +(402,335,cs), +(402,311,o), +(400,288,o), +(395,266,c), +(433,310,l), +(115,310,l), +(98,231,l), +(490,231,l), +(499,265,o), +(506,302,o), +(506,340,cs), +(506,459,o), +(430,540,o), +(308,540,c), +(142,540,o), +(15,385,o), +(15,190,cs), +(15,71,o), +(93,-10,o), +(218,-10,c), +(243,-10,o), +(268,-7,o), +(291,0,c), +(279,0,l), +(196,-35,o), +(167,-74,o), +(167,-118,c), +(167,-155,o), +(193,-185,o), +(255,-185,c) +); +} +); +width = 553; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(294,-190,o), +(329,-183,o), +(360,-170,c), +(371,-75,l), +(349,-87,o), +(321,-96,o), +(302,-96,c), +(289,-96,o), +(282,-90,o), +(282,-80,c), +(282,-65,o), +(303,-34,o), +(398,36,cs), +(432,61,o), +(460,91,o), +(480,128,c), +(344,177,l), +(327,141,o), +(291,114,o), +(243,114,c), +(189,114,o), +(162,159,o), +(162,218,c), +(162,328,o), +(225,419,o), +(304,419,c), +(358,419,o), +(384,387,o), +(384,312,c), +(384,296,o), +(383,280,o), +(380,265,c), +(430,323,l), +(114,323,l), +(92,223,l), +(517,223,l), +(527,256,o), +(532,292,o), +(532,327,c), +(532,454,o), +(452,544,o), +(316,544,c), +(138,544,o), +(8,387,o), +(8,201,c), +(8,76,o), +(93,-14,o), +(232,-14,c), +(256,-14,o), +(278,-11,o), +(300,-7,c), +(296,-2,l), +(199,-36,o), +(167,-82,o), +(167,-121,c), +(167,-158,o), +(197,-190,o), +(266,-190,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(294,-189,o), +(329,-182,o), +(360,-169,c), +(371,-75,l), +(349,-87,o), +(321,-96,o), +(302,-96,c), +(289,-96,o), +(282,-90,o), +(282,-80,c), +(282,-65,o), +(303,-34,o), +(398,36,cs), +(432,61,o), +(460,91,o), +(480,128,c), +(344,177,l), +(327,141,o), +(291,114,o), +(243,114,c), +(189,114,o), +(162,159,o), +(162,218,c), +(162,328,o), +(225,419,o), +(304,419,c), +(358,419,o), +(384,387,o), +(384,312,c), +(384,296,o), +(383,280,o), +(380,265,c), +(430,323,l), +(114,323,l), +(92,223,l), +(517,223,l), +(527,256,o), +(532,292,o), +(532,327,c), +(532,454,o), +(452,544,o), +(316,544,cs), +(138,544,o), +(8,387,o), +(8,201,c), +(8,76,o), +(93,-14,o), +(232,-14,c), +(256,-14,o), +(278,-11,o), +(300,-7,c), +(296,-2,l), +(199,-36,o), +(167,-82,o), +(167,-121,c), +(167,-158,o), +(197,-189,o), +(266,-189,c) +); +} +); +width = 572; +} +); +unicode = 281; +}, +{ +color = 10; +glyphname = etilde; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(319,-10,o), +(404,43,o), +(455,125,c), +(370,170,l), +(337,116,o), +(287,84,o), +(231,84,c), +(159,84,o), +(119,121,o), +(119,195,cs), +(119,337,o), +(199,454,o), +(296,454,c), +(365,454,o), +(402,412,o), +(402,335,cs), +(402,311,o), +(400,288,o), +(395,266,c), +(433,310,l), +(115,310,l), +(98,231,l), +(490,231,l), +(499,265,o), +(506,302,o), +(506,340,cs), +(506,459,o), +(430,540,o), +(308,540,c), +(142,540,o), +(15,385,o), +(15,190,cs), +(15,71,o), +(93,-10,o), +(218,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(254,585,l), +(258,624,o), +(267,642,o), +(292,642,c), +(324,642,o), +(340,585,o), +(401,585,c), +(464,585,o), +(498,639,o), +(510,725,c), +(442,725,l), +(439,686,o), +(429,668,o), +(404,668,c), +(373,668,o), +(356,725,o), +(295,725,c), +(232,725,o), +(199,671,o), +(186,585,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (33,0); +ref = tildecomb; +} +); +width = 553; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(342,-14,o), +(433,42,o), +(480,128,c), +(344,177,l), +(327,141,o), +(291,114,o), +(243,114,c), +(189,114,o), +(162,159,o), +(162,218,c), +(162,328,o), +(225,419,o), +(304,419,c), +(358,419,o), +(384,387,o), +(384,312,c), +(384,296,o), +(383,280,o), +(380,265,c), +(430,323,l), +(114,323,l), +(92,223,l), +(517,223,l), +(527,256,o), +(532,292,o), +(532,327,c), +(532,454,o), +(452,544,o), +(316,544,c), +(138,544,o), +(8,387,o), +(8,201,c), +(8,76,o), +(93,-14,o), +(232,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(266,585,l), +(267,612,o), +(282,624,o), +(301,624,c), +(335,624,o), +(350,585,o), +(408,585,c), +(470,585,o), +(517,641,o), +(531,730,c), +(447,730,l), +(446,702,o), +(432,690,o), +(413,690,c), +(381,690,o), +(363,730,o), +(305,730,c), +(242,730,o), +(195,674,o), +(182,585,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = e; +}, +{ +pos = (41,0); +ref = tildecomb; +} +); +width = 572; +} +); +unicode = 7869; +}, +{ +color = 6; +glyphname = schwa; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(378,-10,o), +(505,145,o), +(505,340,cs), +(505,459,o), +(427,540,o), +(302,540,c), +(201,540,o), +(116,487,o), +(65,405,c), +(150,360,l), +(183,414,o), +(233,446,o), +(289,446,c), +(361,446,o), +(401,409,o), +(401,335,cs), +(401,193,o), +(321,76,o), +(224,76,c), +(155,76,o), +(118,118,o), +(118,195,cs), +(118,219,o), +(120,242,o), +(125,264,c), +(87,220,l), +(405,220,l), +(422,299,l), +(30,299,l), +(21,265,o), +(14,228,o), +(14,190,cs), +(14,71,o), +(90,-10,o), +(212,-10,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(378,-10,o), +(505,145,o), +(505,340,cs), +(505,459,o), +(427,540,o), +(302,540,c), +(201,540,o), +(116,487,o), +(65,405,c), +(150,360,l), +(183,414,o), +(233,446,o), +(289,446,c), +(361,446,o), +(401,409,o), +(401,335,cs), +(401,193,o), +(321,76,o), +(224,76,c), +(155,76,o), +(118,118,o), +(118,195,cs), +(118,219,o), +(120,242,o), +(125,264,c), +(87,220,l), +(405,220,l), +(422,299,l), +(30,299,l), +(21,265,o), +(14,228,o), +(14,190,cs), +(14,71,o), +(90,-10,o), +(212,-10,c) +); +} +); +width = 552; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(401,-14,o), +(531,143,o), +(531,329,c), +(531,454,o), +(446,544,o), +(307,544,c), +(197,544,o), +(106,488,o), +(59,402,c), +(195,353,l), +(212,389,o), +(248,416,o), +(296,416,c), +(350,416,o), +(377,371,o), +(377,312,c), +(377,202,o), +(314,111,o), +(235,111,c), +(181,111,o), +(155,143,o), +(155,218,c), +(155,234,o), +(156,250,o), +(159,265,c), +(109,207,l), +(425,207,l), +(447,307,l), +(22,307,l), +(12,274,o), +(7,238,o), +(7,203,c), +(7,76,o), +(87,-14,o), +(223,-14,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(401,-14,o), +(531,143,o), +(531,329,c), +(531,454,o), +(446,544,o), +(307,544,c), +(197,544,o), +(106,488,o), +(59,402,c), +(195,353,l), +(212,389,o), +(248,416,o), +(296,416,c), +(350,416,o), +(377,371,o), +(377,312,c), +(377,202,o), +(314,111,o), +(235,111,c), +(181,111,o), +(155,143,o), +(155,218,c), +(155,234,o), +(156,250,o), +(159,265,c), +(109,207,l), +(425,207,l), +(447,307,l), +(22,307,l), +(12,274,o), +(7,238,o), +(7,203,c), +(7,76,o), +(87,-14,o), +(223,-14,c) +); +} +); +width = 571; +} +); +unicode = 601; +}, +{ +color = 6; +glyphname = f; +kernLeft = f; +kernRight = f; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(112,0,l), +(230,557,ls), +(241,610,o), +(272,636,o), +(320,636,c), +(343,636,o), +(363,630,o), +(383,621,c), +(401,708,l), +(375,718,o), +(347,725,o), +(315,725,c), +(221,725,o), +(156,678,o), +(131,561,cs), +(12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(340,443,l), +(359,530,l), +(50,530,l), +(31,443,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(112,0,l), +(230,557,ls), +(241,610,o), +(272,636,o), +(320,636,c), +(343,636,o), +(363,630,o), +(383,621,c), +(401,708,l), +(375,718,o), +(347,725,o), +(315,725,c), +(221,725,o), +(156,678,o), +(131,561,cs), +(12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(340,443,l), +(359,530,l), +(50,530,l), +(31,443,l) +); +} +); +width = 338; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(151,0,l), +(266,541,ls), +(275,582,o), +(301,603,o), +(342,603,c), +(370,603,o), +(394,597,o), +(415,589,c), +(441,712,l), +(412,723,o), +(372,729,o), +(332,729,c), +(229,729,o), +(147,683,o), +(120,554,cs), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(371,407,l), +(397,530,l), +(49,530,l), +(23,407,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(151,0,l), +(266,541,ls), +(275,582,o), +(301,603,o), +(342,603,c), +(370,603,o), +(394,597,o), +(415,589,c), +(441,712,l), +(412,723,o), +(372,729,o), +(332,729,c), +(229,729,o), +(147,683,o), +(120,554,cs), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(371,407,l), +(397,530,l), +(49,530,l), +(23,407,l) +); +} +); +width = 353; +} +); +unicode = 102; +}, +{ +color = 6; +glyphname = g; +kernLeft = o; +kernRight = q; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (323.655,530); +} +); +background = { +anchors = ( +{ +name = top; +pos = (323.655,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(299,-185,o), +(410,-131,o), +(445,34,cs), +(551,530,l), +(451,530,l), +(425,407,l), +(410,265,l), +(374,168,l), +(349,53,ls), +(325,-57,o), +(249,-95,o), +(187,-95,c), +(129,-95,o), +(92,-73,o), +(71,-23,c), +(-31,-62,l), +(-9,-136,o), +(68,-185,o), +(175,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(289,40,o), +(382.68,111.273,o), +(413,236,c), +(440,380,l), +(440,483,o), +(377,540,o), +(288,540,c), +(139,540,o), +(21,405,o), +(21,221,c), +(21,115,o), +(94,40,o), +(191,40,c) +); +}, +{ +closed = 1; +nodes = ( +(166,127,o), +(126,165,o), +(126,228,c), +(126,356,o), +(197,453,o), +(304,453,c), +(367,453,o), +(409,418,o), +(407,345,c), +(407,226,o), +(329,127,o), +(231,127,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(299,-185,o), +(410,-131,o), +(445,34,cs), +(551,530,l), +(451,530,l), +(425,407,l), +(410,265,l), +(374,168,l), +(349,53,ls), +(325,-57,o), +(249,-95,o), +(187,-95,c), +(129,-95,o), +(92,-73,o), +(71,-23,c), +(-31,-62,l), +(-9,-136,o), +(68,-185,o), +(175,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(289,40,o), +(382.68,111.273,o), +(413,236,c), +(440,380,l), +(440,483,o), +(377,540,o), +(288,540,c), +(139,540,o), +(21,405,o), +(21,221,c), +(21,115,o), +(94,40,o), +(191,40,c) +); +}, +{ +closed = 1; +nodes = ( +(166,127,o), +(126,165,o), +(126,228,c), +(126,356,o), +(197,453,o), +(304,453,c), +(367,453,o), +(409,418,o), +(407,345,c), +(407,226,o), +(329,127,o), +(231,127,c) +); +} +); +width = 575; +}, +{ +anchors = ( +{ +name = top; +pos = (326.655,530); +} +); +background = { +anchors = ( +{ +name = top; +pos = (326.655,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(319,-189,o), +(433,-125,o), +(472,57,cs), +(573,530,l), +(424,530,l), +(397,404,l), +(383,265,l), +(345,160,l), +(328,80,ls), +(308,-14,o), +(246,-55,o), +(155,-55,c), +(106,-55,o), +(58,-38,o), +(14,-8,c), +(-60,-127,l), +(-12,-165,o), +(66,-189,o), +(153,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(273,44,o), +(350,110,o), +(382,226,c), +(407,385,l), +(410,488,o), +(348,544,o), +(268,544,c), +(119,544,o), +(17,397,o), +(17,234,c), +(17,122,o), +(80,44,o), +(182,44,c) +); +}, +{ +closed = 1; +nodes = ( +(210,178,o), +(171,198,o), +(171,262,c), +(171,328,o), +(216,410,o), +(300,410,c), +(343,410,o), +(382,390,o), +(382,326,c), +(382,260,o), +(337,178,o), +(253,178,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(319,-189,o), +(433,-125,o), +(472,57,cs), +(573,530,l), +(424,530,l), +(397,404,l), +(383,265,l), +(345,160,l), +(328,80,ls), +(308,-14,o), +(246,-55,o), +(155,-55,c), +(106,-55,o), +(58,-38,o), +(14,-8,c), +(-60,-127,l), +(-12,-165,o), +(66,-189,o), +(153,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(273,44,o), +(350,110,o), +(382,226,c), +(407,385,l), +(410,488,o), +(348,544,o), +(268,544,c), +(119,544,o), +(17,397,o), +(17,234,c), +(17,122,o), +(80,44,o), +(182,44,c) +); +}, +{ +closed = 1; +nodes = ( +(210,178,o), +(171,198,o), +(171,262,c), +(171,328,o), +(216,410,o), +(300,410,c), +(343,410,o), +(382,390,o), +(382,326,c), +(382,260,o), +(337,178,o), +(253,178,c) +); +} +); +width = 585; +} +); +unicode = 103; +}, +{ +color = 10; +glyphname = gbreve; +kernLeft = o; +kernRight = q; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(299,-185,o), +(410,-131,o), +(445,34,cs), +(551,530,l), +(451,530,l), +(425,407,l), +(410,265,l), +(374,168,l), +(349,53,ls), +(325,-57,o), +(249,-95,o), +(187,-95,c), +(129,-95,o), +(92,-73,o), +(71,-23,c), +(-31,-62,l), +(-9,-136,o), +(68,-185,o), +(175,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(289,40,o), +(383,111,o), +(413,236,c), +(440,380,l), +(440,483,o), +(377,540,o), +(288,540,c), +(139,540,o), +(21,405,o), +(21,221,c), +(21,115,o), +(94,40,o), +(191,40,c) +); +}, +{ +closed = 1; +nodes = ( +(166,127,o), +(126,165,o), +(126,228,c), +(126,356,o), +(197,453,o), +(304,453,c), +(367,453,o), +(409,418,o), +(407,345,c), +(407,226,o), +(329,127,o), +(231,127,c) +); +}, +{ +closed = 1; +nodes = ( +(440,585,o), +(487,639,o), +(505,725,c), +(435,725,l), +(427,684,o), +(396,660,o), +(349,660,c), +(311,660,o), +(293,677,o), +(293,707,cs), +(293,712,o), +(294,719,o), +(295,725,c), +(225,725,l), +(223,713,o), +(222,702,o), +(222,692,cs), +(222,629,o), +(268,585,o), +(345,585,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = g; +}, +{ +pos = (35,0); +ref = brevecomb; +} +); +width = 575; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(319,-189,o), +(433,-125,o), +(472,57,cs), +(573,530,l), +(424,530,l), +(397,404,l), +(383,265,l), +(345,160,l), +(328,80,ls), +(308,-14,o), +(246,-55,o), +(155,-55,c), +(106,-55,o), +(58,-38,o), +(14,-8,c), +(-60,-127,l), +(-12,-165,o), +(66,-189,o), +(153,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(273,44,o), +(350,110,o), +(382,226,c), +(407,385,l), +(410,488,o), +(348,544,o), +(268,544,c), +(119,544,o), +(17,397,o), +(17,234,c), +(17,122,o), +(80,44,o), +(182,44,c) +); +}, +{ +closed = 1; +nodes = ( +(210,178,o), +(171,198,o), +(171,262,c), +(171,328,o), +(216,410,o), +(300,410,c), +(343,410,o), +(382,390,o), +(382,326,c), +(382,260,o), +(337,178,o), +(253,178,c) +); +}, +{ +closed = 1; +nodes = ( +(453,585,o), +(499,639,o), +(518,730,c), +(427,730,l), +(420,693,o), +(392,671,o), +(355,671,c), +(324,671,o), +(309,686,o), +(309,713,cs), +(309,718,o), +(310,724,o), +(311,730,c), +(220,730,l), +(218,718,o), +(217,708,o), +(217,697,cs), +(217,626,o), +(267,585,o), +(348,585,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = g; +}, +{ +pos = (39,0); +ref = brevecomb; +} +); +width = 585; +} +); +unicode = 287; +}, +{ +color = 10; +glyphname = gcaron; +kernLeft = o; +kernRight = q; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(299,-185,o), +(410,-131,o), +(445,34,cs), +(551,530,l), +(451,530,l), +(425,407,l), +(410,265,l), +(374,168,l), +(349,53,ls), +(325,-57,o), +(249,-95,o), +(187,-95,c), +(129,-95,o), +(92,-73,o), +(71,-23,c), +(-31,-62,l), +(-9,-136,o), +(68,-185,o), +(175,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(289,40,o), +(383,111,o), +(413,236,c), +(440,380,l), +(440,483,o), +(377,540,o), +(288,540,c), +(139,540,o), +(21,405,o), +(21,221,c), +(21,115,o), +(94,40,o), +(191,40,c) +); +}, +{ +closed = 1; +nodes = ( +(166,127,o), +(126,165,o), +(126,228,c), +(126,356,o), +(197,453,o), +(304,453,c), +(367,453,o), +(409,418,o), +(407,345,c), +(407,226,o), +(329,127,o), +(231,127,c) +); +}, +{ +closed = 1; +nodes = ( +(354,585,l), +(353,625,l), +(291,725,l), +(209,725,l), +(279,585,l) +); +}, +{ +closed = 1; +nodes = ( +(391,585,l), +(521,725,l), +(427,725,l), +(323,625,l), +(316,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = g; +}, +{ +pos = (35,0); +ref = caroncomb; +} +); +width = 575; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(319,-189,o), +(433,-125,o), +(472,57,cs), +(573,530,l), +(424,530,l), +(397,404,l), +(383,265,l), +(345,160,l), +(328,80,ls), +(308,-14,o), +(246,-55,o), +(155,-55,c), +(106,-55,o), +(58,-38,o), +(14,-8,c), +(-60,-127,l), +(-12,-165,o), +(66,-189,o), +(153,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(273,44,o), +(350,110,o), +(382,226,c), +(407,385,l), +(410,488,o), +(348,544,o), +(268,544,c), +(119,544,o), +(17,397,o), +(17,234,c), +(17,122,o), +(80,44,o), +(182,44,c) +); +}, +{ +closed = 1; +nodes = ( +(210,178,o), +(171,198,o), +(171,262,c), +(171,328,o), +(216,410,o), +(300,410,c), +(343,410,o), +(382,390,o), +(382,326,c), +(382,260,o), +(337,178,o), +(253,178,c) +); +}, +{ +closed = 1; +nodes = ( +(374,585,l), +(369,629,l), +(301,730,l), +(197,730,l), +(268,585,l) +); +}, +{ +closed = 1; +nodes = ( +(408,585,l), +(541,730,l), +(425,730,l), +(314,629,l), +(302,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = g; +}, +{ +pos = (39,0); +ref = caroncomb; +} +); +width = 585; +} +); +unicode = 487; +}, +{ +color = 10; +glyphname = gcircumflex; +kernLeft = o; +kernRight = q; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(299,-185,o), +(410,-131,o), +(445,34,cs), +(551,530,l), +(451,530,l), +(425,407,l), +(410,265,l), +(374,168,l), +(349,53,ls), +(325,-57,o), +(249,-95,o), +(187,-95,c), +(129,-95,o), +(92,-73,o), +(71,-23,c), +(-31,-62,l), +(-9,-136,o), +(68,-185,o), +(175,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(289,40,o), +(383,111,o), +(413,236,c), +(440,380,l), +(440,483,o), +(377,540,o), +(288,540,c), +(139,540,o), +(21,405,o), +(21,221,c), +(21,115,o), +(94,40,o), +(191,40,c) +); +}, +{ +closed = 1; +nodes = ( +(166,127,o), +(126,165,o), +(126,228,c), +(126,356,o), +(197,453,o), +(304,453,c), +(367,453,o), +(409,418,o), +(407,345,c), +(407,226,o), +(329,127,o), +(231,127,c) +); +}, +{ +closed = 1; +nodes = ( +(273,585,l), +(377,685,l), +(384,725,l), +(309,725,l), +(179,585,l) +); +}, +{ +closed = 1; +nodes = ( +(491,585,l), +(421,725,l), +(346,725,l), +(347,685,l), +(409,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = g; +}, +{ +pos = (36,0); +ref = circumflexcomb; +} +); +width = 575; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(319,-189,o), +(433,-125,o), +(472,57,cs), +(573,530,l), +(424,530,l), +(397,404,l), +(383,265,l), +(345,160,l), +(328,80,ls), +(308,-14,o), +(246,-55,o), +(155,-55,c), +(106,-55,o), +(58,-38,o), +(14,-8,c), +(-60,-127,l), +(-12,-165,o), +(66,-189,o), +(153,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(273,44,o), +(350,110,o), +(382,226,c), +(407,385,l), +(410,488,o), +(348,544,o), +(268,544,c), +(119,544,o), +(17,397,o), +(17,234,c), +(17,122,o), +(80,44,o), +(182,44,c) +); +}, +{ +closed = 1; +nodes = ( +(210,178,o), +(171,198,o), +(171,262,c), +(171,328,o), +(216,410,o), +(300,410,c), +(343,410,o), +(382,390,o), +(382,326,c), +(382,260,o), +(337,178,o), +(253,178,c) +); +}, +{ +closed = 1; +nodes = ( +(282,585,l), +(393,686,l), +(405,730,l), +(299,730,l), +(166,585,l) +); +}, +{ +closed = 1; +nodes = ( +(510,585,l), +(439,730,l), +(333,730,l), +(338,686,l), +(406,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = g; +}, +{ +pos = (39,0); +ref = circumflexcomb; +} +); +width = 585; +} +); +unicode = 285; +}, +{ +color = 6; +glyphname = gcommaaccent; +kernLeft = o; +kernRight = q; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(299,-185,o), +(410,-131,o), +(445,34,cs), +(551,530,l), +(451,530,l), +(425,407,l), +(410,265,l), +(374,168,l), +(349,53,ls), +(325,-57,o), +(249,-95,o), +(187,-95,c), +(129,-95,o), +(92,-73,o), +(71,-23,c), +(-31,-62,l), +(-9,-136,o), +(68,-185,o), +(175,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(289,40,o), +(383,111,o), +(413,236,c), +(440,380,l), +(440,483,o), +(377,540,o), +(288,540,c), +(139,540,o), +(21,405,o), +(21,221,c), +(21,115,o), +(94,40,o), +(191,40,c) +); +}, +{ +closed = 1; +nodes = ( +(166,127,o), +(126,165,o), +(126,228,c), +(126,356,o), +(197,453,o), +(304,453,c), +(367,453,o), +(409,418,o), +(407,345,c), +(407,226,o), +(329,127,o), +(231,127,c) +); +}, +{ +closed = 1; +nodes = ( +(386,602,l), +(429,805,l), +(366,805,l), +(282,602,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(299,-185,o), +(410,-131,o), +(445,34,cs), +(551,530,l), +(451,530,l), +(425,407,l), +(410,265,l), +(374,168,l), +(349,53,ls), +(325,-57,o), +(249,-95,o), +(187,-95,c), +(129,-95,o), +(92,-73,o), +(71,-23,c), +(-31,-62,l), +(-9,-136,o), +(68,-185,o), +(175,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(289,40,o), +(383,111,o), +(413,236,c), +(440,380,l), +(440,483,o), +(377,540,o), +(288,540,c), +(139,540,o), +(21,405,o), +(21,221,c), +(21,115,o), +(94,40,o), +(191,40,c) +); +}, +{ +closed = 1; +nodes = ( +(166,127,o), +(126,165,o), +(126,228,c), +(126,356,o), +(197,453,o), +(304,453,c), +(367,453,o), +(409,418,o), +(407,345,c), +(407,226,o), +(329,127,o), +(231,127,c) +); +}, +{ +closed = 1; +nodes = ( +(386,602,l), +(429,805,l), +(366,805,l), +(282,602,l) +); +} +); +width = 575; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(319,-189,o), +(433,-125,o), +(472,57,cs), +(573,530,l), +(424,530,l), +(397,404,l), +(383,265,l), +(345,160,l), +(328,80,ls), +(308,-14,o), +(246,-55,o), +(155,-55,c), +(106,-55,o), +(58,-38,o), +(14,-8,c), +(-60,-127,l), +(-12,-165,o), +(66,-189,o), +(153,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(273,44,o), +(350,110,o), +(382,226,c), +(407,385,l), +(410,488,o), +(348,544,o), +(268,544,c), +(119,544,o), +(17,397,o), +(17,234,c), +(17,122,o), +(80,44,o), +(182,44,c) +); +}, +{ +closed = 1; +nodes = ( +(210,178,o), +(171,198,o), +(171,262,c), +(171,328,o), +(216,410,o), +(300,410,c), +(343,410,o), +(382,390,o), +(382,326,c), +(382,260,o), +(337,178,o), +(253,178,c) +); +}, +{ +closed = 1; +nodes = ( +(400,584,l), +(446,800,l), +(356,800,l), +(268,584,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(319,-189,o), +(433,-125,o), +(472,57,cs), +(573,530,l), +(424,530,l), +(397,404,l), +(383,265,l), +(345,160,l), +(328,80,ls), +(308,-14,o), +(246,-55,o), +(155,-55,c), +(106,-55,o), +(58,-38,o), +(14,-8,c), +(-60,-127,l), +(-12,-165,o), +(66,-189,o), +(153,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(273,44,o), +(350,110,o), +(382,226,c), +(407,385,l), +(410,488,o), +(348,544,o), +(268,544,c), +(119,544,o), +(17,397,o), +(17,234,c), +(17,122,o), +(80,44,o), +(182,44,c) +); +}, +{ +closed = 1; +nodes = ( +(210,178,o), +(171,198,o), +(171,262,c), +(171,328,o), +(216,410,o), +(300,410,c), +(343,410,o), +(382,390,o), +(382,326,c), +(382,260,o), +(337,178,o), +(253,178,c) +); +}, +{ +closed = 1; +nodes = ( +(400,584,l), +(446,800,l), +(356,800,l), +(268,584,l) +); +} +); +width = 585; +} +); +unicode = 291; +}, +{ +color = 10; +glyphname = gdotaccent; +kernLeft = o; +kernRight = q; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(299,-185,o), +(410,-131,o), +(445,34,cs), +(551,530,l), +(451,530,l), +(425,407,l), +(410,265,l), +(374,168,l), +(349,53,ls), +(325,-57,o), +(249,-95,o), +(187,-95,c), +(129,-95,o), +(92,-73,o), +(71,-23,c), +(-31,-62,l), +(-9,-136,o), +(68,-185,o), +(175,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(289,40,o), +(383,111,o), +(413,236,c), +(440,380,l), +(440,483,o), +(377,540,o), +(288,540,c), +(139,540,o), +(21,405,o), +(21,221,c), +(21,115,o), +(94,40,o), +(191,40,c) +); +}, +{ +closed = 1; +nodes = ( +(166,127,o), +(126,165,o), +(126,228,c), +(126,356,o), +(197,453,o), +(304,453,c), +(367,453,o), +(409,418,o), +(407,345,c), +(407,226,o), +(329,127,o), +(231,127,c) +); +}, +{ +closed = 1; +nodes = ( +(385,602,o), +(413,629,o), +(413,667,c), +(413,702,o), +(390,725,o), +(356,725,c), +(318,725,o), +(291,698,o), +(291,657,c), +(291,625,o), +(314,602,o), +(347,602,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = g; +}, +{ +pos = (34,0); +ref = dotaccentcomb; +} +); +width = 575; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(319,-189,o), +(433,-125,o), +(472,57,cs), +(573,530,l), +(424,530,l), +(397,404,l), +(383,265,l), +(345,160,l), +(328,80,ls), +(308,-14,o), +(246,-55,o), +(155,-55,c), +(106,-55,o), +(58,-38,o), +(14,-8,c), +(-60,-127,l), +(-12,-165,o), +(66,-189,o), +(153,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(273,44,o), +(350,110,o), +(382,226,c), +(407,385,l), +(410,488,o), +(348,544,o), +(268,544,c), +(119,544,o), +(17,397,o), +(17,234,c), +(17,122,o), +(80,44,o), +(182,44,c) +); +}, +{ +closed = 1; +nodes = ( +(210,178,o), +(171,198,o), +(171,262,c), +(171,328,o), +(216,410,o), +(300,410,c), +(343,410,o), +(382,390,o), +(382,326,c), +(382,260,o), +(337,178,o), +(253,178,c) +); +}, +{ +closed = 1; +nodes = ( +(395,588,o), +(431,620,o), +(431,669,c), +(431,711,o), +(404,738,o), +(360,738,c), +(315,738,o), +(279,706,o), +(279,656,c), +(279,615,o), +(306,588,o), +(350,588,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = g; +}, +{ +pos = (37,0); +ref = dotaccentcomb; +} +); +width = 585; +} +); +unicode = 289; +}, +{ +color = 6; +glyphname = h; +kernLeft = l; +kernRight = n; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (218,0); +}, +{ +name = top; +pos = (194,715); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (218,0); +}, +{ +name = top; +pos = (194,715); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(158,309,ls), +(178,403,o), +(243,454,o), +(310,454,c), +(370,454,o), +(407,418,o), +(407,351,cs), +(407,338,o), +(405,324,o), +(402,309,cs), +(336,0,l), +(436,0,l), +(503,313,ls), +(506,328,o), +(509,351,o), +(509,369,cs), +(509,469,o), +(450,540,o), +(353,540,c), +(251,540,o), +(155,451,o), +(125,309,c), +(168,358,l), +(244,715,l), +(144,715,l), +(-8,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(158,309,ls), +(178,403,o), +(243,454,o), +(310,454,c), +(370,454,o), +(407,418,o), +(407,351,cs), +(407,338,o), +(405,324,o), +(402,309,cs), +(336,0,l), +(436,0,l), +(503,313,ls), +(506,328,o), +(509,351,o), +(509,369,cs), +(509,469,o), +(450,540,o), +(353,540,c), +(251,540,o), +(155,451,o), +(125,309,c), +(168,358,l), +(244,715,l), +(144,715,l), +(-8,0,l) +); +} +); +width = 573; +}, +{ +anchors = ( +{ +name = bottom; +pos = (220,0); +}, +{ +name = top; +pos = (207,715); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (220,0); +}, +{ +name = top; +pos = (207,715); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(194,304,ls), +(209,375,o), +(255,413,o), +(308,413,c), +(352,413,o), +(380,387,o), +(380,338,cs), +(380,328,o), +(379,318,o), +(376,304,cs), +(311,0,l), +(460,0,l), +(526,312,ls), +(531,335,o), +(533,356,o), +(533,377,cs), +(533,475,o), +(475,544,o), +(384,544,c), +(283,544,o), +(200,457,o), +(168,304,c), +(201,340,l), +(281,715,l), +(132,715,l), +(-20,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(194,304,ls), +(209,375,o), +(255,413,o), +(308,413,c), +(352,413,o), +(380,387,o), +(380,338,cs), +(380,328,o), +(379,318,o), +(376,304,cs), +(311,0,l), +(460,0,l), +(526,312,ls), +(531,335,o), +(533,356,o), +(533,377,cs), +(533,475,o), +(475,544,o), +(384,544,c), +(283,544,o), +(200,457,o), +(168,304,c), +(201,340,l), +(281,715,l), +(132,715,l), +(-20,0,l) +); +} +); +width = 586; +} +); +unicode = 104; +}, +{ +color = 6; +glyphname = hbar; +kernRight = n; +lastChange = "2024-03-21 14:00:40 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(169,309,ls), +(189,403,o), +(254,454,o), +(321,454,c), +(381,454,o), +(418,418,o), +(418,351,cs), +(418,338,o), +(416,324,o), +(413,309,cs), +(347,0,l), +(447,0,l), +(514,313,ls), +(517,328,o), +(520,351,o), +(520,369,cs), +(520,469,o), +(461,540,o), +(364,540,c), +(262,540,o), +(166,451,o), +(136,309,c), +(179,358,l), +(255,715,l), +(155,715,l), +(3,0,l) +); +}, +{ +closed = 1; +nodes = ( +(339,567,l), +(357,653,l), +(82,653,l), +(64,567,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(169,309,ls), +(189,403,o), +(254,454,o), +(321,454,c), +(381,454,o), +(418,418,o), +(418,351,cs), +(418,338,o), +(416,324,o), +(413,309,cs), +(347,0,l), +(447,0,l), +(514,313,ls), +(517,328,o), +(520,351,o), +(520,369,cs), +(520,469,o), +(461,540,o), +(364,540,c), +(262,540,o), +(166,451,o), +(136,309,c), +(179,358,l), +(255,715,l), +(155,715,l), +(3,0,l) +); +}, +{ +closed = 1; +nodes = ( +(343,580,l), +(357,653,l), +(82,653,l), +(68,580,l) +); +} +); +width = 579; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(137,0,l), +(202,304,ls), +(217,375,o), +(263,413,o), +(316,413,c), +(360,413,o), +(388,387,o), +(388,338,cs), +(388,328,o), +(387,318,o), +(384,304,cs), +(319,0,l), +(468,0,l), +(534,312,ls), +(539,335,o), +(541,356,o), +(541,377,cs), +(541,475,o), +(483,544,o), +(392,544,c), +(291,544,o), +(208,457,o), +(176,304,c), +(209,340,l), +(289,715,l), +(140,715,l), +(-12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(376,560,l), +(400,675,l), +(80,675,l), +(56,560,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(137,0,l), +(202,304,ls), +(217,375,o), +(263,413,o), +(316,413,c), +(360,413,o), +(388,387,o), +(388,338,cs), +(388,328,o), +(387,318,o), +(384,304,cs), +(319,0,l), +(468,0,l), +(534,312,ls), +(539,335,o), +(541,356,o), +(541,377,cs), +(541,475,o), +(483,544,o), +(392,544,c), +(291,544,o), +(208,457,o), +(176,304,c), +(209,340,l), +(289,715,l), +(140,715,l), +(-12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(384,584,l), +(400,675,l), +(80,675,l), +(64,584,l) +); +} +); +width = 594; +} +); +unicode = 295; +}, +{ +color = 10; +glyphname = hcircumflex; +kernLeft = l; +kernRight = n; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(93,0,l), +(159,309,ls), +(179,403,o), +(244,454,o), +(311,454,c), +(371,454,o), +(408,418,o), +(408,351,cs), +(408,338,o), +(406,324,o), +(403,309,cs), +(337,0,l), +(437,0,l), +(504,313,ls), +(507,328,o), +(510,351,o), +(510,369,cs), +(510,469,o), +(451,540,o), +(354,540,c), +(252,540,o), +(156,451,o), +(126,309,c), +(169,358,l), +(245,715,l), +(145,715,l), +(-7,0,l) +); +}, +{ +closed = 1; +nodes = ( +(128,760,l), +(249,839,l), +(264,870,l), +(159,870,l), +(21,760,l) +); +}, +{ +closed = 1; +nodes = ( +(387,760,l), +(297,870,l), +(192,870,l), +(206,839,l), +(294,760,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = h; +}, +{ +pos = (-130,25); +ref = circumflexcomb.case; +} +); +width = 573; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(130,0,l), +(195,304,ls), +(210,375,o), +(256,413,o), +(309,413,c), +(353,413,o), +(381,387,o), +(381,338,cs), +(381,328,o), +(380,318,o), +(377,304,cs), +(312,0,l), +(461,0,l), +(527,312,ls), +(532,335,o), +(534,356,o), +(534,377,cs), +(534,475,o), +(476,544,o), +(385,544,c), +(284,544,o), +(201,457,o), +(169,304,c), +(202,340,l), +(282,715,l), +(133,715,l), +(-19,0,l) +); +}, +{ +closed = 1; +nodes = ( +(150,760,l), +(265,837,l), +(287,875,l), +(158,875,l), +(23,760,l) +); +}, +{ +closed = 1; +nodes = ( +(411,760,l), +(326,875,l), +(197,875,l), +(213,837,l), +(294,760,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = h; +}, +{ +pos = (-117,25); +ref = circumflexcomb.case; +} +); +width = 586; +} +); +unicode = 293; +}, +{ +color = 10; +glyphname = i; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 14:49:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (43,0); +}, +{ +name = ogonek; +pos = (92,0); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (43,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(93,0,l), +(206,530,l), +(106,530,l), +(-7,0,l) +); +}, +{ +closed = 1; +nodes = ( +(218,602,o), +(245,629,o), +(245,668,c), +(245,702,o), +(222,725,o), +(188,725,c), +(150,725,o), +(123,698,o), +(123,658,c), +(123,625,o), +(146,602,o), +(180,602,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(218,602,o), +(245,629,o), +(245,668,cs), +(245,702,o), +(222,725,o), +(188,725,cs), +(150,725,o), +(123,698,o), +(123,658,cs), +(123,625,o), +(146,602,o), +(180,602,cs) +); +}, +{ +ref = idotless; +} +); +width = 229; +}, +{ +anchors = ( +{ +name = bottom; +pos = (56,0); +}, +{ +name = ogonek; +pos = (129,0); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (56,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(131,0,l), +(244,530,l), +(95,530,l), +(-18,0,l) +); +}, +{ +closed = 1; +nodes = ( +(245,580,o), +(287,617,o), +(287,675,cs), +(287,723,o), +(256,755,o), +(204,755,cs), +(152,755,o), +(110,717,o), +(110,659,cs), +(110,611,o), +(141,580,o), +(192,580,cs) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(245,580,o), +(287,617,o), +(287,675,cs), +(287,723,o), +(256,755,o), +(204,755,cs), +(152,755,o), +(110,717,o), +(110,659,cs), +(110,611,o), +(141,580,o), +(192,580,cs) +); +}, +{ +ref = idotless; +} +); +width = 254; +} +); +unicode = 105; +}, +{ +color = 6; +glyphname = idotless; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 14:05:16 +0000"; +layers = ( +{ +anchors = ( +{ +name = ogonek; +pos = (92,0); +}, +{ +name = top; +pos = (154,530); +} +); +background = { +anchors = ( +{ +name = top; +pos = (154,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +} +); +width = 229; +}, +{ +anchors = ( +{ +name = ogonek; +pos = (129,0); +}, +{ +name = top; +pos = (167.655,530); +} +); +background = { +anchors = ( +{ +name = top; +pos = (167.655,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +} +); +width = 254; +} +); +unicode = 305; +}, +{ +color = 10; +glyphname = iacute; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 14:49:53 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(199,585,l), +(336,725,l), +(210,725,l), +(110,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-147,0); +ref = acutecomb; +} +); +width = 229; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(224,585,l), +(380,730,l), +(219,730,l), +(109,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-110,0); +ref = acutecomb; +} +); +width = 254; +} +); +unicode = 237; +}, +{ +color = 10; +glyphname = ibreve; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(270,585,o), +(317,639,o), +(335,725,c), +(265,725,l), +(257,684,o), +(226,660,o), +(179,660,c), +(141,660,o), +(123,677,o), +(123,707,cs), +(123,712,o), +(124,719,o), +(125,725,c), +(55,725,l), +(53,713,o), +(52,702,o), +(52,692,cs), +(52,629,o), +(98,585,o), +(175,585,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-135,0); +ref = brevecomb; +} +); +width = 229; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(294,585,o), +(340,639,o), +(359,730,c), +(268,730,l), +(261,693,o), +(233,671,o), +(196,671,c), +(165,671,o), +(150,686,o), +(150,713,cs), +(150,718,o), +(151,724,o), +(152,730,c), +(61,730,l), +(59,718,o), +(58,708,o), +(58,697,cs), +(58,626,o), +(108,585,o), +(189,585,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-120,0); +ref = brevecomb; +} +); +width = 254; +} +); +unicode = 301; +}, +{ +color = 10; +glyphname = icircumflex; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(103,585,l), +(207,685,l), +(214,725,l), +(139,725,l), +(9,585,l) +); +}, +{ +closed = 1; +nodes = ( +(321,585,l), +(251,725,l), +(176,725,l), +(177,685,l), +(239,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-134,0); +ref = circumflexcomb; +} +); +width = 229; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(123,585,l), +(234,686,l), +(246,730,l), +(140,730,l), +(7,585,l) +); +}, +{ +closed = 1; +nodes = ( +(351,585,l), +(280,730,l), +(174,730,l), +(179,686,l), +(247,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-120,0); +ref = circumflexcomb; +} +); +width = 254; +} +); +unicode = 238; +}, +{ +color = 10; +glyphname = idieresis; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(93,0,l), +(206,530,l), +(106,530,l), +(-7,0,l) +); +}, +{ +closed = 1; +nodes = ( +(121,602,o), +(147,627,o), +(147,662,c), +(147,694,o), +(126,715,o), +(95,715,c), +(60,715,o), +(35,690,o), +(35,653,c), +(35,623,o), +(56,602,o), +(86,602,c) +); +}, +{ +closed = 1; +nodes = ( +(303,602,o), +(329,627,o), +(329,662,c), +(329,694,o), +(308,715,o), +(277,715,c), +(242,715,o), +(217,690,o), +(217,653,c), +(217,623,o), +(238,602,o), +(268,602,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-136,0); +ref = dieresiscomb; +} +); +width = 229; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(130,0,l), +(243,530,l), +(94,530,l), +(-19,0,l) +); +}, +{ +closed = 1; +nodes = ( +(135,588,o), +(169,618,o), +(169,664,c), +(169,703,o), +(144,728,o), +(103,728,c), +(61,728,o), +(27,698,o), +(27,652,c), +(27,613,o), +(52,588,o), +(93,588,c) +); +}, +{ +closed = 1; +nodes = ( +(331,588,o), +(365,618,o), +(365,664,c), +(365,703,o), +(340,728,o), +(299,728,c), +(257,728,o), +(223,698,o), +(223,652,c), +(223,613,o), +(248,588,o), +(289,588,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-122,0); +ref = dieresiscomb; +} +); +width = 254; +} +); +unicode = 239; +}, +{ +color = 10; +glyphname = idotaccent; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-136,0); +ref = dotaccentcomb; +} +); +width = 229; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-122,0); +ref = dotaccentcomb; +} +); +width = 254; +} +); +}, +{ +color = 10; +glyphname = idotbelow; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(46,-195,o), +(74,-168,o), +(74,-130,c), +(74,-95,o), +(51,-72,o), +(17,-72,c), +(-21,-72,o), +(-48,-99,o), +(-48,-140,c), +(-48,-172,o), +(-25,-195,o), +(8,-195,c) +); +}, +{ +closed = 1; +nodes = ( +(217,602,o), +(244,629,o), +(244,668,c), +(244,702,o), +(221,725,o), +(187,725,c), +(149,725,o), +(122,698,o), +(122,658,c), +(122,625,o), +(145,602,o), +(179,602,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = i; +}, +{ +pos = (-133,0); +ref = dotbelow; +} +); +width = 229; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(131,0,l), +(244,530,l), +(95,530,l), +(-18,0,l) +); +}, +{ +closed = 1; +nodes = ( +(70,-198,o), +(106,-166,o), +(106,-117,c), +(106,-75,o), +(79,-48,o), +(35,-48,c), +(-10,-48,o), +(-46,-80,o), +(-46,-130,c), +(-46,-171,o), +(-19,-198,o), +(25,-198,c) +); +}, +{ +closed = 1; +nodes = ( +(245,580,o), +(287,617,o), +(287,675,c), +(287,723,o), +(256,755,o), +(204,755,c), +(152,755,o), +(110,717,o), +(110,659,c), +(110,611,o), +(141,580,o), +(192,580,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = i; +}, +{ +pos = (-121,0); +ref = dotbelow; +} +); +width = 254; +} +); +unicode = 7883; +}, +{ +color = 10; +glyphname = igrave; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 14:48:12 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(215,585,l), +(175,725,l), +(54,725,l), +(134,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-136,0); +ref = gravecomb; +} +); +width = 229; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(242,585,l), +(193,730,l), +(43,730,l), +(140,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-68,0); +ref = gravecomb; +} +); +width = 254; +} +); +unicode = 236; +}, +{ +color = 10; +glyphname = imacron; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(93,0,l), +(206,530,l), +(106,530,l), +(-7,0,l) +); +}, +{ +closed = 1; +nodes = ( +(312,621,l), +(330,705,l), +(54,705,l), +(36,621,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-136,0); +ref = macroncomb; +} +); +width = 229; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(330,603,l), +(355,718,l), +(61,718,l), +(36,603,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-121,0); +ref = macroncomb; +} +); +width = 254; +} +); +unicode = 299; +}, +{ +color = 10; +glyphname = iogonek; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 14:05:16 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(-2,-185,o), +(35,-176,o), +(57,-165,c), +(65,-84,l), +(40,-96,o), +(9,-106,o), +(-17,-106,c), +(-28,-106,o), +(-34,-101,o), +(-34,-93,cs), +(-34,-72,o), +(3,-38,o), +(92,0,c), +(-8,0,l), +(-93,-35,o), +(-122,-74,o), +(-122,-118,c), +(-122,-155,o), +(-96,-185,o), +(-34,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(217,602,o), +(244,629,o), +(244,668,c), +(244,702,o), +(221,725,o), +(187,725,c), +(149,725,o), +(122,698,o), +(122,658,c), +(122,625,o), +(145,602,o), +(179,602,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-136,0); +ref = dotaccentcomb; +}, +{ +pos = (-138,0); +ref = ogonekcomb; +} +); +width = 229; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(131,0,l), +(244,530,l), +(95,530,l), +(-18,0,l) +); +}, +{ +closed = 1; +nodes = ( +(29,-190,o), +(64,-183,o), +(95,-170,c), +(106,-75,l), +(84,-87,o), +(56,-96,o), +(37,-96,c), +(24,-96,o), +(17,-90,o), +(17,-82,cs), +(17,-65,o), +(42,-36,o), +(131,0,c), +(26,0,l), +(-67,-36,o), +(-98,-82,o), +(-98,-121,c), +(-98,-158,o), +(-68,-190,o), +(1,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(245,580,o), +(287,617,o), +(287,675,c), +(287,723,o), +(256,755,o), +(204,755,c), +(152,755,o), +(110,717,o), +(110,659,c), +(110,611,o), +(141,580,o), +(192,580,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-122,0); +ref = dotaccentcomb; +}, +{ +pos = (-137,0); +ref = ogonekcomb; +} +); +width = 254; +} +); +unicode = 303; +}, +{ +color = 10; +glyphname = itilde; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(86,585,l), +(90,624,o), +(99,642,o), +(124,642,c), +(156,642,o), +(172,585,o), +(233,585,c), +(296,585,o), +(330,639,o), +(342,725,c), +(274,725,l), +(271,686,o), +(261,668,o), +(236,668,c), +(205,668,o), +(188,725,o), +(127,725,c), +(64,725,o), +(31,671,o), +(18,585,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-135,0); +ref = tildecomb; +} +); +width = 229; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(130,0,l), +(243,530,l), +(94,530,l), +(-19,0,l) +); +}, +{ +closed = 1; +nodes = ( +(105,585,l), +(106,612,o), +(121,624,o), +(140,624,c), +(174,624,o), +(189,585,o), +(247,585,c), +(309,585,o), +(356,641,o), +(370,730,c), +(286,730,l), +(285,702,o), +(271,690,o), +(252,690,c), +(220,690,o), +(202,730,o), +(144,730,c), +(81,730,o), +(34,674,o), +(21,585,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-121,0); +ref = tildecomb; +} +); +width = 254; +} +); +unicode = 297; +}, +{ +color = 10; +glyphname = ij; +kernLeft = n; +kernRight = q; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(228,-185,o), +(294,-138,o), +(319,-21,cs), +(436,530,l), +(336,530,l), +(219,-17,ls), +(208,-70,o), +(175,-94,o), +(130,-94,c), +(107,-94,o), +(87,-88,o), +(67,-79,c), +(48,-168,l), +(74,-178,o), +(102,-185,o), +(134,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(93,0,l), +(206,530,l), +(106,530,l), +(-7,0,l) +); +}, +{ +closed = 1; +nodes = ( +(218,602,o), +(245,629,o), +(245,668,c), +(245,702,o), +(222,725,o), +(188,725,c), +(150,725,o), +(123,698,o), +(123,658,c), +(123,625,o), +(146,602,o), +(180,602,c) +); +}, +{ +closed = 1; +nodes = ( +(448,602,o), +(475,629,o), +(475,668,c), +(475,702,o), +(452,725,o), +(418,725,c), +(380,725,o), +(353,698,o), +(353,658,c), +(353,625,o), +(376,602,o), +(410,602,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = i; +}, +{ +pos = (229,0); +ref = j; +} +); +width = 458; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(279,-189,o), +(358,-143,o), +(385,-14,cs), +(501,530,l), +(352,530,l), +(241,9,ls), +(232,-32,o), +(208,-54,o), +(167,-54,c), +(142,-54,o), +(120,-49,o), +(100,-41,c), +(72,-172,l), +(97,-183,o), +(136,-189,o), +(176,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(131,0,l), +(244,530,l), +(95,530,l), +(-18,0,l) +); +}, +{ +closed = 1; +nodes = ( +(245,580,o), +(287,617,o), +(287,675,c), +(287,723,o), +(256,755,o), +(204,755,c), +(152,755,o), +(110,717,o), +(110,659,c), +(110,611,o), +(141,580,o), +(192,580,c) +); +}, +{ +closed = 1; +nodes = ( +(502,580,o), +(544,617,o), +(544,675,c), +(544,723,o), +(513,755,o), +(461,755,c), +(409,755,o), +(367,717,o), +(367,659,c), +(367,611,o), +(398,580,o), +(449,580,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = i; +}, +{ +pos = (254,0); +ref = j; +} +); +width = 511; +} +); +unicode = 307; +}, +{ +color = 10; +glyphname = j; +kernLeft = j; +kernRight = q; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-3,-185,o), +(63,-138,o), +(88,-21,cs), +(205,530,l), +(105,530,l), +(-12,-17,ls), +(-23,-70,o), +(-56,-94,o), +(-101,-94,c), +(-124,-94,o), +(-144,-88,o), +(-164,-79,c), +(-183,-168,l), +(-157,-178,o), +(-129,-185,o), +(-97,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(217,602,o), +(244,629,o), +(244,668,c), +(244,702,o), +(221,725,o), +(187,725,c), +(149,725,o), +(122,698,o), +(122,658,c), +(122,625,o), +(145,602,o), +(179,602,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-136,0); +ref = dotaccentcomb; +} +); +width = 229; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(21,-189,o), +(100,-143,o), +(127,-14,cs), +(243,530,l), +(94,530,l), +(-17,9,ls), +(-26,-32,o), +(-50,-54,o), +(-91,-54,c), +(-116,-54,o), +(-138,-49,o), +(-158,-41,c), +(-186,-172,l), +(-161,-183,o), +(-122,-189,o), +(-82,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(244,580,o), +(286,617,o), +(286,675,c), +(286,723,o), +(255,755,o), +(203,755,c), +(151,755,o), +(109,717,o), +(109,659,c), +(109,611,o), +(140,580,o), +(191,580,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-122,0); +ref = dotaccentcomb; +} +); +width = 257; +} +); +unicode = 106; +}, +{ +color = 6; +glyphname = jdotless; +kernLeft = j; +kernRight = q; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (154,530); +} +); +background = { +anchors = ( +{ +name = top; +pos = (154,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(-3,-185,o), +(63,-138,o), +(88,-21,cs), +(205,530,l), +(105,530,l), +(-12,-17,ls), +(-23,-70,o), +(-56,-94,o), +(-101,-94,c), +(-124,-94,o), +(-144,-88,o), +(-164,-79,c), +(-183,-168,l), +(-157,-178,o), +(-129,-185,o), +(-97,-185,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(-3,-185,o), +(63,-138,o), +(88,-21,cs), +(205,530,l), +(105,530,l), +(-12,-17,ls), +(-23,-70,o), +(-56,-94,o), +(-101,-94,c), +(-124,-94,o), +(-144,-88,o), +(-164,-79,c), +(-183,-168,l), +(-157,-178,o), +(-129,-185,o), +(-97,-185,c) +); +} +); +width = 229; +}, +{ +anchors = ( +{ +name = top; +pos = (168,530); +} +); +background = { +anchors = ( +{ +name = top; +pos = (168,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(21,-189,o), +(100,-143,o), +(127,-14,cs), +(243,530,l), +(94,530,l), +(-17,9,ls), +(-26,-32,o), +(-50,-54,o), +(-91,-54,c), +(-116,-54,o), +(-138,-49,o), +(-158,-41,c), +(-186,-172,l), +(-161,-183,o), +(-122,-189,o), +(-82,-189,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(21,-189,o), +(100,-143,o), +(127,-14,cs), +(243,530,l), +(94,530,l), +(-17,9,ls), +(-26,-32,o), +(-50,-54,o), +(-91,-54,c), +(-116,-54,o), +(-138,-49,o), +(-158,-41,c), +(-186,-172,l), +(-161,-183,o), +(-122,-189,o), +(-82,-189,c) +); +} +); +width = 257; +} +); +unicode = 567; +}, +{ +color = 10; +glyphname = jcircumflex; +kernLeft = j; +kernRight = q; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-3,-185,o), +(63,-138,o), +(88,-21,cs), +(205,530,l), +(105,530,l), +(-12,-17,ls), +(-23,-70,o), +(-56,-94,o), +(-101,-94,c), +(-124,-94,o), +(-144,-88,o), +(-164,-79,c), +(-183,-168,l), +(-157,-178,o), +(-129,-185,o), +(-97,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(103,585,l), +(207,685,l), +(214,725,l), +(139,725,l), +(9,585,l) +); +}, +{ +closed = 1; +nodes = ( +(321,585,l), +(251,725,l), +(176,725,l), +(177,685,l), +(239,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-134,0); +ref = circumflexcomb; +} +); +width = 229; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(21,-189,o), +(100,-143,o), +(127,-14,cs), +(243,530,l), +(94,530,l), +(-17,9,ls), +(-26,-32,o), +(-50,-54,o), +(-91,-54,c), +(-116,-54,o), +(-138,-49,o), +(-158,-41,c), +(-186,-172,l), +(-161,-183,o), +(-122,-189,o), +(-82,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(123,585,l), +(234,686,l), +(246,730,l), +(140,730,l), +(7,585,l) +); +}, +{ +closed = 1; +nodes = ( +(351,585,l), +(280,730,l), +(174,730,l), +(179,686,l), +(247,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-120,0); +ref = circumflexcomb; +} +); +width = 257; +} +); +unicode = 309; +}, +{ +color = 6; +glyphname = k; +kernLeft = l; +kernRight = x; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (203,0); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (203,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(533,530,l), +(403,530,l), +(144,276,l), +(114,136,l) +); +}, +{ +closed = 1; +nodes = ( +(92,0,l), +(244,715,l), +(144,715,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(433,0,l), +(272,307,l), +(202,240,l), +(320,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(533,530,l), +(403,530,l), +(144,276,l), +(114,136,l) +); +}, +{ +closed = 1; +nodes = ( +(92,0,l), +(244,715,l), +(144,715,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(433,0,l), +(272,307,l), +(202,240,l), +(320,0,l) +); +} +); +width = 514; +}, +{ +anchors = ( +{ +name = bottom; +pos = (214,0); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (214,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(571,530,l), +(383,530,l), +(190,341,l), +(147,138,l) +); +}, +{ +closed = 1; +nodes = ( +(129,0,l), +(281,715,l), +(132,715,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(471,0,l), +(310,343,l), +(208,244,l), +(313,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(571,530,l), +(383,530,l), +(190,341,l), +(147,138,l) +); +}, +{ +closed = 1; +nodes = ( +(129,0,l), +(281,715,l), +(132,715,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(471,0,l), +(310,343,l), +(208,244,l), +(313,0,l) +); +} +); +width = 544; +} +); +unicode = 107; +}, +{ +color = 10; +glyphname = kcommaaccent; +kernLeft = l; +kernRight = x; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,530,l), +(403,530,l), +(144,276,l), +(114,136,l) +); +}, +{ +closed = 1; +nodes = ( +(161,-275,l), +(245,-72,l), +(141,-72,l), +(98,-275,l) +); +}, +{ +closed = 1; +nodes = ( +(92,0,l), +(244,715,l), +(144,715,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(433,0,l), +(272,307,l), +(202,240,l), +(320,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = k; +}, +{ +pos = (26,0); +ref = commaaccentcomb; +} +); +width = 514; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(571,530,l), +(383,530,l), +(190,341,l), +(147,138,l) +); +}, +{ +closed = 1; +nodes = ( +(185,-270,l), +(273,-54,l), +(141,-54,l), +(95,-270,l) +); +}, +{ +closed = 1; +nodes = ( +(129,0,l), +(281,715,l), +(132,715,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(471,0,l), +(310,343,l), +(208,244,l), +(313,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = k; +}, +{ +pos = (37,0); +ref = commaaccentcomb; +} +); +width = 544; +} +); +unicode = 311; +}, +{ +color = 6; +glyphname = kgreenlandic; +kernLeft = n; +kernRight = x; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (203,0); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (203,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(533,530,l), +(403,530,l), +(144,276,l), +(114,136,l) +); +}, +{ +closed = 1; +nodes = ( +(92,0,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(433,0,l), +(272,307,l), +(202,240,l), +(320,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(533,530,l), +(403,530,l), +(144,276,l), +(114,136,l) +); +}, +{ +closed = 1; +nodes = ( +(92,0,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(433,0,l), +(272,307,l), +(202,240,l), +(320,0,l) +); +} +); +width = 514; +}, +{ +anchors = ( +{ +name = bottom; +pos = (214,0); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (214,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(571,530,l), +(383,530,l), +(190,341,l), +(147,138,l) +); +}, +{ +closed = 1; +nodes = ( +(129,0,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(471,0,l), +(310,343,l), +(208,244,l), +(313,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(571,530,l), +(383,530,l), +(190,341,l), +(147,138,l) +); +}, +{ +closed = 1; +nodes = ( +(129,0,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(471,0,l), +(310,343,l), +(208,244,l), +(313,0,l) +); +} +); +width = 544; +} +); +unicode = 312; +}, +{ +color = 6; +glyphname = l; +kernLeft = l; +kernRight = l; +lastChange = "2024-03-22 13:33:34 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (40,0); +}, +{ +name = center; +pos = (96,265); +}, +{ +name = top; +pos = (192,715); +}, +{ +name = topright; +pos = (279,715); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (42,0); +}, +{ +name = top; +pos = (193.978,715); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(244,715,l), +(144,715,l), +(-8,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(244,715,l), +(144,715,l), +(-8,0,l) +); +} +); +width = 229; +}, +{ +anchors = ( +{ +name = bottom; +pos = (47,0); +}, +{ +name = center; +pos = (103,265); +}, +{ +name = top; +pos = (199,715); +}, +{ +name = topright; +pos = (306,715); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (55,0); +}, +{ +name = top; +pos = (206.978,715); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(281,715,l), +(132,715,l), +(-20,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(281,715,l), +(132,715,l), +(-20,0,l) +); +} +); +width = 254; +} +); +unicode = 108; +}, +{ +color = 10; +glyphname = lacute; +kernLeft = l; +kernRight = l; +lastChange = "2024-03-21 14:21:18 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(93,0,l), +(245,715,l), +(145,715,l), +(-7,0,l) +); +}, +{ +closed = 1; +nodes = ( +(240,770,l), +(377,910,l), +(251,910,l), +(151,770,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = l; +}, +{ +pos = (-131,25); +ref = acutecomb.case; +} +); +width = 229; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(281,715,l), +(132,715,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(263,770,l), +(419,915,l), +(258,915,l), +(148,770,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = l; +}, +{ +pos = (-123,25); +ref = acutecomb.case; +} +); +width = 254; +} +); +unicode = 314; +}, +{ +color = 10; +glyphname = lcaron; +kernLeft = l; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(244,715,l), +(144,715,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(301,442,l), +(403,715,l), +(299,715,l), +(241,442,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = l; +}, +{ +pos = (17,0); +ref = caroncomb.alt; +} +); +width = 229; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(281,715,l), +(132,715,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(349,408,l), +(476,715,l), +(326,715,l), +(261,408,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = l; +}, +{ +pos = (58,0); +ref = caroncomb.alt; +} +); +width = 254; +} +); +unicode = 318; +}, +{ +color = 10; +glyphname = lcommaaccent; +kernLeft = l; +kernRight = l; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(244,715,l), +(144,715,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(0,-275,l), +(84,-72,l), +(-20,-72,l), +(-63,-275,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = l; +}, +{ +pos = (-137,0); +ref = commaaccentcomb; +} +); +width = 229; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(281,715,l), +(132,715,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(26,-270,l), +(114,-54,l), +(-18,-54,l), +(-64,-270,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = l; +}, +{ +pos = (-130,0); +ref = commaaccentcomb; +} +); +width = 254; +} +); +unicode = 316; +}, +{ +color = 10; +glyphname = ldot; +kernLeft = l; +lastChange = "2024-03-21 14:01:37 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(244,715,l), +(144,715,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(316,231,o), +(346,260,o), +(346,302,c), +(346,339,o), +(321,364,o), +(284,364,c), +(243,364,o), +(214,335,o), +(214,291,c), +(214,256,o), +(239,231,o), +(275,231,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +alignment = -1; +ref = l; +}, +{ +alignment = -1; +pos = (182,3); +ref = periodcentered.loclCAT; +} +); +width = 352; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(281,715,l), +(132,715,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(350,214,o), +(392,251,o), +(392,309,c), +(392,357,o), +(361,389,o), +(309,389,c), +(257,389,o), +(215,351,o), +(215,293,c), +(215,245,o), +(246,214,o), +(297,214,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +alignment = -1; +ref = l; +}, +{ +alignment = -1; +pos = (186,0); +ref = periodcentered.loclCAT; +} +); +width = 375; +} +); +unicode = 320; +}, +{ +color = 6; +glyphname = lslash; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(108,0,l), +(260,715,l), +(160,715,l), +(8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(263,377,l), +(285,481,l), +(24,356,l), +(2,252,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(108,0,l), +(260,715,l), +(160,715,l), +(8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(263,377,l), +(285,481,l), +(24,356,l), +(2,252,l) +); +} +); +width = 256; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(140,715,l), +(289,715,l), +(137,0,l), +(-12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(268,339,l), +(293,467,l), +(9,340,l), +(-18,212,l) +); +}, +{ +closed = 1; +nodes = ( +(137,0,l), +(289,715,l), +(140,715,l), +(-12,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(137,0,l), +(289,715,l), +(140,715,l), +(-12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(268,339,l), +(293,467,l), +(9,340,l), +(-18,212,l) +); +} +); +width = 277; +} +); +unicode = 322; +}, +{ +color = 6; +glyphname = m; +kernLeft = n; +kernRight = n; +lastChange = "2024-03-22 13:33:36 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(162,329,ls), +(179,410,o), +(237,453,o), +(296,453,c), +(345,453,o), +(380,423,o), +(380,366,cs), +(380,354,o), +(378,337,o), +(376,329,cs), +(306,0,l), +(406,0,l), +(476,329,ls), +(493,410,o), +(551,453,o), +(610,453,c), +(659,453,o), +(694,423,o), +(694,366,cs), +(694,354,o), +(692,337,o), +(690,329,cs), +(620,0,l), +(720,0,l), +(791,332,ls), +(794,347,o), +(796,367,o), +(796,383,cs), +(796,474,o), +(742,540,o), +(656,540,c), +(559,540,o), +(461,464,o), +(433,334,c), +(479,381,l), +(479,472,o), +(428,540,o), +(341,540,c), +(245,540,o), +(157,459,o), +(129,329,c), +(175,389,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(162,329,ls), +(179,410,o), +(237,453,o), +(296,453,c), +(345,453,o), +(380,423,o), +(380,366,cs), +(380,354,o), +(378,337,o), +(376,329,cs), +(306,0,l), +(406,0,l), +(476,329,ls), +(493,410,o), +(551,453,o), +(610,453,c), +(659,453,o), +(694,423,o), +(694,366,cs), +(694,354,o), +(692,337,o), +(690,329,cs), +(620,0,l), +(720,0,l), +(791,332,ls), +(794,347,o), +(796,367,o), +(796,383,cs), +(796,474,o), +(742,540,o), +(656,540,c), +(559,540,o), +(461,464,o), +(433,334,c), +(479,381,l), +(479,472,o), +(428,540,o), +(341,540,c), +(245,540,o), +(157,459,o), +(129,329,c), +(175,389,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +} +); +width = 857; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(194,306,ls), +(209,376,o), +(250,413,o), +(297,413,c), +(335,413,o), +(358,389,o), +(358,344,cs), +(358,333,o), +(357,320,o), +(354,306,cs), +(289,0,l), +(439,0,l), +(504,306,ls), +(519,376,o), +(560,413,o), +(607,413,c), +(645,413,o), +(668,389,o), +(668,343,cs), +(668,332,o), +(667,320,o), +(664,306,cs), +(599,0,l), +(749,0,l), +(814,306,ls), +(819,329,o), +(821,351,o), +(821,374,c), +(821,471,o), +(765,544,o), +(678,544,c), +(577,544,o), +(489,458,o), +(457,306,c), +(506,374,l), +(508,472,o), +(457,544,o), +(374,544,c), +(278,544,o), +(200,458,o), +(168,306,c), +(209,375,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(194,306,ls), +(209,376,o), +(250,413,o), +(297,413,c), +(335,413,o), +(358,389,o), +(358,344,cs), +(358,333,o), +(357,320,o), +(354,306,cs), +(289,0,l), +(439,0,l), +(504,306,ls), +(519,376,o), +(560,413,o), +(607,413,c), +(645,413,o), +(668,389,o), +(668,343,cs), +(668,332,o), +(667,320,o), +(664,306,cs), +(599,0,l), +(749,0,l), +(814,306,ls), +(819,329,o), +(821,351,o), +(821,374,c), +(821,471,o), +(765,544,o), +(678,544,c), +(577,544,o), +(489,458,o), +(457,306,c), +(506,374,l), +(508,472,o), +(457,544,o), +(374,544,c), +(278,544,o), +(200,458,o), +(168,306,c), +(209,375,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +} +); +width = 875; +} +); +unicode = 109; +}, +{ +color = 6; +glyphname = n; +kernLeft = n; +kernRight = n; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (218,0); +}, +{ +name = top; +pos = (331,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (218,0); +}, +{ +name = top; +pos = (331,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(158,309,ls), +(178,403,o), +(243,454,o), +(310,454,c), +(370,454,o), +(407,418,o), +(407,351,cs), +(407,338,o), +(405,324,o), +(402,309,cs), +(336,0,l), +(436,0,l), +(503,313,ls), +(506,328,o), +(509,351,o), +(509,369,cs), +(509,469,o), +(450,540,o), +(353,540,c), +(251,540,o), +(155,451,o), +(125,309,c), +(168,358,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(158,309,ls), +(178,403,o), +(243,454,o), +(310,454,c), +(370,454,o), +(407,418,o), +(407,351,cs), +(407,338,o), +(405,324,o), +(402,309,cs), +(336,0,l), +(436,0,l), +(503,313,ls), +(506,328,o), +(509,351,o), +(509,369,cs), +(509,469,o), +(450,540,o), +(353,540,c), +(251,540,o), +(155,451,o), +(125,309,c), +(168,358,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +} +); +width = 573; +}, +{ +anchors = ( +{ +name = bottom; +pos = (220,0); +}, +{ +name = top; +pos = (333,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (220,0); +}, +{ +name = top; +pos = (333,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(194,304,ls), +(209,375,o), +(255,413,o), +(308,413,c), +(352,413,o), +(380,387,o), +(380,338,cs), +(380,328,o), +(379,318,o), +(376,304,cs), +(311,0,l), +(460,0,l), +(526,312,ls), +(531,335,o), +(533,356,o), +(533,377,cs), +(533,475,o), +(475,544,o), +(384,544,c), +(283,544,o), +(200,457,o), +(168,304,c), +(201,340,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(194,304,ls), +(209,375,o), +(255,413,o), +(308,413,c), +(352,413,o), +(380,387,o), +(380,338,cs), +(380,328,o), +(379,318,o), +(376,304,cs), +(311,0,l), +(460,0,l), +(526,312,ls), +(531,335,o), +(533,356,o), +(533,377,cs), +(533,475,o), +(475,544,o), +(384,544,c), +(283,544,o), +(200,457,o), +(168,304,c), +(201,340,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +} +); +width = 586; +} +); +unicode = 110; +}, +{ +color = 10; +glyphname = nacute; +kernLeft = n; +kernRight = n; +lastChange = "2024-03-21 14:49:53 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(158,309,ls), +(178,403,o), +(243,454,o), +(310,454,c), +(370,454,o), +(407,418,o), +(407,351,cs), +(407,338,o), +(405,324,o), +(402,309,cs), +(336,0,l), +(436,0,l), +(503,313,ls), +(506,328,o), +(509,351,o), +(509,369,cs), +(509,469,o), +(450,540,o), +(353,540,c), +(251,540,o), +(155,451,o), +(125,309,c), +(168,358,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(376,585,l), +(513,725,l), +(387,725,l), +(287,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = n; +}, +{ +pos = (30,0); +ref = acutecomb; +} +); +width = 573; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(194,304,ls), +(209,375,o), +(255,413,o), +(308,413,c), +(352,413,o), +(380,387,o), +(380,338,cs), +(380,328,o), +(379,318,o), +(376,304,cs), +(311,0,l), +(460,0,l), +(526,312,ls), +(531,335,o), +(533,356,o), +(533,377,cs), +(533,475,o), +(475,544,o), +(384,544,c), +(283,544,o), +(200,457,o), +(168,304,c), +(201,340,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(389,585,l), +(545,730,l), +(384,730,l), +(274,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = n; +}, +{ +pos = (55,0); +ref = acutecomb; +} +); +width = 586; +} +); +unicode = 324; +}, +{ +color = 6; +glyphname = napostrophe; +kernRight = n; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(267,0,l), +(333,309,ls), +(353,403,o), +(418,454,o), +(485,454,c), +(545,454,o), +(582,418,o), +(582,351,cs), +(582,338,o), +(580,324,o), +(577,309,cs), +(511,0,l), +(611,0,l), +(678,313,ls), +(681,328,o), +(684,351,o), +(684,369,cs), +(684,469,o), +(625,540,o), +(528,540,c), +(426,540,o), +(330,451,o), +(300,309,c), +(343,358,l), +(380,530,l), +(280,530,l), +(167,0,l) +); +}, +{ +closed = 1; +nodes = ( +(131,417,l), +(233,690,l), +(119,690,l), +(61,417,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(267,0,l), +(333,309,ls), +(353,403,o), +(418,454,o), +(485,454,c), +(545,454,o), +(582,418,o), +(582,351,cs), +(582,338,o), +(580,324,o), +(577,309,cs), +(511,0,l), +(611,0,l), +(678,313,ls), +(681,328,o), +(684,351,o), +(684,369,cs), +(684,469,o), +(625,540,o), +(528,540,c), +(426,540,o), +(330,451,o), +(300,309,c), +(343,358,l), +(380,530,l), +(280,530,l), +(167,0,l) +); +}, +{ +closed = 1; +nodes = ( +(131,417,l), +(233,690,l), +(119,690,l), +(61,417,l) +); +} +); +width = 738; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(329,0,l), +(394,304,ls), +(409,375,o), +(455,413,o), +(508,413,c), +(552,413,o), +(580,387,o), +(580,338,cs), +(580,328,o), +(579,318,o), +(576,304,cs), +(511,0,l), +(660,0,l), +(726,312,ls), +(731,335,o), +(733,356,o), +(733,377,cs), +(733,475,o), +(675,544,o), +(584,544,c), +(483,544,o), +(400,457,o), +(368,304,c), +(401,340,l), +(442,530,l), +(293,530,l), +(180,0,l) +); +}, +{ +closed = 1; +nodes = ( +(154,383,l), +(282,690,l), +(122,690,l), +(56,383,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(329,0,l), +(394,304,ls), +(409,375,o), +(455,413,o), +(508,413,c), +(552,413,o), +(580,387,o), +(580,338,cs), +(580,328,o), +(579,318,o), +(576,304,cs), +(511,0,l), +(660,0,l), +(726,312,ls), +(731,335,o), +(733,356,o), +(733,377,cs), +(733,475,o), +(675,544,o), +(584,544,c), +(483,544,o), +(400,457,o), +(368,304,c), +(401,340,l), +(442,530,l), +(293,530,l), +(180,0,l) +); +}, +{ +closed = 1; +nodes = ( +(154,383,l), +(282,690,l), +(122,690,l), +(56,383,l) +); +} +); +width = 786; +} +); +unicode = 329; +}, +{ +color = 10; +glyphname = ncaron; +kernLeft = n; +kernRight = n; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(158,309,ls), +(178,403,o), +(243,454,o), +(310,454,c), +(370,454,o), +(407,418,o), +(407,351,cs), +(407,338,o), +(405,324,o), +(402,309,cs), +(336,0,l), +(436,0,l), +(503,313,ls), +(506,328,o), +(509,351,o), +(509,369,cs), +(509,469,o), +(450,540,o), +(353,540,c), +(251,540,o), +(155,451,o), +(125,309,c), +(168,358,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(361,585,l), +(360,625,l), +(298,725,l), +(216,725,l), +(286,585,l) +); +}, +{ +closed = 1; +nodes = ( +(398,585,l), +(528,725,l), +(434,725,l), +(330,625,l), +(323,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = n; +}, +{ +pos = (42,0); +ref = caroncomb; +} +); +width = 573; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(194,304,ls), +(209,375,o), +(255,413,o), +(308,413,c), +(352,413,o), +(380,387,o), +(380,338,cs), +(380,328,o), +(379,318,o), +(376,304,cs), +(311,0,l), +(460,0,l), +(526,312,ls), +(531,335,o), +(533,356,o), +(533,377,cs), +(533,475,o), +(475,544,o), +(384,544,c), +(283,544,o), +(200,457,o), +(168,304,c), +(201,340,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(380,585,l), +(375,629,l), +(307,730,l), +(203,730,l), +(274,585,l) +); +}, +{ +closed = 1; +nodes = ( +(414,585,l), +(547,730,l), +(431,730,l), +(320,629,l), +(308,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = n; +}, +{ +pos = (45,0); +ref = caroncomb; +} +); +width = 586; +} +); +unicode = 328; +}, +{ +color = 10; +glyphname = ncommaaccent; +kernLeft = n; +kernRight = n; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(158,309,ls), +(178,403,o), +(243,454,o), +(310,454,c), +(370,454,o), +(407,418,o), +(407,351,cs), +(407,338,o), +(405,324,o), +(402,309,cs), +(336,0,l), +(436,0,l), +(503,313,ls), +(506,328,o), +(509,351,o), +(509,369,cs), +(509,469,o), +(450,540,o), +(353,540,c), +(251,540,o), +(155,451,o), +(125,309,c), +(168,358,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(176,-275,l), +(260,-72,l), +(156,-72,l), +(113,-275,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = n; +}, +{ +pos = (41,0); +ref = commaaccentcomb; +} +); +width = 573; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(194,304,ls), +(209,375,o), +(255,413,o), +(308,413,c), +(352,413,o), +(380,387,o), +(380,338,cs), +(380,328,o), +(379,318,o), +(376,304,cs), +(311,0,l), +(460,0,l), +(526,312,ls), +(531,335,o), +(533,356,o), +(533,377,cs), +(533,475,o), +(475,544,o), +(384,544,c), +(283,544,o), +(200,457,o), +(168,304,c), +(201,340,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(191,-270,l), +(279,-54,l), +(147,-54,l), +(101,-270,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = n; +}, +{ +pos = (43,0); +ref = commaaccentcomb; +} +); +width = 586; +} +); +unicode = 326; +}, +{ +color = 6; +glyphname = nhookleft; +kernLeft = j; +kernRight = n; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-3,-185,o), +(63,-138,o), +(88,-21,cs), +(158,309,ls), +(178,403,o), +(243,454,o), +(310,454,c), +(370,454,o), +(407,418,o), +(407,351,cs), +(407,338,o), +(405,324,o), +(402,309,cs), +(336,0,l), +(436,0,l), +(503,313,ls), +(506,328,o), +(509,351,o), +(509,369,cs), +(509,469,o), +(450,540,o), +(353,540,c), +(251,540,o), +(155,451,o), +(125,309,c), +(168,358,l), +(205,530,l), +(105,530,l), +(-12,-17,ls), +(-23,-70,o), +(-56,-94,o), +(-101,-94,c), +(-124,-94,o), +(-144,-88,o), +(-164,-79,c), +(-183,-168,l), +(-157,-178,o), +(-129,-185,o), +(-97,-185,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(-3,-185,o), +(63,-138,o), +(88,-21,cs), +(158,309,ls), +(178,403,o), +(243,454,o), +(310,454,c), +(370,454,o), +(407,418,o), +(407,351,cs), +(407,338,o), +(405,324,o), +(402,309,cs), +(336,0,l), +(436,0,l), +(503,313,ls), +(506,328,o), +(509,351,o), +(509,369,cs), +(509,469,o), +(450,540,o), +(353,540,c), +(251,540,o), +(155,451,o), +(125,309,c), +(168,358,l), +(205,530,l), +(105,530,l), +(-12,-17,ls), +(-23,-70,o), +(-56,-94,o), +(-101,-94,c), +(-124,-94,o), +(-144,-88,o), +(-164,-79,c), +(-183,-168,l), +(-157,-178,o), +(-129,-185,o), +(-97,-185,c) +); +} +); +width = 573; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(20,-189,o), +(99,-143,o), +(126,-14,c), +(194,304,ls), +(209,375,o), +(255,413,o), +(308,413,c), +(352,413,o), +(380,387,o), +(380,338,cs), +(380,328,o), +(379,318,o), +(376,304,cs), +(311,0,l), +(460,0,l), +(526,312,ls), +(531,335,o), +(533,356,o), +(533,377,cs), +(533,475,o), +(475,544,o), +(384,544,c), +(283,544,o), +(200,457,o), +(168,304,c), +(201,340,l), +(242,530,l), +(93,530,l), +(-18,9,l), +(-27,-32,o), +(-51,-54,o), +(-92,-54,c), +(-117,-54,o), +(-139,-49,o), +(-159,-41,c), +(-187,-172,l), +(-162,-183,o), +(-123,-189,o), +(-83,-189,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(20,-189,o), +(99,-143,o), +(126,-14,c), +(194,304,ls), +(209,375,o), +(255,413,o), +(308,413,c), +(352,413,o), +(380,387,o), +(380,338,cs), +(380,328,o), +(379,318,o), +(376,304,cs), +(311,0,l), +(460,0,l), +(526,312,ls), +(531,335,o), +(533,356,o), +(533,377,cs), +(533,475,o), +(475,544,o), +(384,544,c), +(283,544,o), +(200,457,o), +(168,304,c), +(201,340,l), +(242,530,l), +(93,530,l), +(-18,9,l), +(-27,-32,o), +(-51,-54,o), +(-92,-54,c), +(-117,-54,o), +(-139,-49,o), +(-159,-41,c), +(-187,-172,l), +(-162,-183,o), +(-123,-189,o), +(-83,-189,c) +); +} +); +width = 586; +} +); +unicode = 626; +}, +{ +color = 10; +glyphname = ntilde; +kernLeft = n; +kernRight = n; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(158,309,ls), +(178,403,o), +(243,454,o), +(310,454,c), +(370,454,o), +(407,418,o), +(407,351,cs), +(407,338,o), +(405,324,o), +(402,309,cs), +(336,0,l), +(436,0,l), +(503,313,ls), +(506,328,o), +(509,351,o), +(509,369,cs), +(509,469,o), +(450,540,o), +(353,540,c), +(251,540,o), +(155,451,o), +(125,309,c), +(168,358,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(263,585,l), +(267,624,o), +(276,642,o), +(301,642,c), +(333,642,o), +(349,585,o), +(410,585,c), +(473,585,o), +(507,639,o), +(519,725,c), +(451,725,l), +(448,686,o), +(438,668,o), +(413,668,c), +(382,668,o), +(365,725,o), +(304,725,c), +(241,725,o), +(208,671,o), +(195,585,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = n; +}, +{ +pos = (42,0); +ref = tildecomb; +} +); +width = 573; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(194,304,ls), +(209,375,o), +(255,413,o), +(308,413,c), +(352,413,o), +(380,387,o), +(380,338,cs), +(380,328,o), +(379,318,o), +(376,304,cs), +(311,0,l), +(460,0,l), +(526,312,ls), +(531,335,o), +(533,356,o), +(533,377,cs), +(533,475,o), +(475,544,o), +(384,544,c), +(283,544,o), +(200,457,o), +(168,304,c), +(201,340,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(269,585,l), +(270,612,o), +(285,624,o), +(304,624,c), +(338,624,o), +(353,585,o), +(411,585,c), +(473,585,o), +(520,641,o), +(534,730,c), +(450,730,l), +(449,702,o), +(435,690,o), +(416,690,c), +(384,690,o), +(366,730,o), +(308,730,c), +(245,730,o), +(198,674,o), +(185,585,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = n; +}, +{ +pos = (44,0); +ref = tildecomb; +} +); +width = 586; +} +); +unicode = 241; +}, +{ +color = 6; +glyphname = eng; +kernLeft = n; +kernRight = n; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(341,-185,o), +(407,-138,o), +(432,-21,cs), +(503,313,ls), +(506,328,o), +(509,351,o), +(509,369,cs), +(509,469,o), +(450,540,o), +(353,540,c), +(251,540,o), +(155,451,o), +(125,309,c), +(168,358,l), +(205,530,l), +(105,530,l), +(-8,0,l), +(92,0,l), +(158,309,ls), +(178,403,o), +(243,454,o), +(310,454,c), +(370,454,o), +(407,418,o), +(407,351,cs), +(407,338,o), +(405,324,o), +(402,309,cs), +(332,-17,ls), +(321,-70,o), +(288,-94,o), +(243,-94,c), +(220,-94,o), +(200,-88,o), +(180,-79,c), +(161,-168,l), +(187,-178,o), +(215,-185,o), +(247,-185,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(341,-185,o), +(407,-138,o), +(432,-21,cs), +(503,313,ls), +(506,328,o), +(509,351,o), +(509,369,cs), +(509,469,o), +(450,540,o), +(353,540,c), +(251,540,o), +(155,451,o), +(125,309,c), +(168,358,l), +(205,530,l), +(105,530,l), +(-8,0,l), +(92,0,l), +(158,309,ls), +(178,403,o), +(243,454,o), +(310,454,c), +(370,454,o), +(407,418,o), +(407,351,cs), +(407,338,o), +(405,324,o), +(402,309,cs), +(332,-17,ls), +(321,-70,o), +(288,-94,o), +(243,-94,c), +(220,-94,o), +(200,-88,o), +(180,-79,c), +(161,-168,l), +(187,-178,o), +(215,-185,o), +(247,-185,c) +); +} +); +width = 573; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(351,-189,o), +(430,-143,o), +(457,-14,cs), +(526,312,ls), +(531,335,o), +(533,356,o), +(533,377,cs), +(533,475,o), +(475,544,o), +(384,544,c), +(283,544,o), +(200,457,o), +(168,304,c), +(201,340,l), +(242,530,l), +(93,530,l), +(-20,0,l), +(129,0,l), +(194,304,ls), +(209,375,o), +(255,413,o), +(308,413,c), +(352,413,o), +(380,387,o), +(380,338,cs), +(380,328,o), +(379,318,o), +(376,304,cs), +(313,9,ls), +(304,-32,o), +(280,-54,o), +(239,-54,c), +(214,-54,o), +(192,-49,o), +(172,-41,c), +(144,-172,l), +(169,-183,o), +(208,-189,o), +(248,-189,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(351,-189,o), +(430,-143,o), +(457,-14,cs), +(526,312,ls), +(531,335,o), +(533,356,o), +(533,377,cs), +(533,475,o), +(475,544,o), +(384,544,c), +(283,544,o), +(200,457,o), +(168,304,c), +(201,340,l), +(242,530,l), +(93,530,l), +(-20,0,l), +(129,0,l), +(194,304,ls), +(209,375,o), +(255,413,o), +(308,413,c), +(352,413,o), +(380,387,o), +(380,338,cs), +(380,328,o), +(379,318,o), +(376,304,cs), +(313,9,ls), +(304,-32,o), +(280,-54,o), +(239,-54,c), +(214,-54,o), +(192,-49,o), +(172,-41,c), +(144,-172,l), +(169,-183,o), +(208,-189,o), +(248,-189,c) +); +} +); +width = 586; +} +); +unicode = 331; +}, +{ +color = 6; +glyphname = o; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:47:33 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (210,0); +}, +{ +name = ogonek; +pos = (285,0); +}, +{ +name = top; +pos = (323,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (210,0); +}, +{ +name = top; +pos = (323,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(388,-10,o), +(517,145,o), +(517,340,cs), +(517,459,o), +(439,540,o), +(314,540,c), +(145,540,o), +(16,385,o), +(16,190,cs), +(16,71,o), +(94,-10,o), +(219,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(160,80,o), +(120,121,o), +(120,195,cs), +(120,334,o), +(201,450,o), +(301,450,c), +(373,450,o), +(413,409,o), +(413,335,cs), +(413,196,o), +(332,80,o), +(232,80,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(388,-10,o), +(517,145,o), +(517,340,cs), +(517,459,o), +(439,540,o), +(314,540,c), +(145,540,o), +(16,385,o), +(16,190,cs), +(16,71,o), +(94,-10,o), +(219,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(160,80,o), +(120,121,o), +(120,195,cs), +(120,334,o), +(201,450,o), +(301,450,c), +(373,450,o), +(413,409,o), +(413,335,cs), +(413,196,o), +(332,80,o), +(232,80,c) +); +} +); +width = 564; +}, +{ +anchors = ( +{ +name = bottom; +pos = (215,0); +}, +{ +name = ogonek; +pos = (310,0); +}, +{ +name = top; +pos = (327,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (215,0); +}, +{ +name = top; +pos = (328,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(405,-14,o), +(536,143,o), +(536,329,c), +(536,454,o), +(451,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(91,-14,o), +(224,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(187,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(355,411,o), +(382,371,o), +(382,312,c), +(382,207,o), +(319,119,o), +(241,119,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(405,-14,o), +(536,143,o), +(536,329,c), +(536,454,o), +(451,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(91,-14,o), +(224,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(187,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(355,411,o), +(382,371,o), +(382,312,c), +(382,207,o), +(319,119,o), +(241,119,c) +); +} +); +width = 576; +} +); +unicode = 111; +}, +{ +color = 10; +glyphname = oacute; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:49:53 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(388,-10,o), +(517,145,o), +(517,340,cs), +(517,459,o), +(439,540,o), +(314,540,c), +(145,540,o), +(16,385,o), +(16,190,cs), +(16,71,o), +(94,-10,o), +(219,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(160,80,o), +(120,121,o), +(120,195,cs), +(120,334,o), +(201,450,o), +(301,450,c), +(373,450,o), +(413,409,o), +(413,335,cs), +(413,196,o), +(332,80,o), +(232,80,c) +); +}, +{ +closed = 1; +nodes = ( +(368,585,l), +(505,725,l), +(379,725,l), +(279,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (22,0); +ref = acutecomb; +} +); +width = 564; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(405,-14,o), +(536,143,o), +(536,329,c), +(536,454,o), +(451,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(91,-14,o), +(224,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(187,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(355,411,o), +(382,371,o), +(382,312,c), +(382,207,o), +(319,119,o), +(241,119,c) +); +}, +{ +closed = 1; +nodes = ( +(384,585,l), +(540,730,l), +(379,730,l), +(269,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = o; +}, +{ +pos = (49,0); +ref = acutecomb; +} +); +width = 576; +} +); +unicode = 243; +}, +{ +color = 10; +glyphname = obreve; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:47:33 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(388,-10,o), +(517,145,o), +(517,340,cs), +(517,459,o), +(439,540,o), +(314,540,c), +(145,540,o), +(16,385,o), +(16,190,cs), +(16,71,o), +(94,-10,o), +(219,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(160,80,o), +(120,121,o), +(120,195,cs), +(120,334,o), +(201,450,o), +(301,450,c), +(373,450,o), +(413,409,o), +(413,335,cs), +(413,196,o), +(332,80,o), +(232,80,c) +); +}, +{ +closed = 1; +nodes = ( +(439,585,o), +(486,639,o), +(504,725,c), +(434,725,l), +(426,684,o), +(395,660,o), +(348,660,c), +(310,660,o), +(292,677,o), +(292,707,cs), +(292,712,o), +(293,719,o), +(294,725,c), +(224,725,l), +(222,713,o), +(221,702,o), +(221,692,cs), +(221,629,o), +(267,585,o), +(344,585,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (34,0); +ref = brevecomb; +} +); +width = 564; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(405,-14,o), +(536,143,o), +(536,329,c), +(536,454,o), +(451,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(91,-14,o), +(224,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(187,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(355,411,o), +(382,371,o), +(382,312,c), +(382,207,o), +(319,119,o), +(241,119,c) +); +}, +{ +closed = 1; +nodes = ( +(454,585,o), +(500,639,o), +(519,730,c), +(428,730,l), +(421,693,o), +(393,671,o), +(356,671,c), +(325,671,o), +(310,686,o), +(310,713,cs), +(310,718,o), +(311,724,o), +(312,730,c), +(221,730,l), +(219,718,o), +(218,708,o), +(218,697,cs), +(218,626,o), +(268,585,o), +(349,585,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = o; +}, +{ +pos = (39,0); +ref = brevecomb; +} +); +width = 576; +} +); +unicode = 335; +}, +{ +color = 10; +glyphname = ocircumflex; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:47:33 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(388,-10,o), +(517,145,o), +(517,340,cs), +(517,459,o), +(439,540,o), +(314,540,c), +(145,540,o), +(16,385,o), +(16,190,cs), +(16,71,o), +(94,-10,o), +(219,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(160,80,o), +(120,121,o), +(120,195,cs), +(120,334,o), +(201,450,o), +(301,450,c), +(373,450,o), +(413,409,o), +(413,335,cs), +(413,196,o), +(332,80,o), +(232,80,c) +); +}, +{ +closed = 1; +nodes = ( +(272,585,l), +(376,685,l), +(383,725,l), +(308,725,l), +(178,585,l) +); +}, +{ +closed = 1; +nodes = ( +(490,585,l), +(420,725,l), +(345,725,l), +(346,685,l), +(408,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (35,0); +ref = circumflexcomb; +} +); +width = 564; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(405,-14,o), +(536,143,o), +(536,329,c), +(536,454,o), +(451,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(91,-14,o), +(224,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(187,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(355,411,o), +(382,371,o), +(382,312,c), +(382,207,o), +(319,119,o), +(241,119,c) +); +}, +{ +closed = 1; +nodes = ( +(283,585,l), +(394,686,l), +(406,730,l), +(300,730,l), +(167,585,l) +); +}, +{ +closed = 1; +nodes = ( +(511,585,l), +(440,730,l), +(334,730,l), +(339,686,l), +(407,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = o; +}, +{ +pos = (39,0); +ref = circumflexcomb; +} +); +width = 576; +} +); +unicode = 244; +}, +{ +color = 10; +glyphname = odieresis; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:47:33 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(388,-10,o), +(517,145,o), +(517,340,cs), +(517,459,o), +(439,540,o), +(314,540,c), +(145,540,o), +(16,385,o), +(16,190,cs), +(16,71,o), +(94,-10,o), +(219,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(160,80,o), +(120,121,o), +(120,195,cs), +(120,334,o), +(201,450,o), +(301,450,c), +(373,450,o), +(413,409,o), +(413,335,cs), +(413,196,o), +(332,80,o), +(232,80,c) +); +}, +{ +closed = 1; +nodes = ( +(289,602,o), +(315,627,o), +(315,662,c), +(315,694,o), +(294,715,o), +(263,715,c), +(228,715,o), +(203,690,o), +(203,653,c), +(203,623,o), +(224,602,o), +(254,602,c) +); +}, +{ +closed = 1; +nodes = ( +(471,602,o), +(497,627,o), +(497,662,c), +(497,694,o), +(476,715,o), +(445,715,c), +(410,715,o), +(385,690,o), +(385,653,c), +(385,623,o), +(406,602,o), +(436,602,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (33,0); +ref = dieresiscomb; +} +); +width = 564; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(405,-14,o), +(536,143,o), +(536,329,c), +(536,454,o), +(451,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(91,-14,o), +(224,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(187,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(355,411,o), +(382,371,o), +(382,312,c), +(382,207,o), +(319,119,o), +(241,119,c) +); +}, +{ +closed = 1; +nodes = ( +(294,588,o), +(328,618,o), +(328,664,c), +(328,703,o), +(303,728,o), +(262,728,c), +(220,728,o), +(186,698,o), +(186,652,c), +(186,613,o), +(211,588,o), +(252,588,c) +); +}, +{ +closed = 1; +nodes = ( +(490,588,o), +(524,618,o), +(524,664,c), +(524,703,o), +(499,728,o), +(458,728,c), +(416,728,o), +(382,698,o), +(382,652,c), +(382,613,o), +(407,588,o), +(448,588,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = o; +}, +{ +pos = (37,0); +ref = dieresiscomb; +} +); +width = 576; +} +); +unicode = 246; +}, +{ +color = 10; +glyphname = odotbelow; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(388,-10,o), +(517,145,o), +(517,340,cs), +(517,459,o), +(439,540,o), +(314,540,c), +(145,540,o), +(16,385,o), +(16,190,cs), +(16,71,o), +(94,-10,o), +(219,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(214,-195,o), +(242,-168,o), +(242,-130,c), +(242,-95,o), +(219,-72,o), +(185,-72,c), +(147,-72,o), +(120,-99,o), +(120,-140,c), +(120,-172,o), +(143,-195,o), +(176,-195,c) +); +}, +{ +closed = 1; +nodes = ( +(160,80,o), +(120,121,o), +(120,195,cs), +(120,334,o), +(201,450,o), +(301,450,c), +(373,450,o), +(413,409,o), +(413,335,cs), +(413,196,o), +(332,80,o), +(232,80,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (34,0); +ref = dotbelow; +} +); +width = 564; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(405,-14,o), +(536,143,o), +(536,329,c), +(536,454,o), +(451,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(91,-14,o), +(224,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(229,-198,o), +(265,-166,o), +(265,-117,c), +(265,-75,o), +(238,-48,o), +(194,-48,c), +(149,-48,o), +(113,-80,o), +(113,-130,c), +(113,-171,o), +(140,-198,o), +(184,-198,c) +); +}, +{ +closed = 1; +nodes = ( +(187,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(355,411,o), +(382,371,o), +(382,312,c), +(382,207,o), +(319,119,o), +(241,119,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = o; +}, +{ +pos = (38,0); +ref = dotbelow; +} +); +width = 576; +} +); +unicode = 7885; +}, +{ +color = 10; +glyphname = ograve; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:48:12 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(388,-10,o), +(517,145,o), +(517,340,cs), +(517,459,o), +(439,540,o), +(314,540,c), +(145,540,o), +(16,385,o), +(16,190,cs), +(16,71,o), +(94,-10,o), +(219,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(160,80,o), +(120,121,o), +(120,195,cs), +(120,334,o), +(201,450,o), +(301,450,c), +(373,450,o), +(413,409,o), +(413,335,cs), +(413,196,o), +(332,80,o), +(232,80,c) +); +}, +{ +closed = 1; +nodes = ( +(384,585,l), +(344,725,l), +(223,725,l), +(303,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (33,0); +ref = gravecomb; +} +); +width = 564; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(405,-14,o), +(536,143,o), +(536,329,c), +(536,454,o), +(451,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(91,-14,o), +(224,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(187,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(355,411,o), +(382,371,o), +(382,312,c), +(382,207,o), +(319,119,o), +(241,119,c) +); +}, +{ +closed = 1; +nodes = ( +(402,585,l), +(353,730,l), +(203,730,l), +(300,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = o; +}, +{ +pos = (91,0); +ref = gravecomb; +} +); +width = 576; +} +); +unicode = 242; +}, +{ +color = 10; +glyphname = ohungarumlaut; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:48:20 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(388,-10,o), +(517,145,o), +(517,340,cs), +(517,459,o), +(439,540,o), +(314,540,c), +(145,540,o), +(16,385,o), +(16,190,cs), +(16,71,o), +(94,-10,o), +(219,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(160,80,o), +(120,121,o), +(120,195,cs), +(120,334,o), +(201,450,o), +(301,450,c), +(373,450,o), +(413,409,o), +(413,335,cs), +(413,196,o), +(332,80,o), +(232,80,c) +); +}, +{ +closed = 1; +nodes = ( +(312,585,l), +(412,725,l), +(309,725,l), +(229,585,l) +); +}, +{ +closed = 1; +nodes = ( +(444,585,l), +(574,725,l), +(461,725,l), +(361,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (34,0); +ref = hungarumlautcomb; +} +); +width = 564; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(405,-14,o), +(536,143,o), +(536,329,c), +(536,454,o), +(451,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(91,-14,o), +(224,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(187,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(355,411,o), +(382,371,o), +(382,312,c), +(382,207,o), +(319,119,o), +(241,119,c) +); +}, +{ +closed = 1; +nodes = ( +(327,585,l), +(442,730,l), +(302,730,l), +(220,585,l) +); +}, +{ +closed = 1; +nodes = ( +(464,585,l), +(620,730,l), +(473,730,l), +(358,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = o; +}, +{ +pos = (39,0); +ref = hungarumlautcomb; +} +); +width = 576; +} +); +unicode = 337; +}, +{ +color = 10; +glyphname = omacron; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:47:33 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(388,-10,o), +(517,145,o), +(517,340,cs), +(517,459,o), +(439,540,o), +(314,540,c), +(145,540,o), +(16,385,o), +(16,190,cs), +(16,71,o), +(94,-10,o), +(219,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(160,80,o), +(120,121,o), +(120,195,cs), +(120,334,o), +(201,450,o), +(301,450,c), +(373,450,o), +(413,409,o), +(413,335,cs), +(413,196,o), +(332,80,o), +(232,80,c) +); +}, +{ +closed = 1; +nodes = ( +(480,621,l), +(498,705,l), +(222,705,l), +(204,621,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (33,0); +ref = macroncomb; +} +); +width = 564; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(405,-14,o), +(536,143,o), +(536,329,c), +(536,454,o), +(451,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(91,-14,o), +(224,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(187,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(355,411,o), +(382,371,o), +(382,312,c), +(382,207,o), +(319,119,o), +(241,119,c) +); +}, +{ +closed = 1; +nodes = ( +(490,603,l), +(515,718,l), +(221,718,l), +(196,603,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = o; +}, +{ +pos = (38,0); +ref = macroncomb; +} +); +width = 576; +} +); +unicode = 333; +}, +{ +color = 10; +glyphname = oogonek; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:04:23 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(203,-185,o), +(240,-176,o), +(262,-165,c), +(270,-84,l), +(245,-96,o), +(214,-106,o), +(188,-106,c), +(177,-106,o), +(171,-101,o), +(171,-93,cs), +(171,-72,o), +(207,-34,o), +(312,7,cs), +(432,54,o), +(517,183,o), +(517,340,cs), +(517,459,o), +(439,540,o), +(314,540,c), +(145,540,o), +(16,385,o), +(16,190,cs), +(16,71,o), +(94,-10,o), +(219,-10,c), +(204,-2,l), +(115,-35,o), +(83,-74,o), +(83,-118,c), +(83,-155,o), +(109,-185,o), +(171,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(160,80,o), +(120,121,o), +(120,195,cs), +(120,334,o), +(201,450,o), +(301,450,c), +(373,450,o), +(413,409,o), +(413,335,cs), +(413,196,o), +(332,80,o), +(232,80,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (55,0); +ref = ogonekcomb; +} +); +width = 564; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(213,-190,o), +(248,-183,o), +(279,-170,c), +(290,-75,l), +(268,-87,o), +(240,-96,o), +(221,-96,c), +(208,-96,o), +(201,-90,o), +(201,-82,cs), +(201,-65,o), +(225,-30,o), +(316,0,cs), +(448,44,o), +(536,176,o), +(536,329,c), +(536,454,o), +(451,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(91,-14,o), +(224,-14,c), +(213,-3,l), +(120,-36,o), +(86,-82,o), +(86,-121,c), +(86,-158,o), +(116,-190,o), +(185,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(187,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(355,411,o), +(382,371,o), +(382,312,c), +(382,207,o), +(319,119,o), +(241,119,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = o; +}, +{ +pos = (44,0); +ref = ogonekcomb; +} +); +width = 576; +} +); +unicode = 491; +}, +{ +color = 6; +glyphname = oslash; +kernLeft = G; +kernRight = M; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (322,530); +} +); +background = { +anchors = ( +{ +name = top; +pos = (322,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(387,-10,o), +(516,145,o), +(516,340,cs), +(516,459,o), +(438,540,o), +(313,540,c), +(144,540,o), +(15,385,o), +(15,190,cs), +(15,71,o), +(93,-10,o), +(218,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(50,0,l), +(601,540,l), +(484,540,l), +(-67,0,l) +); +}, +{ +closed = 1; +nodes = ( +(159,80,o), +(119,121,o), +(119,195,cs), +(119,334,o), +(200,450,o), +(300,450,c), +(372,450,o), +(412,409,o), +(412,335,cs), +(412,196,o), +(331,80,o), +(231,80,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(387,-10,o), +(516,145,o), +(516,340,cs), +(516,459,o), +(438,540,o), +(313,540,c), +(144,540,o), +(15,385,o), +(15,190,cs), +(15,71,o), +(93,-10,o), +(218,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(50,0,l), +(601,540,l), +(484,540,l), +(-67,0,l) +); +}, +{ +closed = 1; +nodes = ( +(159,80,o), +(119,121,o), +(119,195,cs), +(119,334,o), +(200,450,o), +(300,450,c), +(372,450,o), +(412,409,o), +(412,335,cs), +(412,196,o), +(331,80,o), +(231,80,c) +); +} +); +width = 564; +}, +{ +anchors = ( +{ +name = top; +pos = (328,530); +} +); +background = { +anchors = ( +{ +name = top; +pos = (328,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(405,-14,o), +(536,143,o), +(536,329,c), +(536,454,o), +(451,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(91,-14,o), +(224,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(78,0,l), +(614,530,l), +(465,530,l), +(-71,0,l) +); +}, +{ +closed = 1; +nodes = ( +(187,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(355,411,o), +(382,371,o), +(382,312,c), +(382,207,o), +(319,119,o), +(241,119,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(405,-14,o), +(536,143,o), +(536,329,c), +(536,454,o), +(451,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(91,-14,o), +(224,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(78,0,l), +(614,530,l), +(465,530,l), +(-71,0,l) +); +}, +{ +closed = 1; +nodes = ( +(187,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(355,411,o), +(382,371,o), +(382,312,c), +(382,207,o), +(319,119,o), +(241,119,c) +); +} +); +width = 575; +} +); +unicode = 248; +}, +{ +color = 10; +glyphname = oslashacute; +kernLeft = G; +kernRight = M; +lastChange = "2024-03-21 14:49:53 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(387,-10,o), +(516,145,o), +(516,340,cs), +(516,459,o), +(438,540,o), +(313,540,c), +(144,540,o), +(15,385,o), +(15,190,cs), +(15,71,o), +(93,-10,o), +(218,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(50,0,l), +(601,540,l), +(484,540,l), +(-67,0,l) +); +}, +{ +closed = 1; +nodes = ( +(159,80,o), +(119,121,o), +(119,195,cs), +(119,334,o), +(200,450,o), +(300,450,c), +(372,450,o), +(412,409,o), +(412,335,cs), +(412,196,o), +(331,80,o), +(231,80,c) +); +}, +{ +closed = 1; +nodes = ( +(367,585,l), +(504,725,l), +(378,725,l), +(278,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = oslash; +}, +{ +pos = (21,0); +ref = acutecomb; +} +); +width = 564; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(405,-14,o), +(536,143,o), +(536,329,c), +(536,454,o), +(451,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(91,-14,o), +(224,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(78,0,l), +(614,530,l), +(465,530,l), +(-71,0,l) +); +}, +{ +closed = 1; +nodes = ( +(187,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(355,411,o), +(382,371,o), +(382,312,c), +(382,207,o), +(319,119,o), +(241,119,c) +); +}, +{ +closed = 1; +nodes = ( +(384,585,l), +(540,730,l), +(379,730,l), +(269,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = oslash; +}, +{ +pos = (50,0); +ref = acutecomb; +} +); +width = 575; +} +); +unicode = 511; +}, +{ +color = 10; +glyphname = otilde; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:47:33 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(388,-10,o), +(517,145,o), +(517,340,cs), +(517,459,o), +(439,540,o), +(314,540,c), +(145,540,o), +(16,385,o), +(16,190,cs), +(16,71,o), +(94,-10,o), +(219,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(160,80,o), +(120,121,o), +(120,195,cs), +(120,334,o), +(201,450,o), +(301,450,c), +(373,450,o), +(413,409,o), +(413,335,cs), +(413,196,o), +(332,80,o), +(232,80,c) +); +}, +{ +closed = 1; +nodes = ( +(255,585,l), +(259,624,o), +(268,642,o), +(293,642,c), +(325,642,o), +(341,585,o), +(402,585,c), +(465,585,o), +(499,639,o), +(511,725,c), +(443,725,l), +(440,686,o), +(430,668,o), +(405,668,c), +(374,668,o), +(357,725,o), +(296,725,c), +(233,725,o), +(200,671,o), +(187,585,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (34,0); +ref = tildecomb; +} +); +width = 564; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(405,-14,o), +(536,143,o), +(536,329,c), +(536,454,o), +(451,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(91,-14,o), +(224,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(187,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(355,411,o), +(382,371,o), +(382,312,c), +(382,207,o), +(319,119,o), +(241,119,c) +); +}, +{ +closed = 1; +nodes = ( +(264,585,l), +(265,612,o), +(280,624,o), +(299,624,c), +(333,624,o), +(348,585,o), +(406,585,c), +(468,585,o), +(515,641,o), +(529,730,c), +(445,730,l), +(444,702,o), +(430,690,o), +(411,690,c), +(379,690,o), +(361,730,o), +(303,730,c), +(240,730,o), +(193,674,o), +(180,585,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = o; +}, +{ +pos = (38,0); +ref = tildecomb; +} +); +width = 576; +} +); +unicode = 245; +}, +{ +color = 6; +glyphname = oe; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(373,-10,o), +(496,145,o), +(496,340,cs), +(496,459,o), +(424,540,o), +(308,540,c), +(142,540,o), +(15,385,o), +(15,190,cs), +(15,71,o), +(91,-10,o), +(213,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(159,80,o), +(119,121,o), +(119,195,cs), +(119,334,o), +(200,450,o), +(300,450,c), +(372,450,o), +(412,409,o), +(412,335,cs), +(412,196,o), +(331,80,o), +(231,80,c) +); +}, +{ +closed = 1; +nodes = ( +(706,-10,o), +(789,43,o), +(839,125,c), +(754,170,l), +(721,116,o), +(671,84,o), +(615,84,c), +(543,84,o), +(503,121,o), +(503,195,cs), +(503,337,o), +(583,454,o), +(680,454,c), +(749,454,o), +(786,412,o), +(786,335,cs), +(786,311,o), +(784,288,o), +(779,266,c), +(817,310,l), +(499,310,l), +(482,231,l), +(874,231,l), +(883,265,o), +(890,302,o), +(890,340,cs), +(890,459,o), +(816,540,o), +(697,540,c), +(539,540,o), +(419,385,o), +(419,190,cs), +(419,71,o), +(491,-10,o), +(607,-10,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(373,-10,o), +(496,145,o), +(496,340,cs), +(496,459,o), +(424,540,o), +(308,540,c), +(142,540,o), +(15,385,o), +(15,190,cs), +(15,71,o), +(91,-10,o), +(213,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(159,80,o), +(119,121,o), +(119,195,cs), +(119,334,o), +(200,450,o), +(300,450,c), +(372,450,o), +(412,409,o), +(412,335,cs), +(412,196,o), +(331,80,o), +(231,80,c) +); +}, +{ +closed = 1; +nodes = ( +(706,-10,o), +(789,43,o), +(839,125,c), +(754,170,l), +(721,116,o), +(671,84,o), +(615,84,c), +(543,84,o), +(503,121,o), +(503,195,cs), +(503,337,o), +(583,454,o), +(680,454,c), +(749,454,o), +(786,412,o), +(786,335,cs), +(786,311,o), +(784,288,o), +(779,266,c), +(817,310,l), +(499,310,l), +(482,231,l), +(874,231,l), +(883,265,o), +(890,302,o), +(890,340,cs), +(890,459,o), +(816,540,o), +(697,540,c), +(539,540,o), +(419,385,o), +(419,190,cs), +(419,71,o), +(491,-10,o), +(607,-10,c) +); +} +); +width = 937; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(384,-14,o), +(507,143,o), +(507,329,c), +(507,454,o), +(430,544,o), +(309,544,c), +(134,544,o), +(7,387,o), +(7,201,c), +(7,76,o), +(88,-14,o), +(215,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(188,119,o), +(161,159,o), +(161,218,c), +(161,323,o), +(223,411,o), +(302,411,c), +(356,411,o), +(383,371,o), +(383,312,c), +(383,207,o), +(320,119,o), +(242,119,c) +); +}, +{ +closed = 1; +nodes = ( +(714,-14,o), +(801,42,o), +(846,128,c), +(710,177,l), +(693,141,o), +(657,114,o), +(609,114,c), +(555,114,o), +(528,159,o), +(528,218,c), +(528,328,o), +(591,419,o), +(670,419,c), +(724,419,o), +(750,387,o), +(750,312,c), +(750,296,o), +(749,280,o), +(746,265,c), +(796,323,l), +(480,323,l), +(458,223,l), +(883,223,l), +(893,256,o), +(898,292,o), +(898,327,c), +(898,454,o), +(822,544,o), +(692,544,c), +(526,544,o), +(404,387,o), +(404,201,c), +(404,76,o), +(481,-14,o), +(608,-14,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(384,-14,o), +(507,143,o), +(507,329,c), +(507,454,o), +(430,544,o), +(309,544,c), +(134,544,o), +(7,387,o), +(7,201,c), +(7,76,o), +(88,-14,o), +(215,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(188,119,o), +(161,159,o), +(161,218,c), +(161,323,o), +(223,411,o), +(302,411,c), +(356,411,o), +(383,371,o), +(383,312,c), +(383,207,o), +(320,119,o), +(242,119,c) +); +}, +{ +closed = 1; +nodes = ( +(714,-14,o), +(801,42,o), +(846,128,c), +(710,177,l), +(693,141,o), +(657,114,o), +(609,114,c), +(555,114,o), +(528,159,o), +(528,218,c), +(528,328,o), +(591,419,o), +(670,419,c), +(724,419,o), +(750,387,o), +(750,312,c), +(750,296,o), +(749,280,o), +(746,265,c), +(796,323,l), +(480,323,l), +(458,223,l), +(883,223,l), +(893,256,o), +(898,292,o), +(898,327,c), +(898,454,o), +(822,544,o), +(692,544,c), +(526,544,o), +(404,387,o), +(404,201,c), +(404,76,o), +(481,-14,o), +(608,-14,c) +); +} +); +width = 938; +} +); +unicode = 339; +}, +{ +color = 6; +glyphname = p; +kernLeft = p; +kernRight = o; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(405,-10,o), +(528,138,o), +(528,342,c), +(528,466,o), +(456,540,o), +(359,540,c), +(253,540,o), +(162,456,o), +(131,309,c), +(104,150,l), +(104,47,o), +(167,-10,o), +(256,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(56,-175,l), +(119,123,l), +(134,265,l), +(180,408,l), +(206,530,l), +(106,530,l), +(-44,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(175,77,o), +(136,113,o), +(136,195,c), +(136,334,o), +(212,453,o), +(319,453,c), +(384,453,o), +(423,417,o), +(423,335,c), +(423,187,o), +(347,77,o), +(240,77,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(405,-10,o), +(528,138,o), +(528,342,c), +(528,466,o), +(456,540,o), +(359,540,c), +(253,540,o), +(162,456,o), +(131,309,c), +(104,150,l), +(104,47,o), +(167,-10,o), +(256,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(56,-175,l), +(119,123,l), +(134,265,l), +(180,408,l), +(206,530,l), +(106,530,l), +(-44,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(175,77,o), +(136,113,o), +(136,195,c), +(136,334,o), +(212,453,o), +(319,453,c), +(384,453,o), +(423,417,o), +(423,335,c), +(423,187,o), +(347,77,o), +(240,77,c) +); +} +); +width = 576; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(441,-14,o), +(543,154,o), +(543,341,c), +(543,468,o), +(483,544,o), +(385,544,c), +(284,544,o), +(201,458,o), +(169,304,c), +(147,145,l), +(144,42,o), +(196,-14,o), +(284,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(93,-175,l), +(160,139,l), +(167,265,l), +(211,383,l), +(243,530,l), +(94,530,l), +(-56,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(198,120,o), +(170,151,o), +(170,212,c), +(170,322,o), +(228,410,o), +(310,410,c), +(361,410,o), +(389,379,o), +(389,318,c), +(389,208,o), +(331,120,o), +(249,120,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(441,-14,o), +(543,154,o), +(543,341,c), +(543,468,o), +(483,544,o), +(385,544,c), +(284,544,o), +(201,458,o), +(169,304,c), +(147,145,l), +(144,42,o), +(196,-14,o), +(284,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(93,-175,l), +(160,139,l), +(167,265,l), +(211,383,l), +(243,530,l), +(94,530,l), +(-56,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(198,120,o), +(170,151,o), +(170,212,c), +(170,322,o), +(228,410,o), +(310,410,c), +(361,410,o), +(389,379,o), +(389,318,c), +(389,208,o), +(331,120,o), +(249,120,c) +); +} +); +width = 587; +} +); +unicode = 112; +}, +{ +color = 6; +glyphname = thorn; +kernRight = o; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(405,-10,o), +(528,138,o), +(528,342,c), +(528,466,o), +(456,540,o), +(359,540,c), +(253,540,o), +(162,456,o), +(131,309,c), +(104,150,l), +(104,47,o), +(167,-10,o), +(256,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(56,-175,l), +(119,123,l), +(134,265,l), +(180,408,l), +(245,715,l), +(145,715,l), +(-44,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(175,77,o), +(136,113,o), +(136,195,c), +(136,334,o), +(212,453,o), +(319,453,c), +(384,453,o), +(423,417,o), +(423,335,c), +(423,187,o), +(347,77,o), +(240,77,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(405,-10,o), +(528,138,o), +(528,342,c), +(528,466,o), +(456,540,o), +(359,540,c), +(253,540,o), +(162,456,o), +(131,309,c), +(104,150,l), +(104,47,o), +(167,-10,o), +(256,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(56,-175,l), +(119,123,l), +(134,265,l), +(180,408,l), +(245,715,l), +(145,715,l), +(-44,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(175,77,o), +(136,113,o), +(136,195,c), +(136,334,o), +(212,453,o), +(319,453,c), +(384,453,o), +(423,417,o), +(423,335,c), +(423,187,o), +(347,77,o), +(240,77,c) +); +} +); +width = 576; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(441,-14,o), +(543,154,o), +(543,341,c), +(543,468,o), +(483,544,o), +(385,544,c), +(284,544,o), +(201,458,o), +(169,304,c), +(147,145,l), +(144,42,o), +(196,-14,o), +(284,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(93,-175,l), +(160,139,l), +(167,265,l), +(211,383,l), +(282,715,l), +(133,715,l), +(-56,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(198,120,o), +(170,151,o), +(170,212,c), +(170,322,o), +(228,410,o), +(310,410,c), +(361,410,o), +(389,379,o), +(389,318,c), +(389,208,o), +(331,120,o), +(249,120,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(441,-14,o), +(543,154,o), +(543,341,c), +(543,468,o), +(483,544,o), +(385,544,c), +(284,544,o), +(201,458,o), +(169,304,c), +(147,145,l), +(144,42,o), +(196,-14,o), +(284,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(93,-175,l), +(160,139,l), +(167,265,l), +(211,383,l), +(282,715,l), +(133,715,l), +(-56,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(198,120,o), +(170,151,o), +(170,212,c), +(170,322,o), +(228,410,o), +(310,410,c), +(361,410,o), +(389,379,o), +(389,318,c), +(389,208,o), +(331,120,o), +(249,120,c) +); +} +); +width = 587; +} +); +unicode = 254; +}, +{ +color = 6; +glyphname = q; +kernLeft = o; +kernRight = q; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(292,-10,o), +(383,74,o), +(414,221,c), +(441,380,l), +(441,483,o), +(378,540,o), +(289,540,c), +(140,540,o), +(17,392,o), +(17,188,c), +(17,64,o), +(89,-10,o), +(186,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(161,77,o), +(122,113,o), +(122,195,c), +(122,343,o), +(198,453,o), +(305,453,c), +(370,453,o), +(409,417,o), +(409,335,c), +(409,196,o), +(333,77,o), +(226,77,c) +); +}, +{ +closed = 1; +nodes = ( +(402,-175,l), +(552,530,l), +(452,530,l), +(426,407,l), +(411,265,l), +(365,122,l), +(302,-175,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(292,-10,o), +(383,74,o), +(414,221,c), +(441,380,l), +(441,483,o), +(378,540,o), +(289,540,c), +(140,540,o), +(17,392,o), +(17,188,c), +(17,64,o), +(89,-10,o), +(186,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(161,77,o), +(122,113,o), +(122,195,c), +(122,343,o), +(198,453,o), +(305,453,c), +(370,453,o), +(409,417,o), +(409,335,c), +(409,196,o), +(333,77,o), +(226,77,c) +); +}, +{ +closed = 1; +nodes = ( +(402,-175,l), +(552,530,l), +(452,530,l), +(426,407,l), +(411,265,l), +(365,122,l), +(302,-175,l) +); +} +); +width = 576; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(422,-175,l), +(572,530,l), +(423,530,l), +(393,391,l), +(386,265,l), +(341,147,l), +(273,-175,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(422,-175,l), +(572,530,l), +(423,530,l), +(393,391,l), +(386,265,l), +(341,147,l), +(273,-175,l) +); +} +); +width = 585; +} +); +unicode = 113; +}, +{ +color = 6; +glyphname = r; +kernLeft = n; +kernRight = r; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (42,0); +}, +{ +name = top; +pos = (230.655,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (42,0); +}, +{ +name = top; +pos = (230.655,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(154,292,l), +(175,389,o), +(235,429,o), +(314,429,c), +(341,429,l), +(365,540,l), +(252,540,o), +(154,439,o), +(120,279,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(154,292,l), +(175,389,o), +(235,429,o), +(314,429,c), +(341,429,l), +(365,540,l), +(252,540,o), +(154,439,o), +(120,279,c) +); +} +); +width = 342; +}, +{ +anchors = ( +{ +name = bottom; +pos = (55,0); +}, +{ +name = top; +pos = (241.655,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (55,0); +}, +{ +name = top; +pos = (241.655,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(187,271,l), +(203,348,o), +(242,373,o), +(304,373,c), +(366,373,l), +(403,544,l), +(275,544,o), +(199,423,o), +(160,238,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(187,271,l), +(203,348,o), +(242,373,o), +(304,373,c), +(366,373,l), +(403,544,l), +(275,544,o), +(199,423,o), +(160,238,c) +); +} +); +width = 369; +} +); +unicode = 114; +}, +{ +color = 10; +glyphname = racute; +kernLeft = n; +kernRight = r; +lastChange = "2024-03-21 14:49:53 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(154,292,l), +(175,389,o), +(235,429,o), +(314,429,c), +(341,429,l), +(365,540,l), +(252,540,o), +(154,439,o), +(120,279,c) +); +}, +{ +closed = 1; +nodes = ( +(276,585,l), +(413,725,l), +(287,725,l), +(187,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = r; +}, +{ +pos = (-70,0); +ref = acutecomb; +} +); +width = 342; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(187,271,l), +(203,348,o), +(242,373,o), +(304,373,c), +(366,373,l), +(403,544,l), +(275,544,o), +(199,423,o), +(160,238,c) +); +}, +{ +closed = 1; +nodes = ( +(298,585,l), +(454,730,l), +(293,730,l), +(183,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-36,0); +ref = acutecomb; +} +); +width = 369; +} +); +unicode = 341; +}, +{ +color = 10; +glyphname = rcaron; +kernLeft = n; +kernRight = r; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(154,292,l), +(175,389,o), +(235,429,o), +(314,429,c), +(341,429,l), +(365,540,l), +(252,540,o), +(154,439,o), +(120,279,c) +); +}, +{ +closed = 1; +nodes = ( +(261,585,l), +(260,625,l), +(198,725,l), +(116,725,l), +(186,585,l) +); +}, +{ +closed = 1; +nodes = ( +(298,585,l), +(428,725,l), +(334,725,l), +(230,625,l), +(223,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = r; +}, +{ +pos = (-58,0); +ref = caroncomb; +} +); +width = 342; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(187,271,l), +(203,348,o), +(242,373,o), +(304,373,c), +(366,373,l), +(403,544,l), +(275,544,o), +(199,423,o), +(160,238,c) +); +}, +{ +closed = 1; +nodes = ( +(289,585,l), +(284,629,l), +(216,730,l), +(112,730,l), +(183,585,l) +); +}, +{ +closed = 1; +nodes = ( +(323,585,l), +(456,730,l), +(340,730,l), +(229,629,l), +(217,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-46,0); +ref = caroncomb; +} +); +width = 369; +} +); +unicode = 345; +}, +{ +color = 10; +glyphname = rcommaaccent; +kernLeft = n; +kernRight = r; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(0,-275,l), +(84,-72,l), +(-20,-72,l), +(-63,-275,l) +); +}, +{ +closed = 1; +nodes = ( +(154,292,l), +(175,389,o), +(235,429,o), +(314,429,c), +(341,429,l), +(365,540,l), +(252,540,o), +(154,439,o), +(120,279,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = r; +}, +{ +pos = (-135,0); +ref = commaaccentcomb; +} +); +width = 342; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(26,-270,l), +(114,-54,l), +(-18,-54,l), +(-64,-270,l) +); +}, +{ +closed = 1; +nodes = ( +(187,271,l), +(203,348,o), +(242,373,o), +(304,373,c), +(366,373,l), +(403,544,l), +(275,544,o), +(199,423,o), +(160,238,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-122,0); +ref = commaaccentcomb; +} +); +width = 369; +} +); +unicode = 343; +}, +{ +color = 6; +glyphname = s; +kernLeft = s; +kernRight = s; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (173,0); +}, +{ +name = top; +pos = (286,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (173,0); +}, +{ +name = top; +pos = (286,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(340,-10,o), +(412,68,o), +(412,157,c), +(412,328,o), +(158,303,o), +(158,397,c), +(158,428,o), +(191,459,o), +(254,459,c), +(308,459,o), +(351,433,o), +(369,368,c), +(461,399,l), +(440,491,o), +(371,540,o), +(271,540,c), +(129,540,o), +(57,468,o), +(57,380,c), +(57,227,o), +(308,249,o), +(308,145,c), +(308,103,o), +(266,71,o), +(202,71,c), +(142,71,o), +(94,97,o), +(77,164,c), +(-17,134,l), +(-2,39,o), +(80,-10,o), +(191,-10,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(340,-10,o), +(412,68,o), +(412,157,c), +(412,328,o), +(158,303,o), +(158,397,c), +(158,428,o), +(191,459,o), +(254,459,c), +(308,459,o), +(351,433,o), +(369,368,c), +(461,399,l), +(440,491,o), +(371,540,o), +(271,540,c), +(129,540,o), +(57,468,o), +(57,380,c), +(57,227,o), +(308,249,o), +(308,145,c), +(308,103,o), +(266,71,o), +(202,71,c), +(142,71,o), +(94,97,o), +(77,164,c), +(-17,134,l), +(-2,39,o), +(80,-10,o), +(191,-10,c) +); +} +); +width = 492; +}, +{ +anchors = ( +{ +name = bottom; +pos = (187,0); +}, +{ +name = top; +pos = (296,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (187,0); +}, +{ +name = top; +pos = (296,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(356,-14,o), +(450,66,o), +(450,167,c), +(450,349,o), +(192,316,o), +(192,389,c), +(192,410,o), +(210,429,o), +(262,429,c), +(310,429,o), +(331,408,o), +(344,362,c), +(488,404,l), +(468,494,o), +(397,544,o), +(284,544,c), +(133,544,o), +(43,458,o), +(43,368,c), +(43,190,o), +(292,226,o), +(292,147,c), +(292,124,o), +(275,102,o), +(217,102,c), +(169,102,o), +(140,127,o), +(126,183,c), +(-21,140,l), +(-8,38,o), +(71,-14,o), +(198,-14,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(356,-14,o), +(450,66,o), +(450,167,c), +(450,349,o), +(192,316,o), +(192,389,c), +(192,410,o), +(210,429,o), +(262,429,c), +(310,429,o), +(331,408,o), +(344,362,c), +(488,404,l), +(468,494,o), +(397,544,o), +(284,544,c), +(133,544,o), +(43,458,o), +(43,368,c), +(43,190,o), +(292,226,o), +(292,147,c), +(292,124,o), +(275,102,o), +(217,102,c), +(169,102,o), +(140,127,o), +(126,183,c), +(-21,140,l), +(-8,38,o), +(71,-14,o), +(198,-14,c) +); +} +); +width = 514; +} +); +unicode = 115; +}, +{ +color = 10; +glyphname = sacute; +kernLeft = s; +kernRight = s; +lastChange = "2024-03-21 14:49:53 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(340,-10,o), +(412,68,o), +(412,157,c), +(412,328,o), +(158,303,o), +(158,397,c), +(158,428,o), +(191,459,o), +(254,459,c), +(308,459,o), +(351,433,o), +(369,368,c), +(461,399,l), +(440,491,o), +(371,540,o), +(271,540,c), +(129,540,o), +(57,468,o), +(57,380,c), +(57,227,o), +(308,249,o), +(308,145,c), +(308,103,o), +(266,71,o), +(202,71,c), +(142,71,o), +(94,97,o), +(77,164,c), +(-17,134,l), +(-2,39,o), +(80,-10,o), +(191,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(331,585,l), +(468,725,l), +(342,725,l), +(242,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = s; +}, +{ +pos = (-15,0); +ref = acutecomb; +} +); +width = 492; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(356,-14,o), +(450,66,o), +(450,167,c), +(450,349,o), +(192,316,o), +(192,389,c), +(192,410,o), +(210,429,o), +(262,429,c), +(310,429,o), +(331,408,o), +(344,362,c), +(488,404,l), +(468,494,o), +(397,544,o), +(284,544,c), +(133,544,o), +(43,458,o), +(43,368,c), +(43,190,o), +(292,226,o), +(292,147,c), +(292,124,o), +(275,102,o), +(217,102,c), +(169,102,o), +(140,127,o), +(126,183,c), +(-21,140,l), +(-8,38,o), +(71,-14,o), +(198,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(352,585,l), +(508,730,l), +(347,730,l), +(237,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = s; +}, +{ +pos = (18,0); +ref = acutecomb; +} +); +width = 514; +} +); +unicode = 347; +}, +{ +color = 10; +glyphname = scaron; +kernLeft = s; +kernRight = s; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(340,-10,o), +(412,68,o), +(412,157,c), +(412,328,o), +(158,303,o), +(158,397,c), +(158,428,o), +(191,459,o), +(254,459,c), +(308,459,o), +(351,433,o), +(369,368,c), +(461,399,l), +(440,491,o), +(371,540,o), +(271,540,c), +(129,540,o), +(57,468,o), +(57,380,c), +(57,227,o), +(308,249,o), +(308,145,c), +(308,103,o), +(266,71,o), +(202,71,c), +(142,71,o), +(94,97,o), +(77,164,c), +(-17,134,l), +(-2,39,o), +(80,-10,o), +(191,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(316,585,l), +(315,625,l), +(253,725,l), +(171,725,l), +(241,585,l) +); +}, +{ +closed = 1; +nodes = ( +(353,585,l), +(483,725,l), +(389,725,l), +(285,625,l), +(278,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = s; +}, +{ +pos = (-3,0); +ref = caroncomb; +} +); +width = 492; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(356,-14,o), +(450,66,o), +(450,167,c), +(450,349,o), +(192,316,o), +(192,389,c), +(192,410,o), +(210,429,o), +(262,429,c), +(310,429,o), +(331,408,o), +(344,362,c), +(488,404,l), +(468,494,o), +(397,544,o), +(284,544,c), +(133,544,o), +(43,458,o), +(43,368,c), +(43,190,o), +(292,226,o), +(292,147,c), +(292,124,o), +(275,102,o), +(217,102,c), +(169,102,o), +(140,127,o), +(126,183,c), +(-21,140,l), +(-8,38,o), +(71,-14,o), +(198,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(343,585,l), +(338,629,l), +(270,730,l), +(166,730,l), +(237,585,l) +); +}, +{ +closed = 1; +nodes = ( +(377,585,l), +(510,730,l), +(394,730,l), +(283,629,l), +(271,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = s; +}, +{ +pos = (8,0); +ref = caroncomb; +} +); +width = 514; +} +); +unicode = 353; +}, +{ +color = 10; +glyphname = scedilla; +kernLeft = s; +kernRight = s; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(340,-10,o), +(412,68,o), +(412,157,c), +(412,328,o), +(158,303,o), +(158,397,c), +(158,428,o), +(191,459,o), +(254,459,c), +(308,459,o), +(351,433,o), +(369,368,c), +(461,399,l), +(440,491,o), +(371,540,o), +(271,540,c), +(129,540,o), +(57,468,o), +(57,380,c), +(57,227,o), +(308,249,o), +(308,145,c), +(308,103,o), +(266,71,o), +(202,71,c), +(142,71,o), +(94,97,o), +(77,164,c), +(-17,134,l), +(-2,39,o), +(80,-10,o), +(191,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(195,-185,o), +(239,-144,o), +(239,-96,c), +(239,-55,o), +(210,-29,o), +(169,-29,c), +(178,-43,l), +(195,9,l), +(139,11,l), +(108,-73,l), +(120,-71,o), +(127,-70,o), +(138,-70,c), +(160,-70,o), +(171,-79,o), +(171,-94,c), +(171,-108,o), +(157,-119,o), +(132,-119,c), +(112,-119,o), +(97,-114,o), +(81,-105,c), +(54,-169,l), +(77,-180,o), +(101,-185,o), +(127,-185,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = s; +}, +{ +pos = (-6,0); +ref = cedillacomb; +} +); +width = 492; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(356,-14,o), +(450,66,o), +(450,167,c), +(450,349,o), +(192,316,o), +(192,389,c), +(192,410,o), +(210,429,o), +(262,429,c), +(310,429,o), +(331,408,o), +(344,362,c), +(488,404,l), +(468,494,o), +(397,544,o), +(284,544,c), +(133,544,o), +(43,458,o), +(43,368,c), +(43,190,o), +(292,226,o), +(292,147,c), +(292,124,o), +(275,102,o), +(217,102,c), +(169,102,o), +(140,127,o), +(126,183,c), +(-21,140,l), +(-8,38,o), +(71,-14,o), +(198,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(229,-190,o), +(268,-146,o), +(268,-97,c), +(268,-57,o), +(239,-29,o), +(189,-29,c), +(198,-43,l), +(215,9,l), +(147,11,l), +(114,-80,l), +(126,-76,o), +(136,-74,o), +(148,-74,c), +(168,-74,o), +(178,-80,o), +(178,-91,c), +(178,-103,o), +(167,-109,o), +(144,-109,c), +(124,-109,o), +(102,-105,o), +(83,-94,c), +(54,-174,l), +(79,-185,o), +(109,-190,o), +(137,-190,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = s; +}, +{ +pos = (7,0); +ref = cedillacomb; +} +); +width = 514; +} +); +unicode = 351; +}, +{ +color = 10; +glyphname = scircumflex; +kernLeft = s; +kernRight = s; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(340,-10,o), +(412,68,o), +(412,157,c), +(412,328,o), +(158,303,o), +(158,397,c), +(158,428,o), +(191,459,o), +(254,459,c), +(308,459,o), +(351,433,o), +(369,368,c), +(461,399,l), +(440,491,o), +(371,540,o), +(271,540,c), +(129,540,o), +(57,468,o), +(57,380,c), +(57,227,o), +(308,249,o), +(308,145,c), +(308,103,o), +(266,71,o), +(202,71,c), +(142,71,o), +(94,97,o), +(77,164,c), +(-17,134,l), +(-2,39,o), +(80,-10,o), +(191,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(235,585,l), +(339,685,l), +(346,725,l), +(271,725,l), +(141,585,l) +); +}, +{ +closed = 1; +nodes = ( +(453,585,l), +(383,725,l), +(308,725,l), +(309,685,l), +(371,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = s; +}, +{ +pos = (-2,0); +ref = circumflexcomb; +} +); +width = 492; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(356,-14,o), +(450,66,o), +(450,167,c), +(450,349,o), +(192,316,o), +(192,389,c), +(192,410,o), +(210,429,o), +(262,429,c), +(310,429,o), +(331,408,o), +(344,362,c), +(488,404,l), +(468,494,o), +(397,544,o), +(284,544,c), +(133,544,o), +(43,458,o), +(43,368,c), +(43,190,o), +(292,226,o), +(292,147,c), +(292,124,o), +(275,102,o), +(217,102,c), +(169,102,o), +(140,127,o), +(126,183,c), +(-21,140,l), +(-8,38,o), +(71,-14,o), +(198,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(251,585,l), +(362,686,l), +(374,730,l), +(268,730,l), +(135,585,l) +); +}, +{ +closed = 1; +nodes = ( +(479,585,l), +(408,730,l), +(302,730,l), +(307,686,l), +(375,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = s; +}, +{ +pos = (8,0); +ref = circumflexcomb; +} +); +width = 514; +} +); +unicode = 349; +}, +{ +color = 10; +glyphname = scommaaccent; +kernLeft = s; +kernRight = s; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(340,-10,o), +(412,68,o), +(412,157,c), +(412,328,o), +(158,303,o), +(158,397,c), +(158,428,o), +(191,459,o), +(254,459,c), +(308,459,o), +(351,433,o), +(369,368,c), +(461,399,l), +(440,491,o), +(371,540,o), +(271,540,c), +(129,540,o), +(57,468,o), +(57,380,c), +(57,227,o), +(308,249,o), +(308,145,c), +(308,103,o), +(266,71,o), +(202,71,c), +(142,71,o), +(94,97,o), +(77,164,c), +(-17,134,l), +(-2,39,o), +(80,-10,o), +(191,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(131,-275,l), +(215,-72,l), +(111,-72,l), +(68,-275,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = s; +}, +{ +pos = (-4,0); +ref = commaaccentcomb; +} +); +width = 492; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(356,-14,o), +(450,66,o), +(450,167,c), +(450,349,o), +(192,316,o), +(192,389,c), +(192,410,o), +(210,429,o), +(262,429,c), +(310,429,o), +(331,408,o), +(344,362,c), +(488,404,l), +(468,494,o), +(397,544,o), +(284,544,c), +(133,544,o), +(43,458,o), +(43,368,c), +(43,190,o), +(292,226,o), +(292,147,c), +(292,124,o), +(275,102,o), +(217,102,c), +(169,102,o), +(140,127,o), +(126,183,c), +(-21,140,l), +(-8,38,o), +(71,-14,o), +(198,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(158,-270,l), +(246,-54,l), +(114,-54,l), +(68,-270,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = s; +}, +{ +pos = (10,0); +ref = commaaccentcomb; +} +); +width = 514; +} +); +unicode = 537; +}, +{ +color = 6; +glyphname = germandbls; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(421,-10,o), +(505,56,o), +(505,167,c), +(505,293,o), +(367,328,o), +(367,376,c), +(367,423,o), +(514,443,o), +(514,586,c), +(514,666,o), +(450,725,o), +(345,725,c), +(209,725,o), +(130,648,o), +(99,504,cs), +(-8,0,l), +(92,0,l), +(201,511,ls), +(217,585,o), +(262,636,o), +(332,636,c), +(388,636,o), +(415,613,o), +(415,575,cs), +(415,490,o), +(268,476,o), +(268,359,c), +(268,263,o), +(406,241,o), +(406,158,c), +(406,104,o), +(366,80,o), +(312,80,c), +(268,80,o), +(235,89,o), +(196,113,c), +(150,27,l), +(185,4,o), +(230,-10,o), +(289,-10,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(421,-10,o), +(505,56,o), +(505,167,c), +(505,293,o), +(367,328,o), +(367,376,c), +(367,423,o), +(514,443,o), +(514,586,c), +(514,666,o), +(450,725,o), +(345,725,c), +(209,725,o), +(130,648,o), +(99,504,cs), +(-8,0,l), +(92,0,l), +(201,511,ls), +(217,585,o), +(262,636,o), +(332,636,c), +(388,636,o), +(415,613,o), +(415,575,cs), +(415,490,o), +(268,476,o), +(268,359,c), +(268,263,o), +(406,241,o), +(406,158,c), +(406,104,o), +(366,80,o), +(312,80,c), +(268,80,o), +(235,89,o), +(196,113,c), +(150,27,l), +(185,4,o), +(230,-10,o), +(289,-10,c) +); +} +); +width = 578; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(451,-14,o), +(535,71,o), +(535,166,c), +(535,290,o), +(417,322,o), +(417,368,c), +(417,432,o), +(534,422,o), +(534,570,c), +(534,661,o), +(467,729,o), +(358,729,c), +(213,729,o), +(118,650,o), +(84,491,c), +(-20,0,l), +(129,0,l), +(235,501,l), +(249,563,o), +(281,593,o), +(332,593,c), +(372,593,o), +(392,575,o), +(392,544,c), +(392,465,o), +(263,455,o), +(263,350,cs), +(263,268,o), +(389,245,o), +(389,166,c), +(389,125,o), +(360,102,o), +(311,102,c), +(280,102,o), +(250,115,o), +(224,136,c), +(152,29,l), +(190,4,o), +(240,-14,o), +(321,-14,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(451,-14,o), +(535,71,o), +(535,166,c), +(535,290,o), +(417,322,o), +(417,368,c), +(417,432,o), +(534,422,o), +(534,570,c), +(534,661,o), +(467,729,o), +(358,729,c), +(213,729,o), +(118,650,o), +(84,491,c), +(-20,0,l), +(129,0,l), +(235,501,l), +(249,563,o), +(281,593,o), +(332,593,c), +(372,593,o), +(392,575,o), +(392,544,c), +(392,465,o), +(263,455,o), +(263,350,cs), +(263,268,o), +(389,245,o), +(389,166,c), +(389,125,o), +(360,102,o), +(311,102,c), +(280,102,o), +(250,115,o), +(224,136,c), +(152,29,l), +(190,4,o), +(240,-14,o), +(321,-14,c) +); +} +); +width = 592; +} +); +unicode = 223; +}, +{ +color = 6; +glyphname = t; +kernLeft = t; +kernRight = t; +lastChange = "2024-03-22 13:33:20 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (152,0); +}, +{ +name = center; +pos = (186,265); +}, +{ +name = top; +pos = (270,660); +}, +{ +name = topright; +pos = (437,717); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (149,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(226,-10,o), +(251,-7,o), +(275,0,c), +(295,93,l), +(271,87,o), +(248,83,o), +(221,83,cs), +(175,83,o), +(150,99,o), +(150,139,cs), +(150,148,o), +(151,157,o), +(153,168,cs), +(257,660,l), +(153,640,l), +(55,180,ls), +(51,163,o), +(49,140,o), +(49,125,cs), +(49,52,o), +(91,-10,o), +(204,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(364,443,l), +(383,530,l), +(55,530,l), +(36,443,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(226,-10,o), +(251,-7,o), +(275,0,c), +(295,93,l), +(271,87,o), +(248,83,o), +(221,83,cs), +(175,83,o), +(150,99,o), +(150,139,cs), +(150,148,o), +(151,157,o), +(153,168,cs), +(257,660,l), +(153,640,l), +(55,180,ls), +(51,163,o), +(49,140,o), +(49,125,cs), +(49,52,o), +(91,-10,o), +(204,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(364,443,l), +(383,530,l), +(55,530,l), +(36,443,l) +); +} +); +width = 371; +}, +{ +anchors = ( +{ +name = bottom; +pos = (174,0); +}, +{ +name = center; +pos = (194,265); +}, +{ +name = top; +pos = (280,669); +}, +{ +name = topright; +pos = (453,715); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (170,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(239,-14,o), +(272,-9,o), +(300,0,c), +(328,133,l), +(306,126,o), +(285,121,o), +(261,121,c), +(216,121,o), +(194,136,o), +(194,171,cs), +(194,179,o), +(195,188,o), +(197,197,cs), +(297,669,l), +(142,640,l), +(50,207,ls), +(45,183,o), +(43,161,o), +(43,141,cs), +(43,41,o), +(103,-14,o), +(207,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(382,407,l), +(408,530,l), +(53,530,l), +(27,407,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(239,-14,o), +(272,-9,o), +(300,0,c), +(328,133,l), +(306,126,o), +(285,121,o), +(261,121,c), +(216,121,o), +(194,136,o), +(194,171,cs), +(194,179,o), +(195,188,o), +(197,197,cs), +(297,669,l), +(142,640,l), +(50,207,ls), +(45,183,o), +(43,161,o), +(43,141,cs), +(43,41,o), +(103,-14,o), +(207,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(382,407,l), +(408,530,l), +(53,530,l), +(27,407,l) +); +} +); +width = 387; +} +); +unicode = 116; +}, +{ +color = 6; +glyphname = tbar; +kernLeft = t; +kernRight = t; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(221,-10,o), +(246,-7,o), +(270,0,c), +(290,93,l), +(266,87,o), +(243,83,o), +(216,83,cs), +(170,83,o), +(145,99,o), +(145,139,cs), +(145,148,o), +(146,157,o), +(148,168,cs), +(252,660,l), +(148,640,l), +(50,180,ls), +(46,163,o), +(44,140,o), +(44,125,cs), +(44,52,o), +(86,-10,o), +(199,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(324,277,l), +(342,363,l), +(14,363,l), +(-4,277,l) +); +}, +{ +closed = 1; +nodes = ( +(359,443,l), +(378,530,l), +(50,530,l), +(31,443,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(221,-10,o), +(246,-7,o), +(270,0,c), +(290,93,l), +(266,87,o), +(243,83,o), +(216,83,cs), +(170,83,o), +(145,99,o), +(145,139,cs), +(145,148,o), +(146,157,o), +(148,168,cs), +(252,660,l), +(148,640,l), +(50,180,ls), +(46,163,o), +(44,140,o), +(44,125,cs), +(44,52,o), +(86,-10,o), +(199,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(324,277,l), +(342,363,l), +(14,363,l), +(-4,277,l) +); +}, +{ +closed = 1; +nodes = ( +(359,443,l), +(378,530,l), +(50,530,l), +(31,443,l) +); +} +); +width = 366; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(234,-14,o), +(267,-9,o), +(295,0,c), +(323,133,l), +(301,126,o), +(280,121,o), +(256,121,c), +(211,121,o), +(189,136,o), +(189,171,cs), +(189,179,o), +(190,188,o), +(192,197,cs), +(292,669,l), +(137,640,l), +(45,207,ls), +(40,183,o), +(38,161,o), +(38,141,cs), +(38,41,o), +(98,-14,o), +(202,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(340,234,l), +(364,349,l), +(9,349,l), +(-15,234,l) +); +}, +{ +closed = 1; +nodes = ( +(377,407,l), +(403,530,l), +(48,530,l), +(22,407,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(234,-14,o), +(267,-9,o), +(295,0,c), +(323,133,l), +(301,126,o), +(280,121,o), +(256,121,c), +(211,121,o), +(189,136,o), +(189,171,cs), +(189,179,o), +(190,188,o), +(192,197,cs), +(292,669,l), +(137,640,l), +(45,207,ls), +(40,183,o), +(38,161,o), +(38,141,cs), +(38,41,o), +(98,-14,o), +(202,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(340,234,l), +(364,349,l), +(9,349,l), +(-15,234,l) +); +}, +{ +closed = 1; +nodes = ( +(377,407,l), +(403,530,l), +(48,530,l), +(22,407,l) +); +} +); +width = 382; +} +); +unicode = 359; +}, +{ +color = 10; +glyphname = tcaron; +kernLeft = t; +kernRight = tcaron; +lastChange = "2024-03-22 13:32:52 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(221,-10,o), +(246,-7,o), +(270,0,c), +(290,93,l), +(266,87,o), +(243,83,o), +(216,83,cs), +(170,83,o), +(145,99,o), +(145,139,cs), +(145,148,o), +(146,157,o), +(148,168,cs), +(252,660,l), +(148,640,l), +(50,180,ls), +(46,163,o), +(44,140,o), +(44,125,cs), +(44,52,o), +(86,-10,o), +(199,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(289,443,l), +(308,530,l), +(50,530,l), +(31,443,l) +); +}, +{ +closed = 1; +nodes = ( +(394,417,l), +(496,690,l), +(392,690,l), +(334,417,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = t; +}, +{ +pos = (175,2); +ref = caroncomb.alt; +} +); +width = 371; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(235,-14,o), +(268,-9,o), +(296,0,c), +(324,133,l), +(302,126,o), +(281,121,o), +(257,121,c), +(212,121,o), +(190,136,o), +(190,171,cs), +(190,179,o), +(191,188,o), +(193,197,cs), +(293,669,l), +(138,640,l), +(46,207,ls), +(41,183,o), +(39,161,o), +(39,141,cs), +(39,41,o), +(99,-14,o), +(203,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(308,407,l), +(334,530,l), +(49,530,l), +(23,407,l) +); +}, +{ +closed = 1; +nodes = ( +(435,383,l), +(563,690,l), +(413,690,l), +(347,383,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = t; +}, +{ +pos = (205,0); +ref = caroncomb.alt; +} +); +width = 387; +} +); +unicode = 357; +}, +{ +color = 10; +glyphname = tcedilla; +kernLeft = t; +kernRight = t; +lastChange = "2024-03-21 14:47:13 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(226,-10,o), +(251,-7,o), +(275,0,c), +(295,93,l), +(271,87,o), +(248,83,o), +(221,83,cs), +(175,83,o), +(150,99,o), +(150,139,cs), +(150,148,o), +(151,157,o), +(153,168,cs), +(257,660,l), +(153,640,l), +(55,180,ls), +(51,163,o), +(49,140,o), +(49,125,cs), +(49,52,o), +(91,-10,o), +(204,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(171,-185,o), +(215,-144,o), +(215,-96,c), +(215,-55,o), +(186,-29,o), +(145,-29,c), +(154,-43,l), +(171,9,l), +(115,11,l), +(84,-73,l), +(96,-71,o), +(103,-70,o), +(114,-70,c), +(136,-70,o), +(147,-79,o), +(147,-94,c), +(147,-108,o), +(133,-119,o), +(108,-119,c), +(88,-119,o), +(73,-114,o), +(57,-105,c), +(30,-169,l), +(53,-180,o), +(77,-185,o), +(103,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(364,443,l), +(383,530,l), +(55,530,l), +(36,443,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = t; +}, +{ +pos = (-27,0); +ref = cedillacomb; +} +); +width = 371; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(239,-14,o), +(272,-9,o), +(300,0,c), +(328,133,l), +(306,126,o), +(285,121,o), +(261,121,c), +(216,121,o), +(194,136,o), +(194,171,cs), +(194,179,o), +(195,188,o), +(197,197,cs), +(297,669,l), +(142,640,l), +(50,207,ls), +(45,183,o), +(43,161,o), +(43,141,cs), +(43,41,o), +(103,-14,o), +(207,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(212,-190,o), +(251,-146,o), +(251,-97,c), +(251,-57,o), +(222,-29,o), +(172,-29,c), +(181,-43,l), +(198,9,l), +(130,11,l), +(97,-80,l), +(109,-76,o), +(119,-74,o), +(131,-74,c), +(151,-74,o), +(161,-80,o), +(161,-91,c), +(161,-103,o), +(150,-109,o), +(127,-109,c), +(107,-109,o), +(85,-105,o), +(66,-94,c), +(37,-174,l), +(62,-185,o), +(92,-190,o), +(120,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(382,407,l), +(408,530,l), +(53,530,l), +(27,407,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = t; +}, +{ +pos = (-6,0); +ref = cedillacomb; +} +); +width = 387; +} +); +unicode = 355; +}, +{ +color = 10; +glyphname = tcommaaccent; +kernLeft = t; +kernRight = t; +lastChange = "2024-03-21 14:47:13 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(226,-10,o), +(251,-7,o), +(275,0,c), +(295,93,l), +(271,87,o), +(248,83,o), +(221,83,cs), +(175,83,o), +(150,99,o), +(150,139,cs), +(150,148,o), +(151,157,o), +(153,168,cs), +(257,660,l), +(153,640,l), +(55,180,ls), +(51,163,o), +(49,140,o), +(49,125,cs), +(49,52,o), +(91,-10,o), +(204,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(107,-275,l), +(191,-72,l), +(87,-72,l), +(44,-275,l) +); +}, +{ +closed = 1; +nodes = ( +(364,443,l), +(383,530,l), +(55,530,l), +(36,443,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = t; +}, +{ +pos = (-25,0); +ref = commaaccentcomb; +} +); +width = 371; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(239,-14,o), +(272,-9,o), +(300,0,c), +(328,133,l), +(306,126,o), +(285,121,o), +(261,121,c), +(216,121,o), +(194,136,o), +(194,171,cs), +(194,179,o), +(195,188,o), +(197,197,cs), +(297,669,l), +(142,640,l), +(50,207,ls), +(45,183,o), +(43,161,o), +(43,141,cs), +(43,41,o), +(103,-14,o), +(207,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(141,-270,l), +(229,-54,l), +(97,-54,l), +(51,-270,l) +); +}, +{ +closed = 1; +nodes = ( +(382,407,l), +(408,530,l), +(53,530,l), +(27,407,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = t; +}, +{ +pos = (-3,0); +ref = commaaccentcomb; +} +); +width = 387; +} +); +unicode = 539; +}, +{ +color = 6; +glyphname = u; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 14:04:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (212,0); +}, +{ +name = ogonek; +pos = (432,0); +}, +{ +name = top; +pos = (324.655,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (212,0); +}, +{ +name = top; +pos = (324.655,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(288,-10,o), +(382,79,o), +(412,221,c), +(369,172,l), +(332,0,l), +(432,0,l), +(545,530,l), +(445,530,l), +(379,221,ls), +(359,127,o), +(296,76,o), +(229,76,c), +(169,76,o), +(134,112,o), +(134,179,cs), +(134,192,o), +(136,206,o), +(139,221,cs), +(205,530,l), +(105,530,l), +(38,217,ls), +(35,202,o), +(32,179,o), +(32,161,cs), +(32,61,o), +(89,-10,o), +(186,-10,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(288,-10,o), +(382,79,o), +(412,221,c), +(369,172,l), +(332,0,l), +(432,0,l), +(545,530,l), +(445,530,l), +(379,221,ls), +(359,127,o), +(296,76,o), +(229,76,c), +(169,76,o), +(134,112,o), +(134,179,cs), +(134,192,o), +(136,206,o), +(139,221,cs), +(205,530,l), +(105,530,l), +(38,217,ls), +(35,202,o), +(32,179,o), +(32,161,cs), +(32,61,o), +(89,-10,o), +(186,-10,c) +); +} +); +width = 569; +}, +{ +anchors = ( +{ +name = bottom; +pos = (220,0); +}, +{ +name = ogonek; +pos = (460,0); +}, +{ +name = top; +pos = (333,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (220,0); +}, +{ +name = top; +pos = (333,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(270,-14,o), +(353,73,o), +(385,226,c), +(351,190,l), +(311,0,l), +(460,0,l), +(573,530,l), +(424,530,l), +(359,226,ls), +(344,155,o), +(298,117,o), +(245,117,c), +(201,117,o), +(173,143,o), +(173,192,cs), +(173,202,o), +(174,212,o), +(177,226,cs), +(242,530,l), +(93,530,l), +(26,218,ls), +(21,195,o), +(19,174,o), +(19,153,cs), +(19,55,o), +(78,-14,o), +(169,-14,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(270,-14,o), +(353,73,o), +(385,226,c), +(351,190,l), +(311,0,l), +(460,0,l), +(573,530,l), +(424,530,l), +(359,226,ls), +(344,155,o), +(298,117,o), +(245,117,c), +(201,117,o), +(173,143,o), +(173,192,cs), +(173,202,o), +(174,212,o), +(177,226,cs), +(242,530,l), +(93,530,l), +(26,218,ls), +(21,195,o), +(19,174,o), +(19,153,cs), +(19,55,o), +(78,-14,o), +(169,-14,c) +); +} +); +width = 585; +} +); +unicode = 117; +}, +{ +color = 10; +glyphname = uacute; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 14:49:53 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(288,-10,o), +(382,79,o), +(412,221,c), +(369,172,l), +(332,0,l), +(432,0,l), +(545,530,l), +(445,530,l), +(379,221,ls), +(359,127,o), +(296,76,o), +(229,76,c), +(169,76,o), +(134,112,o), +(134,179,cs), +(134,192,o), +(136,206,o), +(139,221,cs), +(205,530,l), +(105,530,l), +(38,217,ls), +(35,202,o), +(32,179,o), +(32,161,cs), +(32,61,o), +(89,-10,o), +(186,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(370,585,l), +(507,725,l), +(381,725,l), +(281,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (24,0); +ref = acutecomb; +} +); +width = 569; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(270,-14,o), +(353,73,o), +(385,226,c), +(351,190,l), +(311,0,l), +(460,0,l), +(573,530,l), +(424,530,l), +(359,226,ls), +(344,155,o), +(298,117,o), +(245,117,c), +(201,117,o), +(173,143,o), +(173,192,cs), +(173,202,o), +(174,212,o), +(177,226,cs), +(242,530,l), +(93,530,l), +(26,218,ls), +(21,195,o), +(19,174,o), +(19,153,cs), +(19,55,o), +(78,-14,o), +(169,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(389,585,l), +(545,730,l), +(384,730,l), +(274,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = u; +}, +{ +pos = (55,0); +ref = acutecomb; +} +); +width = 585; +} +); +unicode = 250; +}, +{ +color = 10; +glyphname = ubreve; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(288,-10,o), +(382,79,o), +(412,221,c), +(369,172,l), +(332,0,l), +(432,0,l), +(545,530,l), +(445,530,l), +(379,221,ls), +(359,127,o), +(296,76,o), +(229,76,c), +(169,76,o), +(134,112,o), +(134,179,cs), +(134,192,o), +(136,206,o), +(139,221,cs), +(205,530,l), +(105,530,l), +(38,217,ls), +(35,202,o), +(32,179,o), +(32,161,cs), +(32,61,o), +(89,-10,o), +(186,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(441,585,o), +(488,639,o), +(506,725,c), +(436,725,l), +(428,684,o), +(397,660,o), +(350,660,c), +(312,660,o), +(294,677,o), +(294,707,cs), +(294,712,o), +(295,719,o), +(296,725,c), +(226,725,l), +(224,713,o), +(223,702,o), +(223,692,cs), +(223,629,o), +(269,585,o), +(346,585,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (36,0); +ref = brevecomb; +} +); +width = 569; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(270,-14,o), +(353,73,o), +(385,226,c), +(351,190,l), +(311,0,l), +(460,0,l), +(573,530,l), +(424,530,l), +(359,226,ls), +(344,155,o), +(298,117,o), +(245,117,c), +(201,117,o), +(173,143,o), +(173,192,cs), +(173,202,o), +(174,212,o), +(177,226,cs), +(242,530,l), +(93,530,l), +(26,218,ls), +(21,195,o), +(19,174,o), +(19,153,cs), +(19,55,o), +(78,-14,o), +(169,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(459,585,o), +(505,639,o), +(524,730,c), +(433,730,l), +(426,693,o), +(398,671,o), +(361,671,c), +(330,671,o), +(315,686,o), +(315,713,cs), +(315,718,o), +(316,724,o), +(317,730,c), +(226,730,l), +(224,718,o), +(223,708,o), +(223,697,cs), +(223,626,o), +(273,585,o), +(354,585,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = u; +}, +{ +pos = (45,0); +ref = brevecomb; +} +); +width = 585; +} +); +unicode = 365; +}, +{ +color = 10; +glyphname = ucircumflex; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(288,-10,o), +(382,79,o), +(412,221,c), +(369,172,l), +(332,0,l), +(432,0,l), +(545,530,l), +(445,530,l), +(379,221,ls), +(359,127,o), +(296,76,o), +(229,76,c), +(169,76,o), +(134,112,o), +(134,179,cs), +(134,192,o), +(136,206,o), +(139,221,cs), +(205,530,l), +(105,530,l), +(38,217,ls), +(35,202,o), +(32,179,o), +(32,161,cs), +(32,61,o), +(89,-10,o), +(186,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(274,585,l), +(378,685,l), +(385,725,l), +(310,725,l), +(180,585,l) +); +}, +{ +closed = 1; +nodes = ( +(492,585,l), +(422,725,l), +(347,725,l), +(348,685,l), +(410,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (37,0); +ref = circumflexcomb; +} +); +width = 569; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(270,-14,o), +(353,73,o), +(385,226,c), +(351,190,l), +(311,0,l), +(460,0,l), +(573,530,l), +(424,530,l), +(359,226,ls), +(344,155,o), +(298,117,o), +(245,117,c), +(201,117,o), +(173,143,o), +(173,192,cs), +(173,202,o), +(174,212,o), +(177,226,cs), +(242,530,l), +(93,530,l), +(26,218,ls), +(21,195,o), +(19,174,o), +(19,153,cs), +(19,55,o), +(78,-14,o), +(169,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(288,585,l), +(399,686,l), +(411,730,l), +(305,730,l), +(172,585,l) +); +}, +{ +closed = 1; +nodes = ( +(516,585,l), +(445,730,l), +(339,730,l), +(344,686,l), +(412,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = u; +}, +{ +pos = (45,0); +ref = circumflexcomb; +} +); +width = 585; +} +); +unicode = 251; +}, +{ +color = 10; +glyphname = udieresis; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(288,-10,o), +(382,79,o), +(412,221,c), +(369,172,l), +(332,0,l), +(432,0,l), +(545,530,l), +(445,530,l), +(379,221,ls), +(359,127,o), +(296,76,o), +(229,76,c), +(169,76,o), +(134,112,o), +(134,179,cs), +(134,192,o), +(136,206,o), +(139,221,cs), +(205,530,l), +(105,530,l), +(38,217,ls), +(35,202,o), +(32,179,o), +(32,161,cs), +(32,61,o), +(89,-10,o), +(186,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(291,602,o), +(317,627,o), +(317,662,c), +(317,694,o), +(296,715,o), +(265,715,c), +(230,715,o), +(205,690,o), +(205,653,c), +(205,623,o), +(226,602,o), +(256,602,c) +); +}, +{ +closed = 1; +nodes = ( +(473,602,o), +(499,627,o), +(499,662,c), +(499,694,o), +(478,715,o), +(447,715,c), +(412,715,o), +(387,690,o), +(387,653,c), +(387,623,o), +(408,602,o), +(438,602,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (35,0); +ref = dieresiscomb; +} +); +width = 569; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(270,-14,o), +(353,73,o), +(385,226,c), +(351,190,l), +(311,0,l), +(460,0,l), +(573,530,l), +(424,530,l), +(359,226,ls), +(344,155,o), +(298,117,o), +(245,117,c), +(201,117,o), +(173,143,o), +(173,192,cs), +(173,202,o), +(174,212,o), +(177,226,cs), +(242,530,l), +(93,530,l), +(26,218,ls), +(21,195,o), +(19,174,o), +(19,153,cs), +(19,55,o), +(78,-14,o), +(169,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(299,588,o), +(333,618,o), +(333,664,c), +(333,703,o), +(308,728,o), +(267,728,c), +(225,728,o), +(191,698,o), +(191,652,c), +(191,613,o), +(216,588,o), +(257,588,c) +); +}, +{ +closed = 1; +nodes = ( +(495,588,o), +(529,618,o), +(529,664,c), +(529,703,o), +(504,728,o), +(463,728,c), +(421,728,o), +(387,698,o), +(387,652,c), +(387,613,o), +(412,588,o), +(453,588,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = u; +}, +{ +pos = (43,0); +ref = dieresiscomb; +} +); +width = 585; +} +); +unicode = 252; +}, +{ +color = 10; +glyphname = udotbelow; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(288,-10,o), +(382,79,o), +(412,221,c), +(369,172,l), +(332,0,l), +(432,0,l), +(545,530,l), +(445,530,l), +(379,221,ls), +(359,127,o), +(296,76,o), +(229,76,c), +(169,76,o), +(134,112,o), +(134,179,cs), +(134,192,o), +(136,206,o), +(139,221,cs), +(205,530,l), +(105,530,l), +(38,217,ls), +(35,202,o), +(32,179,o), +(32,161,cs), +(32,61,o), +(89,-10,o), +(186,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(216,-195,o), +(244,-168,o), +(244,-130,c), +(244,-95,o), +(221,-72,o), +(187,-72,c), +(149,-72,o), +(122,-99,o), +(122,-140,c), +(122,-172,o), +(145,-195,o), +(178,-195,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (36,0); +ref = dotbelow; +} +); +width = 569; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(270,-14,o), +(353,73,o), +(385,226,c), +(351,190,l), +(311,0,l), +(460,0,l), +(573,530,l), +(424,530,l), +(359,226,ls), +(344,155,o), +(298,117,o), +(245,117,c), +(201,117,o), +(173,143,o), +(173,192,cs), +(173,202,o), +(174,212,o), +(177,226,cs), +(242,530,l), +(93,530,l), +(26,218,ls), +(21,195,o), +(19,174,o), +(19,153,cs), +(19,55,o), +(78,-14,o), +(169,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(234,-198,o), +(270,-166,o), +(270,-117,c), +(270,-75,o), +(243,-48,o), +(199,-48,c), +(154,-48,o), +(118,-80,o), +(118,-130,c), +(118,-171,o), +(145,-198,o), +(189,-198,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = u; +}, +{ +pos = (43,0); +ref = dotbelow; +} +); +width = 585; +} +); +unicode = 7909; +}, +{ +color = 10; +glyphname = ugrave; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 14:48:12 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(288,-10,o), +(382,79,o), +(412,221,c), +(369,172,l), +(332,0,l), +(432,0,l), +(545,530,l), +(445,530,l), +(379,221,ls), +(359,127,o), +(296,76,o), +(229,76,c), +(169,76,o), +(134,112,o), +(134,179,cs), +(134,192,o), +(136,206,o), +(139,221,cs), +(205,530,l), +(105,530,l), +(38,217,ls), +(35,202,o), +(32,179,o), +(32,161,cs), +(32,61,o), +(89,-10,o), +(186,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(386,585,l), +(346,725,l), +(225,725,l), +(305,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (35,0); +ref = gravecomb; +} +); +width = 569; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(270,-14,o), +(353,73,o), +(385,226,c), +(351,190,l), +(311,0,l), +(460,0,l), +(573,530,l), +(424,530,l), +(359,226,ls), +(344,155,o), +(298,117,o), +(245,117,c), +(201,117,o), +(173,143,o), +(173,192,cs), +(173,202,o), +(174,212,o), +(177,226,cs), +(242,530,l), +(93,530,l), +(26,218,ls), +(21,195,o), +(19,174,o), +(19,153,cs), +(19,55,o), +(78,-14,o), +(169,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(407,585,l), +(358,730,l), +(208,730,l), +(305,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = u; +}, +{ +pos = (97,0); +ref = gravecomb; +} +); +width = 585; +} +); +unicode = 249; +}, +{ +color = 10; +glyphname = uhungarumlaut; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 14:48:20 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(288,-10,o), +(382,79,o), +(412,221,c), +(369,172,l), +(332,0,l), +(432,0,l), +(545,530,l), +(445,530,l), +(379,221,ls), +(359,127,o), +(296,76,o), +(229,76,c), +(169,76,o), +(134,112,o), +(134,179,cs), +(134,192,o), +(136,206,o), +(139,221,cs), +(205,530,l), +(105,530,l), +(38,217,ls), +(35,202,o), +(32,179,o), +(32,161,cs), +(32,61,o), +(89,-10,o), +(186,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(314,585,l), +(414,725,l), +(311,725,l), +(231,585,l) +); +}, +{ +closed = 1; +nodes = ( +(446,585,l), +(576,725,l), +(463,725,l), +(363,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (36,0); +ref = hungarumlautcomb; +} +); +width = 569; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(270,-14,o), +(353,73,o), +(385,226,c), +(351,190,l), +(311,0,l), +(460,0,l), +(573,530,l), +(424,530,l), +(359,226,ls), +(344,155,o), +(298,117,o), +(245,117,c), +(201,117,o), +(173,143,o), +(173,192,cs), +(173,202,o), +(174,212,o), +(177,226,cs), +(242,530,l), +(93,530,l), +(26,218,ls), +(21,195,o), +(19,174,o), +(19,153,cs), +(19,55,o), +(78,-14,o), +(169,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(332,585,l), +(447,730,l), +(307,730,l), +(225,585,l) +); +}, +{ +closed = 1; +nodes = ( +(469,585,l), +(625,730,l), +(478,730,l), +(363,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = u; +}, +{ +pos = (45,0); +ref = hungarumlautcomb; +} +); +width = 585; +} +); +unicode = 369; +}, +{ +color = 10; +glyphname = umacron; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(288,-10,o), +(382,79,o), +(412,221,c), +(369,172,l), +(332,0,l), +(432,0,l), +(545,530,l), +(445,530,l), +(379,221,ls), +(359,127,o), +(296,76,o), +(229,76,c), +(169,76,o), +(134,112,o), +(134,179,cs), +(134,192,o), +(136,206,o), +(139,221,cs), +(205,530,l), +(105,530,l), +(38,217,ls), +(35,202,o), +(32,179,o), +(32,161,cs), +(32,61,o), +(89,-10,o), +(186,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(482,621,l), +(500,705,l), +(224,705,l), +(206,621,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (35,0); +ref = macroncomb; +} +); +width = 569; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(270,-14,o), +(353,73,o), +(385,226,c), +(351,190,l), +(311,0,l), +(460,0,l), +(573,530,l), +(424,530,l), +(359,226,ls), +(344,155,o), +(298,117,o), +(245,117,c), +(201,117,o), +(173,143,o), +(173,192,cs), +(173,202,o), +(174,212,o), +(177,226,cs), +(242,530,l), +(93,530,l), +(26,218,ls), +(21,195,o), +(19,174,o), +(19,153,cs), +(19,55,o), +(78,-14,o), +(169,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(495,603,l), +(520,718,l), +(226,718,l), +(201,603,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = u; +}, +{ +pos = (44,0); +ref = macroncomb; +} +); +width = 585; +} +); +unicode = 363; +}, +{ +color = 10; +glyphname = uogonek; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 14:04:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(288,-10,o), +(382,79,o), +(412,221,c), +(369,172,l), +(332,0,l), +(432,0,l), +(545,530,l), +(445,530,l), +(379,221,ls), +(359,127,o), +(296,76,o), +(229,76,c), +(169,76,o), +(134,112,o), +(134,179,cs), +(134,192,o), +(136,206,o), +(139,221,cs), +(205,530,l), +(105,530,l), +(38,217,ls), +(35,202,o), +(32,179,o), +(32,161,cs), +(32,61,o), +(89,-10,o), +(186,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(338,-185,o), +(375,-176,o), +(397,-165,c), +(405,-84,l), +(380,-96,o), +(349,-106,o), +(323,-106,c), +(312,-106,o), +(306,-101,o), +(306,-93,cs), +(306,-72,o), +(343,-38,o), +(432,0,c), +(332,0,l), +(247,-35,o), +(218,-74,o), +(218,-118,c), +(218,-155,o), +(244,-185,o), +(306,-185,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (202,0); +ref = ogonekcomb; +} +); +width = 569; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(270,-14,o), +(353,73,o), +(385,226,c), +(351,190,l), +(311,0,l), +(460,0,l), +(573,530,l), +(424,530,l), +(359,226,ls), +(344,155,o), +(298,117,o), +(245,117,c), +(201,117,o), +(173,143,o), +(173,192,cs), +(173,202,o), +(174,212,o), +(177,226,cs), +(242,530,l), +(93,530,l), +(26,218,ls), +(21,195,o), +(19,174,o), +(19,153,cs), +(19,55,o), +(78,-14,o), +(169,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(358,-190,o), +(393,-183,o), +(424,-170,c), +(435,-75,l), +(413,-87,o), +(385,-96,o), +(366,-96,c), +(353,-96,o), +(346,-90,o), +(346,-82,cs), +(346,-65,o), +(371,-36,o), +(460,0,c), +(355,0,l), +(262,-36,o), +(231,-82,o), +(231,-121,c), +(231,-158,o), +(261,-190,o), +(330,-190,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = u; +}, +{ +pos = (194,0); +ref = ogonekcomb; +} +); +width = 585; +} +); +unicode = 371; +}, +{ +color = 10; +glyphname = uring; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(288,-10,o), +(382,79,o), +(412,221,c), +(369,172,l), +(332,0,l), +(432,0,l), +(545,530,l), +(445,530,l), +(379,221,ls), +(359,127,o), +(296,76,o), +(229,76,c), +(169,76,o), +(134,112,o), +(134,179,cs), +(134,192,o), +(136,206,o), +(139,221,cs), +(205,530,l), +(105,530,l), +(38,217,ls), +(35,202,o), +(32,179,o), +(32,161,cs), +(32,61,o), +(89,-10,o), +(186,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(406,575,o), +(450,622,o), +(450,680,c), +(450,728,o), +(416,758,o), +(366,758,c), +(301,758,o), +(257,711,o), +(257,653,c), +(257,605,o), +(291,575,o), +(341,575,c) +); +}, +{ +closed = 1; +nodes = ( +(328,630,o), +(319,641,o), +(319,658,c), +(319,681,o), +(336,703,o), +(360,703,c), +(379,703,o), +(388,692,o), +(388,675,c), +(388,652,o), +(371,630,o), +(347,630,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (37,0); +ref = ringcomb; +} +); +width = 569; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(270,-14,o), +(353,73,o), +(385,226,c), +(351,190,l), +(311,0,l), +(460,0,l), +(573,530,l), +(424,530,l), +(359,226,ls), +(344,155,o), +(298,117,o), +(245,117,c), +(201,117,o), +(173,143,o), +(173,192,cs), +(173,202,o), +(174,212,o), +(177,226,cs), +(242,530,l), +(93,530,l), +(26,218,ls), +(21,195,o), +(19,174,o), +(19,153,cs), +(19,55,o), +(78,-14,o), +(169,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(422,575,o), +(469,624,o), +(469,682,c), +(469,733,o), +(432,768,o), +(373,768,c), +(303,768,o), +(256,719,o), +(256,661,c), +(256,610,o), +(293,575,o), +(352,575,c) +); +}, +{ +closed = 1; +nodes = ( +(339,640,o), +(331,651,o), +(331,666,c), +(331,685,o), +(345,703,o), +(367,703,c), +(386,703,o), +(394,692,o), +(394,677,c), +(394,658,o), +(380,640,o), +(358,640,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = u; +}, +{ +pos = (44,0); +ref = ringcomb; +} +); +width = 585; +} +); +unicode = 367; +}, +{ +color = 10; +glyphname = utilde; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(288,-10,o), +(382,79,o), +(412,221,c), +(369,172,l), +(332,0,l), +(432,0,l), +(545,530,l), +(445,530,l), +(379,221,ls), +(359,127,o), +(296,76,o), +(229,76,c), +(169,76,o), +(134,112,o), +(134,179,cs), +(134,192,o), +(136,206,o), +(139,221,cs), +(205,530,l), +(105,530,l), +(38,217,ls), +(35,202,o), +(32,179,o), +(32,161,cs), +(32,61,o), +(89,-10,o), +(186,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(257,585,l), +(261,624,o), +(270,642,o), +(295,642,c), +(327,642,o), +(343,585,o), +(404,585,c), +(467,585,o), +(501,639,o), +(513,725,c), +(445,725,l), +(442,686,o), +(432,668,o), +(407,668,c), +(376,668,o), +(359,725,o), +(298,725,c), +(235,725,o), +(202,671,o), +(189,585,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (36,0); +ref = tildecomb; +} +); +width = 569; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(270,-14,o), +(353,73,o), +(385,226,c), +(351,190,l), +(311,0,l), +(460,0,l), +(573,530,l), +(424,530,l), +(359,226,ls), +(344,155,o), +(298,117,o), +(245,117,c), +(201,117,o), +(173,143,o), +(173,192,cs), +(173,202,o), +(174,212,o), +(177,226,cs), +(242,530,l), +(93,530,l), +(26,218,ls), +(21,195,o), +(19,174,o), +(19,153,cs), +(19,55,o), +(78,-14,o), +(169,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(269,585,l), +(270,612,o), +(285,624,o), +(304,624,c), +(338,624,o), +(353,585,o), +(411,585,c), +(473,585,o), +(520,641,o), +(534,730,c), +(450,730,l), +(449,702,o), +(435,690,o), +(416,690,c), +(384,690,o), +(366,730,o), +(308,730,c), +(245,730,o), +(198,674,o), +(185,585,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = u; +}, +{ +pos = (44,0); +ref = tildecomb; +} +); +width = 585; +} +); +unicode = 361; +}, +{ +color = 6; +glyphname = v; +kernLeft = v; +kernRight = v; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(259,0,l), +(541,530,l), +(434,530,l), +(160,0,l) +); +}, +{ +closed = 1; +nodes = ( +(200,0,l), +(148,530,l), +(49,530,l), +(105,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(259,0,l), +(541,530,l), +(434,530,l), +(160,0,l) +); +}, +{ +closed = 1; +nodes = ( +(200,0,l), +(148,530,l), +(49,530,l), +(105,0,l) +); +} +); +width = 508; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(318,0,l), +(578,530,l), +(411,530,l), +(172,0,l) +); +}, +{ +closed = 1; +nodes = ( +(221,0,l), +(202,530,l), +(46,530,l), +(80,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(318,0,l), +(578,530,l), +(411,530,l), +(172,0,l) +); +}, +{ +closed = 1; +nodes = ( +(221,0,l), +(202,530,l), +(46,530,l), +(80,0,l) +); +} +); +width = 542; +} +); +unicode = 118; +}, +{ +color = 6; +glyphname = w; +kernLeft = w; +kernRight = w; +lastChange = "2024-03-21 14:49:28 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (328,0); +}, +{ +name = top; +pos = (440,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (328,0); +}, +{ +name = top; +pos = (440,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(150,530,l), +(51,530,l), +(68,0,l) +); +}, +{ +closed = 1; +nodes = ( +(212,0,l), +(448,530,l), +(357,530,l), +(122,0,l) +); +}, +{ +closed = 1; +nodes = ( +(504,0,l), +(490,530,l), +(402,530,l), +(412,0,l) +); +}, +{ +closed = 1; +nodes = ( +(556,0,l), +(799,530,l), +(696,530,l), +(466,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(212,0,l), +(404,431,l), +(412,0,l), +(556,0,l), +(799,530,l), +(696,530,l), +(502,83,l), +(490,530,l), +(357,530,l), +(158,82,l), +(150,530,l), +(51,530,l), +(68,0,l) +); +} +); +width = 768; +}, +{ +anchors = ( +{ +name = bottom; +pos = (363,0); +}, +{ +name = top; +pos = (461,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (363,0); +}, +{ +name = top; +pos = (475,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(653,0,l), +(868,530,l), +(713,530,l), +(521,0,l) +); +}, +{ +closed = 1; +nodes = ( +(172,0,l), +(199,530,l), +(51,530,l), +(40,0,l) +); +}, +{ +closed = 1; +nodes = ( +(275,0,l), +(477,530,l), +(342,530,l), +(141,0,l) +); +}, +{ +closed = 1; +nodes = ( +(552,0,l), +(572,530,l), +(441,530,l), +(419,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(275,0,l), +(437,424,l), +(419,0,l), +(653,0,l), +(868,530,l), +(713,530,l), +(556,96,l), +(572,530,l), +(342,530,l), +(177,94,l), +(199,530,l), +(51,530,l), +(40,0,l) +); +} +); +width = 837; +} +); +unicode = 119; +}, +{ +color = 10; +glyphname = wacute; +kernLeft = w; +kernRight = w; +lastChange = "2024-03-21 14:49:53 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(150,530,l), +(51,530,l), +(68,0,l) +); +}, +{ +closed = 1; +nodes = ( +(212,0,l), +(448,530,l), +(357,530,l), +(122,0,l) +); +}, +{ +closed = 1; +nodes = ( +(504,0,l), +(490,530,l), +(402,530,l), +(412,0,l) +); +}, +{ +closed = 1; +nodes = ( +(556,0,l), +(799,530,l), +(696,530,l), +(466,0,l) +); +}, +{ +closed = 1; +nodes = ( +(471,585,l), +(608,725,l), +(482,725,l), +(382,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = w; +}, +{ +pos = (139,0); +ref = acutecomb; +} +); +width = 768; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(653,0,l), +(868,530,l), +(713,530,l), +(521,0,l) +); +}, +{ +closed = 1; +nodes = ( +(172,0,l), +(199,530,l), +(51,530,l), +(40,0,l) +); +}, +{ +closed = 1; +nodes = ( +(275,0,l), +(477,530,l), +(342,530,l), +(141,0,l) +); +}, +{ +closed = 1; +nodes = ( +(552,0,l), +(572,530,l), +(441,530,l), +(419,0,l) +); +}, +{ +closed = 1; +nodes = ( +(516,585,l), +(672,730,l), +(511,730,l), +(401,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = w; +}, +{ +pos = (183,0); +ref = acutecomb; +} +); +width = 837; +} +); +unicode = 7811; +}, +{ +color = 10; +glyphname = wcircumflex; +kernLeft = w; +kernRight = w; +lastChange = "2024-03-21 14:49:28 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(150,530,l), +(51,530,l), +(68,0,l) +); +}, +{ +closed = 1; +nodes = ( +(212,0,l), +(448,530,l), +(357,530,l), +(122,0,l) +); +}, +{ +closed = 1; +nodes = ( +(504,0,l), +(490,530,l), +(402,530,l), +(412,0,l) +); +}, +{ +closed = 1; +nodes = ( +(556,0,l), +(799,530,l), +(696,530,l), +(466,0,l) +); +}, +{ +closed = 1; +nodes = ( +(375,585,l), +(479,685,l), +(486,725,l), +(411,725,l), +(281,585,l) +); +}, +{ +closed = 1; +nodes = ( +(593,585,l), +(523,725,l), +(448,725,l), +(449,685,l), +(511,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = w; +}, +{ +pos = (152,0); +ref = circumflexcomb; +} +); +width = 768; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(653,0,l), +(868,530,l), +(713,530,l), +(521,0,l) +); +}, +{ +closed = 1; +nodes = ( +(172,0,l), +(199,530,l), +(51,530,l), +(40,0,l) +); +}, +{ +closed = 1; +nodes = ( +(275,0,l), +(477,530,l), +(342,530,l), +(141,0,l) +); +}, +{ +closed = 1; +nodes = ( +(552,0,l), +(572,530,l), +(441,530,l), +(419,0,l) +); +}, +{ +closed = 1; +nodes = ( +(415,585,l), +(526,686,l), +(538,730,l), +(432,730,l), +(299,585,l) +); +}, +{ +closed = 1; +nodes = ( +(643,585,l), +(572,730,l), +(466,730,l), +(471,686,l), +(539,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = w; +}, +{ +pos = (173,0); +ref = circumflexcomb; +} +); +width = 837; +} +); +unicode = 373; +}, +{ +color = 10; +glyphname = wdieresis; +kernLeft = w; +kernRight = w; +lastChange = "2024-03-21 14:49:28 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(150,530,l), +(51,530,l), +(68,0,l) +); +}, +{ +closed = 1; +nodes = ( +(212,0,l), +(448,530,l), +(357,530,l), +(122,0,l) +); +}, +{ +closed = 1; +nodes = ( +(504,0,l), +(490,530,l), +(402,530,l), +(412,0,l) +); +}, +{ +closed = 1; +nodes = ( +(556,0,l), +(799,530,l), +(696,530,l), +(466,0,l) +); +}, +{ +closed = 1; +nodes = ( +(392,602,o), +(418,627,o), +(418,662,c), +(418,694,o), +(397,715,o), +(366,715,c), +(331,715,o), +(306,690,o), +(306,653,c), +(306,623,o), +(327,602,o), +(357,602,c) +); +}, +{ +closed = 1; +nodes = ( +(574,602,o), +(600,627,o), +(600,662,c), +(600,694,o), +(579,715,o), +(548,715,c), +(513,715,o), +(488,690,o), +(488,653,c), +(488,623,o), +(509,602,o), +(539,602,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = w; +}, +{ +pos = (150,0); +ref = dieresiscomb; +} +); +width = 768; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(653,0,l), +(868,530,l), +(713,530,l), +(521,0,l) +); +}, +{ +closed = 1; +nodes = ( +(172,0,l), +(199,530,l), +(51,530,l), +(40,0,l) +); +}, +{ +closed = 1; +nodes = ( +(275,0,l), +(477,530,l), +(342,530,l), +(141,0,l) +); +}, +{ +closed = 1; +nodes = ( +(552,0,l), +(572,530,l), +(441,530,l), +(419,0,l) +); +}, +{ +closed = 1; +nodes = ( +(426,588,o), +(460,618,o), +(460,664,c), +(460,703,o), +(435,728,o), +(394,728,c), +(352,728,o), +(318,698,o), +(318,652,c), +(318,613,o), +(343,588,o), +(384,588,c) +); +}, +{ +closed = 1; +nodes = ( +(622,588,o), +(656,618,o), +(656,664,c), +(656,703,o), +(631,728,o), +(590,728,c), +(548,728,o), +(514,698,o), +(514,652,c), +(514,613,o), +(539,588,o), +(580,588,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = w; +}, +{ +pos = (171,0); +ref = dieresiscomb; +} +); +width = 837; +} +); +unicode = 7813; +}, +{ +color = 10; +glyphname = wgrave; +kernLeft = w; +kernRight = w; +lastChange = "2024-03-21 14:49:28 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(150,530,l), +(51,530,l), +(68,0,l) +); +}, +{ +closed = 1; +nodes = ( +(212,0,l), +(448,530,l), +(357,530,l), +(122,0,l) +); +}, +{ +closed = 1; +nodes = ( +(504,0,l), +(490,530,l), +(402,530,l), +(412,0,l) +); +}, +{ +closed = 1; +nodes = ( +(556,0,l), +(799,530,l), +(696,530,l), +(466,0,l) +); +}, +{ +closed = 1; +nodes = ( +(487,585,l), +(447,725,l), +(326,725,l), +(406,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = w; +}, +{ +pos = (150,0); +ref = gravecomb; +} +); +width = 768; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(653,0,l), +(868,530,l), +(713,530,l), +(521,0,l) +); +}, +{ +closed = 1; +nodes = ( +(172,0,l), +(199,530,l), +(51,530,l), +(40,0,l) +); +}, +{ +closed = 1; +nodes = ( +(275,0,l), +(477,530,l), +(342,530,l), +(141,0,l) +); +}, +{ +closed = 1; +nodes = ( +(552,0,l), +(572,530,l), +(441,530,l), +(419,0,l) +); +}, +{ +closed = 1; +nodes = ( +(534,585,l), +(485,730,l), +(335,730,l), +(432,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = w; +}, +{ +pos = (225,0); +ref = gravecomb; +} +); +width = 837; +} +); +unicode = 7809; +}, +{ +color = 6; +glyphname = x; +kernLeft = x; +kernRight = x; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(63,0,l), +(239,217,l), +(278,249,l), +(521,530,l), +(401,530,l), +(238,328,l), +(198,296,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(418,0,l), +(171,530,l), +(65,530,l), +(312,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(63,0,l), +(239,217,l), +(278,249,l), +(521,530,l), +(401,530,l), +(238,328,l), +(198,296,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(418,0,l), +(171,530,l), +(65,530,l), +(312,0,l) +); +} +); +width = 506; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(106,0,l), +(259,206,l), +(309,248,l), +(547,530,l), +(373,530,l), +(233,340,l), +(182,297,l), +(-68,0,l) +); +}, +{ +closed = 1; +nodes = ( +(444,0,l), +(211,530,l), +(55,530,l), +(288,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(106,0,l), +(259,206,l), +(309,248,l), +(547,530,l), +(373,530,l), +(233,340,l), +(182,297,l), +(-68,0,l) +); +}, +{ +closed = 1; +nodes = ( +(444,0,l), +(211,530,l), +(55,530,l), +(288,0,l) +); +} +); +width = 522; +} +); +unicode = 120; +}, +{ +color = 6; +glyphname = y; +kernLeft = v; +kernRight = v; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (297.655,530); +} +); +background = { +anchors = ( +{ +name = top; +pos = (297.655,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(119,-185,o), +(179,-151,o), +(259,0,cs), +(541,530,l), +(434,530,l), +(160,0,l), +(119,-72,o), +(84,-95,o), +(27,-95,c), +(4,-95,o), +(-18,-90,o), +(-41,-80,c), +(-60,-170,l), +(-31,-180,o), +(-6,-185,o), +(29,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(200,0,l), +(148,530,l), +(49,530,l), +(105,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(119,-185,o), +(179,-151,o), +(259,0,cs), +(541,530,l), +(434,530,l), +(160,0,l), +(119,-72,o), +(84,-95,o), +(27,-95,c), +(4,-95,o), +(-18,-90,o), +(-41,-80,c), +(-60,-170,l), +(-31,-180,o), +(-6,-185,o), +(29,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(200,0,l), +(148,530,l), +(49,530,l), +(105,0,l) +); +} +); +width = 508; +}, +{ +anchors = ( +{ +name = top; +pos = (315.655,530); +} +); +background = { +anchors = ( +{ +name = top; +pos = (315.655,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(167,-190,o), +(241,-156,o), +(318,0,cs), +(578,530,l), +(411,530,l), +(172,0,ls), +(155,-38,o), +(125,-59,o), +(64,-59,c), +(27,-59,o), +(-5,-50,o), +(-31,-38,c), +(-58,-167,l), +(-24,-182,o), +(15,-190,o), +(64,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(221,0,l), +(202,530,l), +(46,530,l), +(80,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(167,-190,o), +(241,-156,o), +(318,0,cs), +(578,530,l), +(411,530,l), +(172,0,ls), +(155,-38,o), +(125,-59,o), +(64,-59,c), +(27,-59,o), +(-5,-50,o), +(-31,-38,c), +(-58,-167,l), +(-24,-182,o), +(15,-190,o), +(64,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(221,0,l), +(202,530,l), +(46,530,l), +(80,0,l) +); +} +); +width = 542; +} +); +unicode = 121; +}, +{ +color = 10; +glyphname = yacute; +kernLeft = v; +kernRight = v; +lastChange = "2024-03-21 14:49:53 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(119,-185,o), +(179,-151,o), +(259,0,cs), +(541,530,l), +(434,530,l), +(160,0,l), +(119,-72,o), +(84,-95,o), +(27,-95,c), +(4,-95,o), +(-18,-90,o), +(-41,-80,c), +(-60,-170,l), +(-31,-180,o), +(-6,-185,o), +(29,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(200,0,l), +(148,530,l), +(49,530,l), +(105,0,l) +); +}, +{ +closed = 1; +nodes = ( +(343,585,l), +(480,725,l), +(354,725,l), +(254,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = y; +}, +{ +pos = (-3,0); +ref = acutecomb; +} +); +width = 508; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(167,-190,o), +(241,-156,o), +(318,0,cs), +(578,530,l), +(411,530,l), +(172,0,ls), +(155,-38,o), +(125,-59,o), +(64,-59,c), +(27,-59,o), +(-5,-50,o), +(-31,-38,c), +(-58,-167,l), +(-24,-182,o), +(15,-190,o), +(64,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(221,0,l), +(202,530,l), +(46,530,l), +(80,0,l) +); +}, +{ +closed = 1; +nodes = ( +(372,585,l), +(528,730,l), +(367,730,l), +(257,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = y; +}, +{ +pos = (38,0); +ref = acutecomb; +} +); +width = 542; +} +); +unicode = 253; +}, +{ +color = 10; +glyphname = ycircumflex; +kernLeft = v; +kernRight = v; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(119,-185,o), +(179,-151,o), +(259,0,cs), +(541,530,l), +(434,530,l), +(160,0,l), +(119,-72,o), +(84,-95,o), +(27,-95,c), +(4,-95,o), +(-18,-90,o), +(-41,-80,c), +(-60,-170,l), +(-31,-180,o), +(-6,-185,o), +(29,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(200,0,l), +(148,530,l), +(49,530,l), +(105,0,l) +); +}, +{ +closed = 1; +nodes = ( +(247,585,l), +(351,685,l), +(358,725,l), +(283,725,l), +(153,585,l) +); +}, +{ +closed = 1; +nodes = ( +(465,585,l), +(395,725,l), +(320,725,l), +(321,685,l), +(383,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = y; +}, +{ +pos = (10,0); +ref = circumflexcomb; +} +); +width = 508; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(167,-190,o), +(241,-156,o), +(318,0,cs), +(578,530,l), +(411,530,l), +(172,0,ls), +(155,-38,o), +(125,-59,o), +(64,-59,c), +(27,-59,o), +(-5,-50,o), +(-31,-38,c), +(-58,-167,l), +(-24,-182,o), +(15,-190,o), +(64,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(221,0,l), +(202,530,l), +(46,530,l), +(80,0,l) +); +}, +{ +closed = 1; +nodes = ( +(271,585,l), +(382,686,l), +(394,730,l), +(288,730,l), +(155,585,l) +); +}, +{ +closed = 1; +nodes = ( +(499,585,l), +(428,730,l), +(322,730,l), +(327,686,l), +(395,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = y; +}, +{ +pos = (28,0); +ref = circumflexcomb; +} +); +width = 542; +} +); +unicode = 375; +}, +{ +color = 10; +glyphname = ydieresis; +kernLeft = v; +kernRight = v; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(119,-185,o), +(179,-151,o), +(259,0,cs), +(541,530,l), +(434,530,l), +(160,0,l), +(119,-72,o), +(84,-95,o), +(27,-95,c), +(4,-95,o), +(-18,-90,o), +(-41,-80,c), +(-60,-170,l), +(-31,-180,o), +(-6,-185,o), +(29,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(200,0,l), +(148,530,l), +(49,530,l), +(105,0,l) +); +}, +{ +closed = 1; +nodes = ( +(264,602,o), +(290,627,o), +(290,662,c), +(290,694,o), +(269,715,o), +(238,715,c), +(203,715,o), +(178,690,o), +(178,653,c), +(178,623,o), +(199,602,o), +(229,602,c) +); +}, +{ +closed = 1; +nodes = ( +(446,602,o), +(472,627,o), +(472,662,c), +(472,694,o), +(451,715,o), +(420,715,c), +(385,715,o), +(360,690,o), +(360,653,c), +(360,623,o), +(381,602,o), +(411,602,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = y; +}, +{ +pos = (8,0); +ref = dieresiscomb; +} +); +width = 508; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(167,-190,o), +(241,-156,o), +(318,0,cs), +(578,530,l), +(411,530,l), +(172,0,ls), +(155,-38,o), +(125,-59,o), +(64,-59,c), +(27,-59,o), +(-5,-50,o), +(-31,-38,c), +(-58,-167,l), +(-24,-182,o), +(15,-190,o), +(64,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(221,0,l), +(202,530,l), +(46,530,l), +(80,0,l) +); +}, +{ +closed = 1; +nodes = ( +(282,588,o), +(316,618,o), +(316,664,c), +(316,703,o), +(291,728,o), +(250,728,c), +(208,728,o), +(174,698,o), +(174,652,c), +(174,613,o), +(199,588,o), +(240,588,c) +); +}, +{ +closed = 1; +nodes = ( +(478,588,o), +(512,618,o), +(512,664,c), +(512,703,o), +(487,728,o), +(446,728,c), +(404,728,o), +(370,698,o), +(370,652,c), +(370,613,o), +(395,588,o), +(436,588,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = y; +}, +{ +pos = (26,0); +ref = dieresiscomb; +} +); +width = 542; +} +); +unicode = 255; +}, +{ +color = 10; +glyphname = ygrave; +kernLeft = v; +kernRight = v; +lastChange = "2024-03-21 14:48:12 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(119,-185,o), +(179,-151,o), +(259,0,cs), +(541,530,l), +(434,530,l), +(160,0,l), +(119,-72,o), +(84,-95,o), +(27,-95,c), +(4,-95,o), +(-18,-90,o), +(-41,-80,c), +(-60,-170,l), +(-31,-180,o), +(-6,-185,o), +(29,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(200,0,l), +(148,530,l), +(49,530,l), +(105,0,l) +); +}, +{ +closed = 1; +nodes = ( +(359,585,l), +(319,725,l), +(198,725,l), +(278,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = y; +}, +{ +pos = (8,0); +ref = gravecomb; +} +); +width = 508; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(167,-190,o), +(241,-156,o), +(318,0,cs), +(578,530,l), +(411,530,l), +(172,0,ls), +(155,-38,o), +(125,-59,o), +(64,-59,c), +(27,-59,o), +(-5,-50,o), +(-31,-38,c), +(-58,-167,l), +(-24,-182,o), +(15,-190,o), +(64,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(221,0,l), +(202,530,l), +(46,530,l), +(80,0,l) +); +}, +{ +closed = 1; +nodes = ( +(390,585,l), +(341,730,l), +(191,730,l), +(288,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = y; +}, +{ +pos = (80,0); +ref = gravecomb; +} +); +width = 542; +} +); +unicode = 7923; +}, +{ +color = 10; +glyphname = ymacron; +kernLeft = v; +kernRight = v; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(119,-185,o), +(179,-151,o), +(259,0,cs), +(541,530,l), +(434,530,l), +(160,0,l), +(119,-72,o), +(84,-95,o), +(27,-95,c), +(4,-95,o), +(-18,-90,o), +(-41,-80,c), +(-60,-170,l), +(-31,-180,o), +(-6,-185,o), +(29,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(200,0,l), +(148,530,l), +(49,530,l), +(105,0,l) +); +}, +{ +closed = 1; +nodes = ( +(455,621,l), +(473,705,l), +(197,705,l), +(179,621,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = y; +}, +{ +pos = (8,0); +ref = macroncomb; +} +); +width = 508; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(167,-190,o), +(241,-156,o), +(318,0,cs), +(578,530,l), +(411,530,l), +(172,0,ls), +(155,-38,o), +(125,-59,o), +(64,-59,c), +(27,-59,o), +(-5,-50,o), +(-31,-38,c), +(-58,-167,l), +(-24,-182,o), +(15,-190,o), +(64,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(221,0,l), +(202,530,l), +(46,530,l), +(80,0,l) +); +}, +{ +closed = 1; +nodes = ( +(478,603,l), +(503,718,l), +(209,718,l), +(184,603,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = y; +}, +{ +pos = (27,0); +ref = macroncomb; +} +); +width = 542; +} +); +unicode = 563; +}, +{ +color = 10; +glyphname = ytilde; +kernLeft = v; +kernRight = v; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(119,-185,o), +(179,-151,o), +(259,0,cs), +(541,530,l), +(434,530,l), +(160,0,l), +(119,-72,o), +(84,-95,o), +(27,-95,c), +(4,-95,o), +(-18,-90,o), +(-41,-80,c), +(-60,-170,l), +(-31,-180,o), +(-6,-185,o), +(29,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(200,0,l), +(148,530,l), +(49,530,l), +(105,0,l) +); +}, +{ +closed = 1; +nodes = ( +(230,585,l), +(234,624,o), +(243,642,o), +(268,642,c), +(300,642,o), +(316,585,o), +(377,585,c), +(440,585,o), +(474,639,o), +(486,725,c), +(418,725,l), +(415,686,o), +(405,668,o), +(380,668,c), +(349,668,o), +(332,725,o), +(271,725,c), +(208,725,o), +(175,671,o), +(162,585,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = y; +}, +{ +pos = (9,0); +ref = tildecomb; +} +); +width = 508; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(167,-190,o), +(241,-156,o), +(318,0,cs), +(578,530,l), +(411,530,l), +(172,0,ls), +(155,-38,o), +(125,-59,o), +(64,-59,c), +(27,-59,o), +(-5,-50,o), +(-31,-38,c), +(-58,-167,l), +(-24,-182,o), +(15,-190,o), +(64,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(221,0,l), +(202,530,l), +(46,530,l), +(80,0,l) +); +}, +{ +closed = 1; +nodes = ( +(252,585,l), +(253,612,o), +(268,624,o), +(287,624,c), +(321,624,o), +(336,585,o), +(394,585,c), +(456,585,o), +(503,641,o), +(517,730,c), +(433,730,l), +(432,702,o), +(418,690,o), +(399,690,c), +(367,690,o), +(349,730,o), +(291,730,c), +(228,730,o), +(181,674,o), +(168,585,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = y; +}, +{ +pos = (27,0); +ref = tildecomb; +} +); +width = 542; +} +); +unicode = 7929; +}, +{ +color = 6; +glyphname = z; +kernLeft = z; +kernRight = z; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (188,0); +}, +{ +name = center; +pos = (244,265); +}, +{ +name = top; +pos = (300,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (188,0); +}, +{ +name = center; +pos = (244,265); +}, +{ +name = top; +pos = (300,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(100,52,l), +(469,478,l), +(344,478,l), +(-25,52,l) +); +}, +{ +closed = 1; +nodes = ( +(377,0,l), +(395,87,l), +(22,87,l), +(-25,52,l), +(-36,0,l) +); +}, +{ +closed = 1; +nodes = ( +(421,443,l), +(469,478,l), +(480,530,l), +(87,530,l), +(68,443,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(377,0,l), +(395,87,l), +(130,87,l), +(469,478,l), +(480,530,l), +(87,530,l), +(68,443,l), +(314,443,l), +(-25,52,l), +(-36,0,l) +); +} +); +width = 487; +}, +{ +anchors = ( +{ +name = bottom; +pos = (194,0); +}, +{ +name = center; +pos = (250,265); +}, +{ +name = top; +pos = (306,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (194,0); +}, +{ +name = center; +pos = (250,265); +}, +{ +name = top; +pos = (306,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(480,433,l), +(300,442,l), +(-24,97,l), +(156,88,l) +); +}, +{ +closed = 1; +nodes = ( +(398,0,l), +(424,123,l), +(21,123,l), +(-24,97,l), +(-45,0,l) +); +}, +{ +closed = 1; +nodes = ( +(435,407,l), +(480,433,l), +(501,530,l), +(78,530,l), +(52,407,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(398,0,l), +(424,123,l), +(189,123,l), +(480,433,l), +(501,530,l), +(78,530,l), +(52,407,l), +(267,407,l), +(-24,97,l), +(-45,0,l) +); +} +); +width = 499; +} +); +unicode = 122; +}, +{ +color = 10; +glyphname = zacute; +kernLeft = z; +kernRight = z; +lastChange = "2024-03-21 14:49:53 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(100,52,l), +(469,478,l), +(344,478,l), +(-25,52,l) +); +}, +{ +closed = 1; +nodes = ( +(377,0,l), +(395,87,l), +(22,87,l), +(-25,52,l), +(-36,0,l) +); +}, +{ +closed = 1; +nodes = ( +(421,443,l), +(469,478,l), +(480,530,l), +(87,530,l), +(68,443,l) +); +}, +{ +closed = 1; +nodes = ( +(336,585,l), +(473,725,l), +(347,725,l), +(247,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = z; +}, +{ +pos = (-1,0); +ref = acutecomb; +} +); +width = 487; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(480,433,l), +(300,442,l), +(-24,97,l), +(156,88,l) +); +}, +{ +closed = 1; +nodes = ( +(398,0,l), +(424,123,l), +(21,123,l), +(-24,97,l), +(-45,0,l) +); +}, +{ +closed = 1; +nodes = ( +(435,407,l), +(480,433,l), +(501,530,l), +(78,530,l), +(52,407,l) +); +}, +{ +closed = 1; +nodes = ( +(345,585,l), +(501,730,l), +(340,730,l), +(230,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = z; +}, +{ +pos = (28,0); +ref = acutecomb; +} +); +width = 499; +} +); +unicode = 378; +}, +{ +color = 10; +glyphname = zcaron; +kernLeft = z; +kernRight = z; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(100,52,l), +(469,478,l), +(344,478,l), +(-25,52,l) +); +}, +{ +closed = 1; +nodes = ( +(377,0,l), +(395,87,l), +(22,87,l), +(-25,52,l), +(-36,0,l) +); +}, +{ +closed = 1; +nodes = ( +(421,443,l), +(469,478,l), +(480,530,l), +(87,530,l), +(68,443,l) +); +}, +{ +closed = 1; +nodes = ( +(321,585,l), +(320,625,l), +(258,725,l), +(176,725,l), +(246,585,l) +); +}, +{ +closed = 1; +nodes = ( +(358,585,l), +(488,725,l), +(394,725,l), +(290,625,l), +(283,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = z; +}, +{ +pos = (11,0); +ref = caroncomb; +} +); +width = 487; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(480,433,l), +(300,442,l), +(-24,97,l), +(156,88,l) +); +}, +{ +closed = 1; +nodes = ( +(398,0,l), +(424,123,l), +(21,123,l), +(-24,97,l), +(-45,0,l) +); +}, +{ +closed = 1; +nodes = ( +(435,407,l), +(480,433,l), +(501,530,l), +(78,530,l), +(52,407,l) +); +}, +{ +closed = 1; +nodes = ( +(336,585,l), +(331,629,l), +(263,730,l), +(159,730,l), +(230,585,l) +); +}, +{ +closed = 1; +nodes = ( +(370,585,l), +(503,730,l), +(387,730,l), +(276,629,l), +(264,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = z; +}, +{ +pos = (18,0); +ref = caroncomb; +} +); +width = 499; +} +); +unicode = 382; +}, +{ +color = 10; +glyphname = zdotaccent; +kernLeft = z; +kernRight = z; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(100,52,l), +(469,478,l), +(344,478,l), +(-25,52,l) +); +}, +{ +closed = 1; +nodes = ( +(377,0,l), +(395,87,l), +(22,87,l), +(-25,52,l), +(-36,0,l) +); +}, +{ +closed = 1; +nodes = ( +(421,443,l), +(469,478,l), +(480,530,l), +(87,530,l), +(68,443,l) +); +}, +{ +closed = 1; +nodes = ( +(352,602,o), +(380,629,o), +(380,667,c), +(380,702,o), +(357,725,o), +(323,725,c), +(285,725,o), +(258,698,o), +(258,657,c), +(258,625,o), +(281,602,o), +(314,602,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = z; +}, +{ +pos = (10,0); +ref = dotaccentcomb; +} +); +width = 487; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(480,433,l), +(300,442,l), +(-24,97,l), +(156,88,l) +); +}, +{ +closed = 1; +nodes = ( +(398,0,l), +(424,123,l), +(21,123,l), +(-24,97,l), +(-45,0,l) +); +}, +{ +closed = 1; +nodes = ( +(435,407,l), +(480,433,l), +(501,530,l), +(78,530,l), +(52,407,l) +); +}, +{ +closed = 1; +nodes = ( +(357,588,o), +(393,620,o), +(393,669,c), +(393,711,o), +(366,738,o), +(322,738,c), +(277,738,o), +(241,706,o), +(241,656,c), +(241,615,o), +(268,588,o), +(312,588,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = z; +}, +{ +pos = (16,0); +ref = dotaccentcomb; +} +); +width = 499; +} +); +unicode = 380; +}, +{ +color = 6; +glyphname = i.trk; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(93,0,l), +(206,530,l), +(106,530,l), +(-7,0,l) +); +}, +{ +closed = 1; +nodes = ( +(218,602,o), +(245,629,o), +(245,668,c), +(245,702,o), +(222,725,o), +(188,725,c), +(150,725,o), +(123,698,o), +(123,658,c), +(123,625,o), +(146,602,o), +(180,602,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(93,0,l), +(206,530,l), +(106,530,l), +(-7,0,l) +); +}, +{ +closed = 1; +nodes = ( +(218,602,o), +(245,629,o), +(245,668,c), +(245,702,o), +(222,725,o), +(188,725,c), +(150,725,o), +(123,698,o), +(123,658,c), +(123,625,o), +(146,602,o), +(180,602,c) +); +} +); +width = 231; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(131,0,l), +(244,530,l), +(95,530,l), +(-18,0,l) +); +}, +{ +closed = 1; +nodes = ( +(245,580,o), +(287,617,o), +(287,675,c), +(287,723,o), +(256,755,o), +(204,755,c), +(152,755,o), +(110,717,o), +(110,659,c), +(110,611,o), +(141,580,o), +(192,580,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(131,0,l), +(244,530,l), +(95,530,l), +(-18,0,l) +); +}, +{ +closed = 1; +nodes = ( +(245,580,o), +(287,617,o), +(287,675,c), +(287,723,o), +(256,755,o), +(204,755,c), +(152,755,o), +(110,717,o), +(110,659,c), +(110,611,o), +(141,580,o), +(192,580,c) +); +} +); +width = 257; +} +); +}, +{ +color = 6; +glyphname = f_f; +kernLeft = f; +kernRight = f; +lastChange = "2024-03-21 14:12:42 +0000"; +layers = ( +{ +anchors = ( +{ +name = caret_1; +pos = (331,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(631,443,l), +(631,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,606,o), +(521,636,o), +(574,636,c), +(597,636,o), +(616,632,o), +(636,625,c), +(636,715,l), +(611,722,o), +(591,725,o), +(564,725,c), +(456,725,o), +(393,667,o), +(393,550,c), +(393,0,l), +(493,0,l), +(493,557,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(432,0,l), +(550,557,ls), +(561,610,o), +(592,636,o), +(640,636,c), +(663,636,o), +(683,630,o), +(703,621,c), +(721,708,l), +(695,718,o), +(667,725,o), +(635,725,c), +(541,725,o), +(476,678,o), +(451,561,cs), +(332,0,l) +); +}, +{ +closed = 1; +nodes = ( +(112,0,l), +(230,557,ls), +(241,610,o), +(272,636,o), +(320,636,c), +(343,636,o), +(363,630,o), +(383,621,c), +(401,708,l), +(375,718,o), +(347,725,o), +(315,725,c), +(221,725,o), +(156,678,o), +(131,561,cs), +(12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(660,443,l), +(679,530,l), +(50,530,l), +(31,443,l) +); +} +); +width = 662; +}, +{ +anchors = ( +{ +name = caret_1; +pos = (344.5,0); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(487,0,l), +(602,541,ls), +(611,582,o), +(637,603,o), +(678,603,c), +(706,603,o), +(730,597,o), +(751,589,c), +(777,712,l), +(748,723,o), +(708,729,o), +(668,729,c), +(565,729,o), +(483,683,o), +(456,554,cs), +(338,0,l) +); +}, +{ +closed = 1; +nodes = ( +(151,0,l), +(266,541,ls), +(275,582,o), +(301,603,o), +(342,603,c), +(370,603,o), +(394,597,o), +(415,589,c), +(441,712,l), +(412,723,o), +(372,729,o), +(332,729,c), +(229,729,o), +(147,683,o), +(120,554,cs), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(707,407,l), +(733,530,l), +(49,530,l), +(23,407,l) +); +} +); +width = 689; +} +); +}, +{ +color = 6; +glyphname = f_f_i; +kernLeft = f; +kernRight = i; +lastChange = "2024-03-21 14:12:42 +0000"; +layers = ( +{ +anchors = ( +{ +name = caret_1; +pos = (296.667,0); +}, +{ +name = caret_2; +pos = (593.333,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(408,443,l), +(408,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,0,l), +(493,530,l), +(393,530,l), +(393,0,l) +); +}, +{ +closed = 1; +nodes = ( +(478,602,o), +(505,627,o), +(505,663,cs), +(505,700,o), +(478,725,o), +(443,725,cs), +(408,725,o), +(381,700,o), +(381,663,cs), +(381,627,o), +(408,602,o), +(443,602,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(432,0,l), +(550,557,ls), +(561,610,o), +(592,636,o), +(640,636,c), +(663,636,o), +(683,630,o), +(703,621,c), +(721,708,l), +(695,718,o), +(667,725,o), +(635,725,c), +(541,725,o), +(476,678,o), +(451,561,cs), +(332,0,l) +); +}, +{ +closed = 1; +nodes = ( +(112,0,l), +(230,557,ls), +(241,610,o), +(272,636,o), +(320,636,c), +(343,636,o), +(363,630,o), +(383,621,c), +(401,708,l), +(375,718,o), +(347,725,o), +(315,725,c), +(221,725,o), +(156,678,o), +(131,561,cs), +(12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(794,443,l), +(813,530,l), +(50,530,l), +(31,443,l) +); +}, +{ +closed = 1; +nodes = ( +(752,0,l), +(865,530,l), +(765,530,l), +(652,0,l) +); +}, +{ +closed = 1; +nodes = ( +(877,602,o), +(904,629,o), +(904,668,c), +(904,702,o), +(881,725,o), +(847,725,c), +(809,725,o), +(782,698,o), +(782,658,c), +(782,625,o), +(805,602,o), +(839,602,c) +); +} +); +width = 890; +}, +{ +anchors = ( +{ +name = caret_1; +pos = (316,0); +}, +{ +name = caret_2; +pos = (632,0); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(487,0,l), +(602,541,ls), +(611,582,o), +(637,603,o), +(678,603,c), +(706,603,o), +(730,597,o), +(751,589,c), +(777,712,l), +(748,723,o), +(708,729,o), +(668,729,c), +(565,729,o), +(483,683,o), +(456,554,cs), +(338,0,l) +); +}, +{ +closed = 1; +nodes = ( +(151,0,l), +(266,541,ls), +(275,582,o), +(301,603,o), +(342,603,c), +(370,603,o), +(394,597,o), +(415,589,c), +(441,712,l), +(412,723,o), +(372,729,o), +(332,729,c), +(229,729,o), +(147,683,o), +(120,554,cs), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(787,407,l), +(813,530,l), +(49,530,l), +(23,407,l) +); +}, +{ +closed = 1; +nodes = ( +(823,0,l), +(936,530,l), +(787,530,l), +(674,0,l) +); +}, +{ +closed = 1; +nodes = ( +(937,580,o), +(979,617,o), +(979,675,c), +(979,723,o), +(948,755,o), +(896,755,c), +(844,755,o), +(802,717,o), +(802,659,c), +(802,611,o), +(833,580,o), +(884,580,c) +); +} +); +width = 948; +} +); +}, +{ +color = 6; +glyphname = f_f_ij; +kernLeft = f; +kernRight = q; +lastChange = "2024-03-21 14:12:42 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom_1; +pos = (131,0); +}, +{ +name = bottom_2; +pos = (504,0); +}, +{ +name = bottom_3; +pos = (877,0); +}, +{ +name = caret_1; +pos = (373.333,0); +}, +{ +name = caret_2; +pos = (746.667,0); +}, +{ +name = top_1; +pos = (283,715); +}, +{ +name = top_2; +pos = (656,715); +}, +{ +name = top_3; +pos = (1029,715); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(408,443,l), +(408,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,0,l), +(493,530,l), +(393,530,l), +(393,0,l) +); +}, +{ +closed = 1; +nodes = ( +(478,602,o), +(505,627,o), +(505,663,cs), +(505,700,o), +(478,725,o), +(443,725,cs), +(408,725,o), +(381,700,o), +(381,663,cs), +(381,627,o), +(408,602,o), +(443,602,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(432,0,l), +(550,557,ls), +(561,610,o), +(592,636,o), +(640,636,c), +(663,636,o), +(683,630,o), +(703,621,c), +(721,708,l), +(695,718,o), +(667,725,o), +(635,725,c), +(541,725,o), +(476,678,o), +(451,561,cs), +(332,0,l) +); +}, +{ +closed = 1; +nodes = ( +(112,0,l), +(230,557,ls), +(241,610,o), +(272,636,o), +(320,636,c), +(343,636,o), +(363,630,o), +(383,621,c), +(401,708,l), +(375,718,o), +(347,725,o), +(315,725,c), +(221,725,o), +(156,678,o), +(131,561,cs), +(12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(794,443,l), +(813,530,l), +(50,530,l), +(31,443,l) +); +}, +{ +closed = 1; +nodes = ( +(752,0,l), +(865,530,l), +(765,530,l), +(652,0,l) +); +}, +{ +closed = 1; +nodes = ( +(887,-185,o), +(953,-138,o), +(978,-21,cs), +(1095,530,l), +(995,530,l), +(878,-17,ls), +(867,-70,o), +(834,-94,o), +(789,-94,c), +(766,-94,o), +(746,-88,o), +(726,-79,c), +(707,-168,l), +(733,-178,o), +(761,-185,o), +(793,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(877,602,o), +(904,629,o), +(904,668,c), +(904,702,o), +(881,725,o), +(847,725,c), +(809,725,o), +(782,698,o), +(782,658,c), +(782,625,o), +(805,602,o), +(839,602,c) +); +}, +{ +closed = 1; +nodes = ( +(1107,602,o), +(1134,629,o), +(1134,668,c), +(1134,702,o), +(1111,725,o), +(1077,725,c), +(1039,725,o), +(1012,698,o), +(1012,658,c), +(1012,625,o), +(1035,602,o), +(1069,602,c) +); +} +); +width = 1120; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (145,0); +}, +{ +name = bottom_2; +pos = (546,0); +}, +{ +name = bottom_3; +pos = (947,0); +}, +{ +name = caret_1; +pos = (401,0); +}, +{ +name = caret_2; +pos = (802,0); +}, +{ +name = top_1; +pos = (297,715); +}, +{ +name = top_2; +pos = (698,715); +}, +{ +name = top_3; +pos = (1099,715); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(487,0,l), +(602,541,ls), +(611,582,o), +(637,603,o), +(678,603,c), +(706,603,o), +(730,597,o), +(751,589,c), +(777,712,l), +(748,723,o), +(708,729,o), +(668,729,c), +(565,729,o), +(483,683,o), +(456,554,cs), +(338,0,l) +); +}, +{ +closed = 1; +nodes = ( +(151,0,l), +(266,541,ls), +(275,582,o), +(301,603,o), +(342,603,c), +(370,603,o), +(394,597,o), +(415,589,c), +(441,712,l), +(412,723,o), +(372,729,o), +(332,729,c), +(229,729,o), +(147,683,o), +(120,554,cs), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(787,407,l), +(813,530,l), +(49,530,l), +(23,407,l) +); +}, +{ +closed = 1; +nodes = ( +(823,0,l), +(936,530,l), +(787,530,l), +(674,0,l) +); +}, +{ +closed = 1; +nodes = ( +(968,-189,o), +(1047,-143,o), +(1074,-14,cs), +(1190,530,l), +(1041,530,l), +(930,9,ls), +(921,-32,o), +(897,-54,o), +(856,-54,c), +(831,-54,o), +(809,-49,o), +(789,-41,c), +(761,-172,l), +(786,-183,o), +(825,-189,o), +(865,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(937,580,o), +(979,617,o), +(979,675,c), +(979,723,o), +(948,755,o), +(896,755,c), +(844,755,o), +(802,717,o), +(802,659,c), +(802,611,o), +(833,580,o), +(884,580,c) +); +}, +{ +closed = 1; +nodes = ( +(1191,580,o), +(1233,617,o), +(1233,675,c), +(1233,723,o), +(1202,755,o), +(1150,755,c), +(1098,755,o), +(1056,717,o), +(1056,659,c), +(1056,611,o), +(1087,580,o), +(1138,580,c) +); +} +); +width = 1203; +} +); +}, +{ +color = 6; +glyphname = f_f_l; +kernLeft = f; +kernRight = l; +lastChange = "2024-03-21 14:12:42 +0000"; +layers = ( +{ +anchors = ( +{ +name = caret_1; +pos = (296.333,0); +}, +{ +name = caret_2; +pos = (592.667,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(631,443,l), +(631,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,606,o), +(521,636,o), +(574,636,c), +(597,636,o), +(616,632,o), +(636,625,c), +(636,715,l), +(611,722,o), +(591,725,o), +(564,725,c), +(456,725,o), +(393,667,o), +(393,550,c), +(393,0,l), +(493,0,l), +(493,557,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(432,0,l), +(550,557,ls), +(561,610,o), +(592,636,o), +(640,636,c), +(663,636,o), +(683,630,o), +(703,621,c), +(721,708,l), +(695,718,o), +(667,725,o), +(635,725,c), +(541,725,o), +(476,678,o), +(451,561,cs), +(332,0,l) +); +}, +{ +closed = 1; +nodes = ( +(112,0,l), +(230,557,ls), +(241,610,o), +(272,636,o), +(320,636,c), +(343,636,o), +(363,630,o), +(383,621,c), +(401,708,l), +(375,718,o), +(347,725,o), +(315,725,c), +(221,725,o), +(156,678,o), +(131,561,cs), +(12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(660,443,l), +(679,530,l), +(50,530,l), +(31,443,l) +); +}, +{ +closed = 1; +nodes = ( +(752,0,l), +(904,715,l), +(804,715,l), +(652,0,l) +); +} +); +width = 889; +}, +{ +anchors = ( +{ +name = caret_1; +pos = (316,0); +}, +{ +name = caret_2; +pos = (632,0); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(487,0,l), +(602,541,ls), +(611,582,o), +(637,603,o), +(678,603,c), +(706,603,o), +(730,597,o), +(751,589,c), +(777,712,l), +(748,723,o), +(708,729,o), +(668,729,c), +(565,729,o), +(483,683,o), +(456,554,cs), +(338,0,l) +); +}, +{ +closed = 1; +nodes = ( +(151,0,l), +(266,541,ls), +(275,582,o), +(301,603,o), +(342,603,c), +(370,603,o), +(394,597,o), +(415,589,c), +(441,712,l), +(412,723,o), +(372,729,o), +(332,729,c), +(229,729,o), +(147,683,o), +(120,554,cs), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(707,407,l), +(733,530,l), +(49,530,l), +(23,407,l) +); +}, +{ +closed = 1; +nodes = ( +(823,0,l), +(975,715,l), +(826,715,l), +(674,0,l) +); +} +); +width = 948; +} +); +}, +{ +color = 6; +glyphname = f_i; +kernLeft = f; +kernRight = i; +lastChange = "2024-03-21 14:12:42 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom_1; +pos = (87,0); +}, +{ +name = bottom_2; +pos = (372,0); +}, +{ +name = caret_1; +pos = (285,0); +}, +{ +name = top_1; +pos = (239,715); +}, +{ +name = top_2; +pos = (524,715); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l), +(185,0,l), +(185,557,l) +); +}, +{ +closed = 1; +nodes = ( +(453,443,l), +(453,530,l), +(10,530,l), +(10,443,l) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(490,602,o), +(517,627,o), +(517,663,cs), +(517,700,o), +(490,725,o), +(455,725,cs), +(420,725,o), +(393,700,o), +(393,663,cs), +(393,627,o), +(420,602,o), +(455,602,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(112,0,l), +(230,557,ls), +(241,610,o), +(272,636,o), +(320,636,c), +(343,636,o), +(363,630,o), +(383,621,c), +(401,708,l), +(375,718,o), +(347,725,o), +(315,725,c), +(221,725,o), +(156,678,o), +(131,561,cs), +(12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(474,443,l), +(493,530,l), +(50,530,l), +(31,443,l) +); +}, +{ +closed = 1; +nodes = ( +(432,0,l), +(545,530,l), +(445,530,l), +(332,0,l) +); +}, +{ +closed = 1; +nodes = ( +(557,602,o), +(584,629,o), +(584,668,c), +(584,702,o), +(561,725,o), +(527,725,c), +(489,725,o), +(462,698,o), +(462,658,c), +(462,625,o), +(485,602,o), +(519,602,c) +); +} +); +width = 570; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (97,0); +}, +{ +name = bottom_2; +pos = (404,0); +}, +{ +name = caret_1; +pos = (306.5,0); +}, +{ +name = top_1; +pos = (249,715); +}, +{ +name = top_2; +pos = (556,715); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(551,0,l), +(551,530,l), +(402,530,l), +(402,0,l) +); +}, +{ +closed = 1; +nodes = ( +(527,580,o), +(565,614,o), +(565,667,cs), +(565,720,o), +(527,755,o), +(476,755,cs), +(426,755,o), +(388,720,o), +(388,667,cs), +(388,614,o), +(426,580,o), +(476,580,cs) +); +}, +{ +closed = 1; +nodes = ( +(220,582,o), +(245,603,o), +(291,603,c), +(312,603,o), +(333,601,o), +(353,598,c), +(353,721,l), +(325,727,o), +(301,730,o), +(260,730,c), +(143,730,o), +(71,665,o), +(71,536,c), +(71,0,l), +(220,0,l), +(220,541,l) +); +}, +{ +closed = 1; +nodes = ( +(458,407,l), +(458,530,l), +(5,530,l), +(5,407,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(151,0,l), +(266,541,ls), +(275,582,o), +(301,603,o), +(342,603,c), +(370,603,o), +(394,597,o), +(415,589,c), +(441,712,l), +(412,723,o), +(372,729,o), +(332,729,c), +(229,729,o), +(147,683,o), +(120,554,cs), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(451,407,l), +(477,530,l), +(49,530,l), +(23,407,l) +); +}, +{ +closed = 1; +nodes = ( +(487,0,l), +(600,530,l), +(451,530,l), +(338,0,l) +); +}, +{ +closed = 1; +nodes = ( +(601,580,o), +(643,617,o), +(643,675,c), +(643,723,o), +(612,755,o), +(560,755,c), +(508,755,o), +(466,717,o), +(466,659,c), +(466,611,o), +(497,580,o), +(548,580,c) +); +} +); +width = 613; +} +); +}, +{ +color = 6; +glyphname = f_ij; +kernLeft = f; +kernRight = q; +lastChange = "2024-03-21 14:12:42 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom_1; +pos = (144,0); +}, +{ +name = bottom_2; +pos = (544,0); +}, +{ +name = caret_1; +pos = (400,0); +}, +{ +name = top_1; +pos = (296,715); +}, +{ +name = top_2; +pos = (696,715); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(408,443,l), +(408,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,0,l), +(493,530,l), +(393,530,l), +(393,0,l) +); +}, +{ +closed = 1; +nodes = ( +(478,602,o), +(505,627,o), +(505,663,cs), +(505,700,o), +(478,725,o), +(443,725,cs), +(408,725,o), +(381,700,o), +(381,663,cs), +(381,627,o), +(408,602,o), +(443,602,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(112,0,l), +(230,557,ls), +(241,610,o), +(272,636,o), +(320,636,c), +(343,636,o), +(363,630,o), +(383,621,c), +(401,708,l), +(375,718,o), +(347,725,o), +(315,725,c), +(221,725,o), +(156,678,o), +(131,561,cs), +(12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(474,443,l), +(493,530,l), +(50,530,l), +(31,443,l) +); +}, +{ +closed = 1; +nodes = ( +(432,0,l), +(545,530,l), +(445,530,l), +(332,0,l) +); +}, +{ +closed = 1; +nodes = ( +(567,-185,o), +(633,-138,o), +(658,-21,cs), +(775,530,l), +(675,530,l), +(558,-17,ls), +(547,-70,o), +(514,-94,o), +(469,-94,c), +(446,-94,o), +(426,-88,o), +(406,-79,c), +(387,-168,l), +(413,-178,o), +(441,-185,o), +(473,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(557,602,o), +(584,629,o), +(584,668,c), +(584,702,o), +(561,725,o), +(527,725,c), +(489,725,o), +(462,698,o), +(462,658,c), +(462,625,o), +(485,602,o), +(519,602,c) +); +}, +{ +closed = 1; +nodes = ( +(787,602,o), +(814,629,o), +(814,668,c), +(814,702,o), +(791,725,o), +(757,725,c), +(719,725,o), +(692,698,o), +(692,658,c), +(692,625,o), +(715,602,o), +(749,602,c) +); +} +); +width = 800; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (161,0); +}, +{ +name = bottom_2; +pos = (594,0); +}, +{ +name = caret_1; +pos = (433.5,0); +}, +{ +name = top_1; +pos = (313,715); +}, +{ +name = top_2; +pos = (746,715); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(551,0,l), +(551,530,l), +(402,530,l), +(402,0,l) +); +}, +{ +closed = 1; +nodes = ( +(527,580,o), +(565,614,o), +(565,667,cs), +(565,720,o), +(527,755,o), +(476,755,cs), +(426,755,o), +(388,720,o), +(388,667,cs), +(388,614,o), +(426,580,o), +(476,580,cs) +); +}, +{ +closed = 1; +nodes = ( +(220,582,o), +(245,603,o), +(291,603,c), +(312,603,o), +(333,601,o), +(353,598,c), +(353,721,l), +(325,727,o), +(301,730,o), +(260,730,c), +(143,730,o), +(71,665,o), +(71,536,c), +(71,0,l), +(220,0,l), +(220,541,l) +); +}, +{ +closed = 1; +nodes = ( +(458,407,l), +(458,530,l), +(5,530,l), +(5,407,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(151,0,l), +(266,541,ls), +(275,582,o), +(301,603,o), +(342,603,c), +(370,603,o), +(394,597,o), +(415,589,c), +(441,712,l), +(412,723,o), +(372,729,o), +(332,729,c), +(229,729,o), +(147,683,o), +(120,554,cs), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(451,407,l), +(477,530,l), +(49,530,l), +(23,407,l) +); +}, +{ +closed = 1; +nodes = ( +(487,0,l), +(600,530,l), +(451,530,l), +(338,0,l) +); +}, +{ +closed = 1; +nodes = ( +(632,-189,o), +(711,-143,o), +(738,-14,cs), +(854,530,l), +(705,530,l), +(594,9,ls), +(585,-32,o), +(561,-54,o), +(520,-54,c), +(495,-54,o), +(473,-49,o), +(453,-41,c), +(425,-172,l), +(450,-183,o), +(489,-189,o), +(529,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(601,580,o), +(643,617,o), +(643,675,c), +(643,723,o), +(612,755,o), +(560,755,c), +(508,755,o), +(466,717,o), +(466,659,c), +(466,611,o), +(497,580,o), +(548,580,c) +); +}, +{ +closed = 1; +nodes = ( +(855,580,o), +(897,617,o), +(897,675,c), +(897,723,o), +(866,755,o), +(814,755,c), +(762,755,o), +(720,717,o), +(720,659,c), +(720,611,o), +(751,580,o), +(802,580,c) +); +} +); +width = 867; +} +); +}, +{ +color = 6; +glyphname = f_l; +kernLeft = f; +kernRight = l; +lastChange = "2024-03-21 14:12:42 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom_1; +pos = (86,0); +}, +{ +name = bottom_2; +pos = (371,0); +}, +{ +name = caret_1; +pos = (284.5,0); +}, +{ +name = top_1; +pos = (238,715); +}, +{ +name = top_2; +pos = (523,715); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(631,443,l), +(631,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,606,o), +(521,636,o), +(574,636,c), +(597,636,o), +(616,632,o), +(636,625,c), +(636,715,l), +(611,722,o), +(591,725,o), +(564,725,c), +(456,725,o), +(393,667,o), +(393,550,c), +(393,0,l), +(493,0,l), +(493,557,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(112,0,l), +(230,557,ls), +(241,610,o), +(272,636,o), +(320,636,c), +(343,636,o), +(363,630,o), +(383,621,c), +(401,708,l), +(375,718,o), +(347,725,o), +(315,725,c), +(221,725,o), +(156,678,o), +(131,561,cs), +(12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(340,443,l), +(359,530,l), +(50,530,l), +(31,443,l) +); +}, +{ +closed = 1; +nodes = ( +(432,0,l), +(584,715,l), +(484,715,l), +(332,0,l) +); +} +); +width = 569; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (97,0); +}, +{ +name = bottom_2; +pos = (403,0); +}, +{ +name = caret_1; +pos = (306,0); +}, +{ +name = top_1; +pos = (249,715); +}, +{ +name = top_2; +pos = (555,715); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(151,0,l), +(266,541,ls), +(275,582,o), +(301,603,o), +(342,603,c), +(370,603,o), +(394,597,o), +(415,589,c), +(441,712,l), +(412,723,o), +(372,729,o), +(332,729,c), +(229,729,o), +(147,683,o), +(120,554,cs), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(371,407,l), +(397,530,l), +(49,530,l), +(23,407,l) +); +}, +{ +closed = 1; +nodes = ( +(487,0,l), +(639,715,l), +(490,715,l), +(338,0,l) +); +} +); +width = 612; +} +); +}, +{ +color = 6; +glyphname = fi; +kernLeft = f; +kernRight = i; +lastChange = "2024-03-21 14:12:42 +0000"; +layers = ( +{ +anchors = ( +{ +name = caret_1; +pos = (285,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l), +(185,0,l), +(185,557,l) +); +}, +{ +closed = 1; +nodes = ( +(453,443,l), +(453,530,l), +(10,530,l), +(10,443,l) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(490,602,o), +(517,627,o), +(517,663,cs), +(517,700,o), +(490,725,o), +(455,725,cs), +(420,725,o), +(393,700,o), +(393,663,cs), +(393,627,o), +(420,602,o), +(455,602,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(112,0,l), +(230,557,ls), +(241,610,o), +(272,636,o), +(320,636,c), +(343,636,o), +(363,630,o), +(383,621,c), +(401,708,l), +(375,718,o), +(347,725,o), +(315,725,c), +(221,725,o), +(156,678,o), +(131,561,cs), +(12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(474,443,l), +(493,530,l), +(50,530,l), +(31,443,l) +); +}, +{ +closed = 1; +nodes = ( +(432,0,l), +(545,530,l), +(445,530,l), +(332,0,l) +); +}, +{ +closed = 1; +nodes = ( +(557,602,o), +(584,629,o), +(584,668,c), +(584,702,o), +(561,725,o), +(527,725,c), +(489,725,o), +(462,698,o), +(462,658,c), +(462,625,o), +(485,602,o), +(519,602,c) +); +} +); +width = 570; +}, +{ +anchors = ( +{ +name = caret_1; +pos = (306.5,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(551,0,l), +(551,530,l), +(402,530,l), +(402,0,l) +); +}, +{ +closed = 1; +nodes = ( +(527,580,o), +(565,614,o), +(565,667,cs), +(565,720,o), +(527,755,o), +(476,755,cs), +(426,755,o), +(388,720,o), +(388,667,cs), +(388,614,o), +(426,580,o), +(476,580,cs) +); +}, +{ +closed = 1; +nodes = ( +(220,582,o), +(245,603,o), +(291,603,c), +(312,603,o), +(333,601,o), +(353,598,c), +(353,721,l), +(325,727,o), +(301,730,o), +(260,730,c), +(143,730,o), +(71,665,o), +(71,536,c), +(71,0,l), +(220,0,l), +(220,541,l) +); +}, +{ +closed = 1; +nodes = ( +(458,407,l), +(458,530,l), +(5,530,l), +(5,407,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(151,0,l), +(266,541,ls), +(275,582,o), +(301,603,o), +(342,603,c), +(370,603,o), +(394,597,o), +(415,589,c), +(441,712,l), +(412,723,o), +(372,729,o), +(332,729,c), +(229,729,o), +(147,683,o), +(120,554,cs), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(451,407,l), +(477,530,l), +(49,530,l), +(23,407,l) +); +}, +{ +closed = 1; +nodes = ( +(487,0,l), +(600,530,l), +(451,530,l), +(338,0,l) +); +}, +{ +closed = 1; +nodes = ( +(601,580,o), +(643,617,o), +(643,675,c), +(643,723,o), +(612,755,o), +(560,755,c), +(508,755,o), +(466,717,o), +(466,659,c), +(466,611,o), +(497,580,o), +(548,580,c) +); +} +); +width = 613; +} +); +unicode = 64257; +}, +{ +color = 6; +glyphname = fl; +kernLeft = f; +kernRight = l; +lastChange = "2024-03-21 14:12:42 +0000"; +layers = ( +{ +anchors = ( +{ +name = caret_1; +pos = (284.5,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(631,443,l), +(631,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,606,o), +(521,636,o), +(574,636,c), +(597,636,o), +(616,632,o), +(636,625,c), +(636,715,l), +(611,722,o), +(591,725,o), +(564,725,c), +(456,725,o), +(393,667,o), +(393,550,c), +(393,0,l), +(493,0,l), +(493,557,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(112,0,l), +(230,557,ls), +(241,610,o), +(272,636,o), +(320,636,c), +(343,636,o), +(363,630,o), +(383,621,c), +(401,708,l), +(375,718,o), +(347,725,o), +(315,725,c), +(221,725,o), +(156,678,o), +(131,561,cs), +(12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(340,443,l), +(359,530,l), +(50,530,l), +(31,443,l) +); +}, +{ +closed = 1; +nodes = ( +(432,0,l), +(584,715,l), +(484,715,l), +(332,0,l) +); +} +); +width = 569; +}, +{ +anchors = ( +{ +name = caret_1; +pos = (306,0); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(151,0,l), +(266,541,ls), +(275,582,o), +(301,603,o), +(342,603,c), +(370,603,o), +(394,597,o), +(415,589,c), +(441,712,l), +(412,723,o), +(372,729,o), +(332,729,c), +(229,729,o), +(147,683,o), +(120,554,cs), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(371,407,l), +(397,530,l), +(49,530,l), +(23,407,l) +); +}, +{ +closed = 1; +nodes = ( +(487,0,l), +(639,715,l), +(490,715,l), +(338,0,l) +); +} +); +width = 612; +} +); +unicode = 64258; +}, +{ +color = 6; +glyphname = ordfeminine; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(251,376,o), +(313,440,o), +(313,537,cs), +(313,634,o), +(251,698,o), +(164,698,cs), +(77,698,o), +(16,634,o), +(16,537,cs), +(16,440,o), +(77,376,o), +(164,376,cs) +); +}, +{ +closed = 1; +nodes = ( +(124,449,o), +(98,478,o), +(98,537,cs), +(98,596,o), +(124,625,o), +(164,625,cs), +(205,625,o), +(230,596,o), +(230,537,cs), +(230,478,o), +(205,449,o), +(164,449,cs) +); +}, +{ +closed = 1; +nodes = ( +(227,449,o), +(208,468,o), +(208,505,cs), +(208,515,o), +(210,525,o), +(212,537,cs), +(225,596,o), +(257,625,o), +(297,625,cs), +(329,625,o), +(348,607,o), +(348,570,cs), +(348,560,o), +(347,549,o), +(344,537,cs), +(332,478,o), +(300,449,o), +(259,449,cs) +); +}, +{ +closed = 1; +nodes = ( +(341,376,o), +(407,440,o), +(427,537,cs), +(430,550,o), +(431,563,o), +(431,575,cs), +(431,650,o), +(377,698,o), +(302,698,cs), +(215,698,o), +(151,634,o), +(130,537,cs), +(127,524,o), +(126,511,o), +(126,499,cs), +(126,424,o), +(179,376,o), +(254,376,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(235,376,o), +(296,472.026,o), +(296,581,c), +(296,649.25,o), +(261.385,698,o), +(206,698,c), +(120.393,698,o), +(56,609,o), +(56,508,c), +(56,432,o), +(93,376,o), +(153,376,c) +); +}, +{ +closed = 1; +nodes = ( +(156,447,o), +(138,473,o), +(138,514,c), +(138,574,o), +(173,627,o), +(216,627,c), +(248,627,o), +(269,601,o), +(269,560,c), +(269,500,o), +(231,447,o), +(188,447,c) +); +}, +{ +closed = 1; +nodes = ( +(310,384,l), +(375,690,l), +(295,690,l), +(275,598,l), +(277,531,l), +(246,462,l), +(230,384,l) +); +} +); +width = 335; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(251,376,o), +(313,440,o), +(313,537,cs), +(313,634,o), +(251,698,o), +(164,698,cs), +(77,698,o), +(16,634,o), +(16,537,cs), +(16,440,o), +(77,376,o), +(164,376,cs) +); +}, +{ +closed = 1; +nodes = ( +(124,449,o), +(98,478,o), +(98,537,cs), +(98,596,o), +(124,625,o), +(164,625,cs), +(205,625,o), +(230,596,o), +(230,537,cs), +(230,478,o), +(205,449,o), +(164,449,cs) +); +}, +{ +closed = 1; +nodes = ( +(227,449,o), +(208,468,o), +(208,505,cs), +(208,515,o), +(210,525,o), +(212,537,cs), +(225,596,o), +(257,625,o), +(297,625,cs), +(329,625,o), +(348,607,o), +(348,570,cs), +(348,560,o), +(347,549,o), +(344,537,cs), +(332,478,o), +(300,449,o), +(259,449,cs) +); +}, +{ +closed = 1; +nodes = ( +(341,376,o), +(407,440,o), +(427,537,cs), +(430,550,o), +(431,563,o), +(431,575,cs), +(431,650,o), +(377,698,o), +(302,698,cs), +(215,698,o), +(151,634,o), +(130,537,cs), +(127,524,o), +(126,511,o), +(126,499,cs), +(126,424,o), +(179,376,o), +(254,376,cs) +); +}, +{ +closed = 1; +nodes = ( +(229,447,o), +(211,473,o), +(211,514,c), +(211,574,o), +(246,627,o), +(289,627,c), +(321,627,o), +(342,601,o), +(342,560,c), +(342,500,o), +(304,447,o), +(261,447,c) +); +}, +{ +closed = 1; +nodes = ( +(193.393,698,o), +(129,609,o), +(129,508,c), +(129,432,o), +(166,376,o), +(226,376,c), +(308,376,o), +(369,472.026,o), +(369,581,c), +(369,649.25,o), +(334.385,698,o), +(279,698,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(220,374,o), +(282,472,o), +(282,600,c), +(282,660,o), +(251,700,o), +(206,700,c), +(117,700,o), +(54,613,o), +(54,504,c), +(54,432,o), +(88,374,o), +(145,374,c) +); +}, +{ +closed = 1; +nodes = ( +(173,464,o), +(161,483,o), +(161,510,c), +(161,560,o), +(185,610,o), +(220,610,c), +(243,610,o), +(257,592,o), +(257,560,c), +(257,515,o), +(231,464,o), +(196,464,c) +); +}, +{ +closed = 1; +nodes = ( +(318,384,l), +(383,690,l), +(283,690,l), +(263,598,l), +(265,531,l), +(234,462,l), +(218,384,l) +); +} +); +width = 338; +} +); +unicode = 170; +}, +{ +color = 6; +glyphname = ordmasculine; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(251,376,o), +(313,440,o), +(313,537,cs), +(313,634,o), +(251,698,o), +(164,698,cs), +(77,698,o), +(16,634,o), +(16,537,cs), +(16,440,o), +(77,376,o), +(164,376,cs) +); +}, +{ +closed = 1; +nodes = ( +(124,449,o), +(98,478,o), +(98,537,cs), +(98,596,o), +(124,625,o), +(164,625,cs), +(205,625,o), +(230,596,o), +(230,537,cs), +(230,478,o), +(205,449,o), +(164,449,cs) +); +}, +{ +closed = 1; +nodes = ( +(227,449,o), +(208,468,o), +(208,505,cs), +(208,515,o), +(210,525,o), +(212,537,cs), +(225,596,o), +(257,625,o), +(297,625,cs), +(329,625,o), +(348,607,o), +(348,570,cs), +(348,560,o), +(347,549,o), +(344,537,cs), +(332,478,o), +(300,449,o), +(259,449,cs) +); +}, +{ +closed = 1; +nodes = ( +(341,376,o), +(407,440,o), +(427,537,cs), +(430,550,o), +(431,563,o), +(431,575,cs), +(431,650,o), +(377,698,o), +(302,698,cs), +(215,698,o), +(151,634,o), +(130,537,cs), +(127,524,o), +(126,511,o), +(126,499,cs), +(126,424,o), +(179,376,o), +(254,376,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(281,376,o), +(355,465,o), +(355,566,c), +(355,643,o), +(305,698,o), +(225,698,c), +(131,698,o), +(57,609,o), +(57,508,c), +(57,431,o), +(107,376,o), +(187,376,c) +); +}, +{ +closed = 1; +nodes = ( +(160,449,o), +(139,473,o), +(139,514,c), +(139,574,o), +(177,625,o), +(220,625,c), +(252,625,o), +(273,601,o), +(273,560,c), +(273,500,o), +(235,449,o), +(192,449,c) +); +} +); +width = 327; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(292,374,o), +(366,455,o), +(366,566,c), +(366,643,o), +(314,700,o), +(228,700,c), +(128,700,o), +(54,619,o), +(54,508,c), +(54,431,o), +(106,374,o), +(192,374,c) +); +}, +{ +closed = 1; +nodes = ( +(176,467,o), +(161,482,o), +(161,514,c), +(161,566,o), +(186,607,o), +(221,607,c), +(244,607,o), +(259,592,o), +(259,560,c), +(259,508,o), +(234,467,o), +(199,467,c) +); +} +); +width = 337; +} +); +unicode = 186; +}, +{ +color = 6; +glyphname = Delta; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(57,0,l), +(429,690,l), +(327,690,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(488,0,l), +(508,96,l), +(40,96,l), +(20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(572,0,l), +(481,690,l), +(383,690,l), +(467,0,l) +); +} +); +width = 657; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(450,690,l), +(293,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(470,0,l), +(500,141,l), +(82,141,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(602,0,l), +(530,690,l), +(380,690,l), +(443,0,l) +); +} +); +width = 675; +} +); +unicode = 916; +}, +{ +color = 6; +glyphname = Omega; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(650,0,l), +(650,96,l), +(390,96,l), +(390,0,l) +); +}, +{ +closed = 1; +nodes = ( +(490,180,l), +(390,180,l), +(390,0,l), +(490,0,l) +); +}, +{ +closed = 1; +nodes = ( +(466,593,o), +(544,521,o), +(544,412,cs), +(544,298,o), +(480,228.1,o), +(390,205,c), +(390,128,l), +(536,152.866,o), +(650,256.477,o), +(650,415,cs), +(650,585,o), +(527,700,o), +(345,700,c), +(163,700,o), +(40,585,o), +(40,415,cs), +(40,256.477,o), +(154,152.866,o), +(300,128,c), +(300,205,l), +(210,228.1,o), +(146,298,o), +(146,412,cs), +(146,521,o), +(224,593,o), +(345,593,c) +); +}, +{ +closed = 1; +nodes = ( +(300,96,l), +(40,96,l), +(40,0,l), +(300,0,l) +); +}, +{ +closed = 1; +nodes = ( +(300,0,l), +(300,180,l), +(200,180,l), +(200,0,l) +); +}, +{ +closed = 1; +nodes = ( +(650,0,l), +(670,96,l), +(410,96,l), +(390,0,l) +); +}, +{ +closed = 1; +nodes = ( +(528,180,l), +(428,180,l), +(390,0,l), +(490,0,l) +); +}, +{ +closed = 1; +nodes = ( +(320,96,l), +(60,96,l), +(40,0,l), +(300,0,l) +); +}, +{ +closed = 1; +nodes = ( +(300,0,l), +(338,180,l), +(238,180,l), +(200,0,l) +); +}, +{ +closed = 1; +nodes = ( +(575,593,o), +(637,539,o), +(637,455,cs), +(637,441,o), +(635,427,o), +(632,412,cs), +(607,298,o), +(528,228,o), +(434,205,c), +(417,128,l), +(568,153,o), +(705,256,o), +(738,415,cs), +(743,438,o), +(745,461,o), +(745,482,cs), +(745,615,o), +(651,700,o), +(494,700,c), +(312,700,o), +(164,585,o), +(128,415,cs), +(123,393,o), +(121,372,o), +(121,352,cs), +(121,229,o), +(206,150,o), +(327,128,c), +(344,205,l), +(273,224,o), +(227,275,o), +(227,356,cs), +(227,373,o), +(230,392,o), +(234,412,cs), +(257,521,o), +(350,593,o), +(471,593,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(272,205,l), +(201,224,o), +(155,272,o), +(155,373,c), +(155,493,o), +(251,593,o), +(398,593,c), +(502,593,o), +(565,539,o), +(565,445,c), +(565,314,o), +(468.321,231.015,o), +(362,205,c), +(345,128,l), +(518,147,o), +(673,286,o), +(673,462,c), +(673,602,o), +(561,700,o), +(404,700,c), +(198,700,o), +(49,552,o), +(49,369,c), +(49,236,o), +(134,160,o), +(255,128,c) +); +}, +{ +closed = 1; +nodes = ( +(228,0,l), +(248,96,l), +(-12,96,l), +(-32,0,l) +); +}, +{ +closed = 1; +nodes = ( +(228,0,l), +(266,180,l), +(166,180,l), +(128,0,l) +); +}, +{ +closed = 1; +nodes = ( +(418,0,l), +(456,180,l), +(356,180,l), +(318,0,l) +); +}, +{ +closed = 1; +nodes = ( +(578,0,l), +(598,96,l), +(338,96,l), +(318,0,l) +); +} +); +width = 690; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(325,147,l), +(40,147,l), +(40,0,l), +(325,0,l) +); +}, +{ +closed = 1; +nodes = ( +(325,0,l), +(325,225,l), +(200,225,l), +(200,0,l) +); +}, +{ +closed = 1; +nodes = ( +(670,0,l), +(670,147,l), +(385,147,l), +(385,0,l) +); +}, +{ +closed = 1; +nodes = ( +(510,225,l), +(385,225,l), +(385,0,l), +(510,0,l) +); +}, +{ +closed = 1; +nodes = ( +(166.969,704,o), +(40,589,o), +(40,425,cs), +(40,286,o), +(138,185,o), +(325,173,c), +(325,294,l), +(252.539,301,o), +(198,347,o), +(198,422,cs), +(198,504,o), +(261.074,558,o), +(355,558,c), +(449,558,o), +(512,504,o), +(512,422,cs), +(512,347,o), +(457,301,o), +(385,294,c), +(385,173,l), +(572,185,o), +(670,286,o), +(670,425,cs), +(670,589,o), +(543,704,o), +(355,704,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(315,294,l), +(255,300,o), +(213,335,o), +(213,393,cs), +(213,481,o), +(285,558,o), +(397,558,c), +(479,558,o), +(533,517,o), +(533,452,cs), +(533,375,o), +(459,302,o), +(375,294,c), +(350,173,l), +(568,187,o), +(695,323,o), +(695,470,c), +(695,605,o), +(572,704,o), +(412,704,c), +(192,704,o), +(52,551,o), +(52,387,c), +(52,277,o), +(130,188,o), +(290,173,c) +); +}, +{ +closed = 1; +nodes = ( +(253,0,l), +(284,147,l), +(-1,147,l), +(-32,0,l) +); +}, +{ +closed = 1; +nodes = ( +(253,0,l), +(301,225,l), +(176,225,l), +(128,0,l) +); +}, +{ +closed = 1; +nodes = ( +(438,0,l), +(486,225,l), +(361,225,l), +(313,0,l) +); +}, +{ +closed = 1; +nodes = ( +(598,0,l), +(629,147,l), +(344,147,l), +(313,0,l) +); +} +); +width = 711; +} +); +unicode = 937; +}, +{ +color = 6; +glyphname = mu; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(56,-175,l), +(206,530,l), +(106,530,l), +(-44,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(301,-10,o), +(379,79,o), +(409,221,c), +(380,221,l), +(360,127,o), +(297,78,o), +(230,78,c), +(163,78,o), +(120,127,o), +(140,221,c), +(109,198,l), +(82,70,o), +(126,-10,o), +(213,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(433,0,l), +(546,530,l), +(446,530,l), +(333,0,l) +); +} +); +width = 570; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(400,530,l), +(400,0,l), +(500,0,l), +(500,530,l) +); +}, +{ +closed = 1; +nodes = ( +(160,530,l), +(60,530,l), +(60,-175,l), +(160,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(134,70,o), +(191,-10,o), +(278,-10,c), +(366,-10,o), +(429,79,o), +(429,221,c), +(400,221,l), +(400,127,o), +(347,78,o), +(280,78,c), +(213,78,o), +(160,127,o), +(160,221,c), +(134,198,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(93,-175,l), +(243,530,l), +(94,530,l), +(-56,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(285,-14,o), +(344,73,o), +(376,226,c), +(360,226,l), +(345,155,o), +(299,118,o), +(246,118,c), +(193,118,o), +(163,155,o), +(178,226,c), +(153,196,l), +(125,64,o), +(154,-14,o), +(219,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(461,0,l), +(574,530,l), +(425,530,l), +(312,0,l) +); +} +); +width = 586; +} +); +unicode = 956; +}, +{ +color = 6; +glyphname = pi; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(485,530,l), +(385,530,l), +(385,140,l), +(385,44,o), +(436,-10,o), +(527,-10,c), +(551,-10,o), +(571.022,-7,o), +(593,0,c), +(593,89,l), +(576,83,o), +(561,80,o), +(545,80,c), +(508,80,o), +(485,96,o), +(485,143,c) +); +}, +{ +closed = 1; +nodes = ( +(15,443,l), +(593,443,l), +(593,530,l), +(15,530,l) +); +}, +{ +closed = 1; +nodes = ( +(215,530,l), +(115,530,l), +(115,0,l), +(215,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(474,-10,o), +(497,-7,o), +(520,0,c), +(539,91,l), +(521,84,o), +(505,80,o), +(487,80,c), +(458,80,o), +(439,91,o), +(439,119,c), +(439,128,o), +(441,138,o), +(443,147,cs), +(525,530,l), +(425,530,l), +(344,150,l), +(340,133,o), +(338,117,o), +(338,102,cs), +(338,33,o), +(377,-10,o), +(452,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(142,0,l), +(255,530,l), +(155,530,l), +(42,0,l) +); +}, +{ +closed = 1; +nodes = ( +(614,443,l), +(633,530,l), +(55,530,l), +(36,443,l) +); +} +); +width = 612; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(251,0,l), +(251,530,l), +(102,530,l), +(102,0,l) +); +}, +{ +closed = 1; +nodes = ( +(525,530,l), +(376,530,l), +(376,164,l), +(376,51,o), +(442,-14,o), +(552,-14,c), +(581.25,-14,o), +(605.415,-9,o), +(630,0,c), +(630,126,l), +(612,120,o), +(596,117,o), +(579,117,c), +(542,117,o), +(525,136,o), +(525,178,c) +); +}, +{ +closed = 1; +nodes = ( +(10,402,l), +(630,402,l), +(630,530,l), +(10,530,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(505,-14,o), +(531,-9,o), +(557,0,c), +(584,127,l), +(565,120,o), +(544,115,o), +(525,115,c), +(500,115,o), +(486,127,o), +(486,153,cs), +(486,160,o), +(487,167,o), +(489,176,c), +(565,530,l), +(416,530,l), +(341,180,l), +(337,161,o), +(335,143,o), +(335,126,cs), +(335,42,o), +(384,-14,o), +(476,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(178,0,l), +(291,530,l), +(142,530,l), +(29,0,l) +); +}, +{ +closed = 1; +nodes = ( +(642,402,l), +(670,530,l), +(50,530,l), +(22,402,l) +); +} +); +width = 644; +} +); +unicode = 960; +}, +{ +color = 6; +glyphname = zero; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(527,602,o), +(582,543,o), +(582,434,cs), +(582,244,o), +(473,88,o), +(333,88,c), +(227,88,o), +(173,146,o), +(173,254,cs), +(173,444,o), +(282,602,o), +(422,602,c) +); +}, +{ +closed = 1; +nodes = ( +(528,-10,o), +(690,190,o), +(690,441,cs), +(690,594,o), +(593,700,o), +(438,700,c), +(227,700,o), +(65,499,o), +(65,248,cs), +(65,94,o), +(161,-10,o), +(316,-10,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(436,-10,o), +(581,195,o), +(581,474,c), +(581,614,o), +(492,700,o), +(367,700,c), +(176,700,o), +(31,495,o), +(31,216,c), +(31,76,o), +(120,-10,o), +(247,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(189,87,o), +(140,129,o), +(140,230,c), +(140,438,o), +(237,603,o), +(352,603,c), +(423,603,o), +(472,561,o), +(472,460,c), +(472,252,o), +(375,87,o), +(261,87,c) +); +} +); +width = 611; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(147,704,o), +(40,581,o), +(40,345,cs), +(40,109,o), +(147,-14,o), +(313,-14,cs), +(479,-14,o), +(586,109,o), +(586,345,cs), +(586,581,o), +(479,704,o), +(313,704,cs) +); +}, +{ +closed = 1; +nodes = ( +(386,558,o), +(428,496,o), +(428,345,cs), +(428,194,o), +(386,132,o), +(313,132,cs), +(240,132,o), +(198,194,o), +(198,345,cs), +(198,496,o), +(240,558,o), +(313,558,cs) +); +}, +{ +closed = 1; +nodes = ( +(288,704,o), +(163,581,o), +(113,345,cs), +(104,301,o), +(99,261,o), +(99,225,cs), +(99,67,o), +(184,-14,o), +(319,-14,cs), +(485,-14,o), +(609,109,o), +(659,345,cs), +(668,389,o), +(673,430,o), +(673,466,cs), +(673,623,o), +(589,704,o), +(454,704,cs) +); +}, +{ +closed = 1; +nodes = ( +(485,558,o), +(514,526,o), +(514,450,cs), +(514,422,o), +(510,387,o), +(501,345,cs), +(469,194,o), +(414,132,o), +(341,132,cs), +(288,132,o), +(258,165,o), +(258,241,cs), +(258,269,o), +(262,304,o), +(271,345,cs), +(303,496,o), +(359,558,o), +(432,558,cs) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(464,-14,o), +(598,219,o), +(598,455,c), +(598,612,o), +(512,704,o), +(378,704,c), +(165,704,o), +(31,471,o), +(31,235,c), +(31,78,o), +(117,-14,o), +(251,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(221,132,o), +(190,169,o), +(190,245,c), +(190,413,o), +(267,558,o), +(356,558,c), +(408,558,o), +(439,521,o), +(439,445,c), +(439,277,o), +(362,132,o), +(273,132,c) +); +} +); +width = 627; +} +); +unicode = 48; +}, +{ +color = 6; +glyphname = one; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(188,0,l), +(334,690,l), +(254,690,l), +(219,608,o), +(177,584,o), +(82,575,c), +(66,499,l), +(189,499,l), +(83,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(188,0,l), +(335,690,l), +(253,690,l), +(219,608,o), +(177,584,o), +(81,575,c), +(66,499,l), +(189,499,l), +(83,0,l) +); +} +); +width = 360; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(295,0,l), +(295,690,l), +(174,690,l), +(140,520,l), +(140,0,l) +); +}, +{ +closed = 1; +nodes = ( +(196,463,l), +(174,690,l), +(156,608,o), +(115,576,o), +(12,567,c), +(12,463,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(222,0,l), +(369,690,l), +(248,690,l), +(212,608,o), +(164,576,o), +(60,567,c), +(37,463,l), +(166,463,l), +(67,0,l) +); +} +); +width = 376; +} +); +unicode = 49; +}, +{ +color = 6; +glyphname = two; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(508,620,o), +(410,700,o), +(286,700,c), +(158,700,o), +(63,623,o), +(45,473,c), +(148,453,l), +(160,557,o), +(208,608,o), +(281,608,c), +(352,608,o), +(399,566,o), +(399,493,c), +(399,443,o), +(372,391,o), +(312,331,cs), +(48,67,l), +(161,52,l), +(378,267,ls), +(461,350,o), +(508,403,o), +(508,499,c) +); +}, +{ +closed = 1; +nodes = ( +(527,100,l), +(128,100,l), +(48,67,l), +(48,0,l), +(527,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(367,255,ls), +(483,346,o), +(546,434,o), +(546,522,c), +(546,614,o), +(468,700,o), +(340,700,c), +(197,700,o), +(109,623,o), +(74,473,c), +(172,453,l), +(192,557,o), +(247,608,o), +(328,608,c), +(395,608,o), +(435,566,o), +(435,512,cs), +(435,462,o), +(385,393,o), +(296,319,cs), +(-10,67,l), +(106,52,l) +); +}, +{ +closed = 1; +nodes = ( +(455,0,l), +(476,100,l), +(77,100,l), +(-10,67,l), +(-24,0,l) +); +} +); +width = 571; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(528,617,o), +(428,704,o), +(297,704,c), +(162,704,o), +(57,629,o), +(38,459,c), +(192,439,l), +(201,531,o), +(238,563,o), +(287,563,c), +(333,563,o), +(369,534,o), +(369,483,c), +(369,435,o), +(332,386,o), +(271,331,cs), +(38,104,l), +(213,89,l), +(402,261,ls), +(486,336,o), +(528,402,o), +(528,486,c) +); +}, +{ +closed = 1; +nodes = ( +(550,140,l), +(109,140,l), +(38,104,l), +(38,0,l), +(550,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(392,257,ls), +(521,354,o), +(560,425,o), +(560,509,c), +(560,617,o), +(472,704,o), +(348,704,c), +(207,704,o), +(105,629,o), +(66,466,c), +(214,439,l), +(240,531,o), +(284,563,o), +(331,563,c), +(375,563,o), +(401,537,o), +(401,496,c), +(401,460,o), +(370,414,o), +(270,333,cs), +(-11,104,l), +(167,89,l) +); +}, +{ +closed = 1; +nodes = ( +(479,0,l), +(509,140,l), +(68,140,l), +(-11,104,l), +(-33,0,l) +); +} +); +width = 591; +} +); +unicode = 50; +}, +{ +color = 6; +glyphname = three; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(54,590,l), +(433,590,l), +(513,623,l), +(513,690,l), +(54,690,l) +); +}, +{ +closed = 1; +nodes = ( +(271,381,l), +(513,623,l), +(398,638,l), +(189,417,l), +(189,352,l), +(266,352,l), +(371,352,o), +(418,300,o), +(418,217,c), +(418,143.563,o), +(370,85,o), +(282,85,c), +(202,85,o), +(148.333,129.227,o), +(139,224,c), +(35,201,l), +(56.151,63,o), +(151,-10,o), +(283,-10,c), +(437,-10,o), +(527,90.149,o), +(527,223,c), +(527,347.963,o), +(439,428,o), +(338,428,c), +(316,428,o), +(302,425,o), +(284,414,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(399.009,-10,o), +(507.009,124,o), +(507.009,254,c), +(507.009,362,o), +(428.009,428,o), +(340.009,428,c), +(322.009,428,o), +(320.009,425,o), +(300.009,414,c), +(288.009,381,l), +(573.009,623,l), +(453.009,638,l), +(206.009,417,l), +(192.009,352,l), +(269.009,352,l), +(357.009,352,o), +(396.009,311,o), +(396.009,240,c), +(396.009,176,o), +(333.009,85,o), +(238.009,85,c), +(142.009,85,o), +(110.009,157,o), +(115.009,224,c), +(9.009,201,l), +(8.009,69,o), +(90.009,-10,o), +(234.009,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(486.009,590,l), +(573.009,623,l), +(588.009,690,l), +(129.009,690,l), +(107.009,590,l) +); +} +); +width = 572; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(40,550,l), +(465,550,l), +(536,586,l), +(536,690,l), +(40,690,l) +); +}, +{ +closed = 1; +nodes = ( +(295,372,l), +(536,586,l), +(402,638,l), +(183,411,l), +(183,332,l), +(267,332,l), +(355,332,o), +(395,292,o), +(395,227,c), +(395,164,o), +(352,126,o), +(287,126,c), +(230,126,o), +(181,154,o), +(174,242,c), +(22,210,l), +(40,60,o), +(143,-14,o), +(286,-14,c), +(442,-14,o), +(550,79,o), +(550,233,c), +(550,350,o), +(470,438,o), +(369,438,c), +(338,438,o), +(310,435,o), +(284,429,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(394,-14,o), +(525,94,o), +(525,258,c), +(525,357,o), +(458,435,o), +(373,435,c), +(349,435,o), +(330,433,o), +(303,429,c), +(302,372,l), +(589,586,l), +(456,638,l), +(198,411,l), +(182,332,l), +(266,332,l), +(341,332,o), +(374,303,o), +(374,250,c), +(374,179,o), +(317,126,o), +(242,126,c), +(185,126,o), +(152,157,o), +(150,242,c), +(-5,210,l), +(5,57,o), +(95,-14,o), +(232,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(510,550,l), +(589,586,l), +(611,690,l), +(115,690,l), +(85,550,l) +); +} +); +width = 584; +} +); +unicode = 51; +}, +{ +color = 6; +glyphname = four; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(12,141,l), +(547,141,l), +(547,237,l), +(52,237,l), +(12,193,l) +); +}, +{ +closed = 1; +nodes = ( +(447,0,l), +(447,690,l), +(342,690,l), +(342,0,l) +); +}, +{ +closed = 1; +nodes = ( +(114,193,l), +(384,690,l), +(282,690,l), +(12,193,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(94,193,l), +(460,690,l), +(349,690,l), +(-20,193,l) +); +}, +{ +closed = 1; +nodes = ( +(504,141,l), +(524,237,l), +(29,237,l), +(-20,193,l), +(-31,141,l) +); +}, +{ +closed = 1; +nodes = ( +(374,0,l), +(521,690,l), +(416,690,l), +(269,0,l) +); +} +); +width = 561; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(6,118,l), +(564,118,l), +(564,248,l), +(46,248,l), +(6,204,l) +); +}, +{ +closed = 1; +nodes = ( +(475,0,l), +(475,690,l), +(320,690,l), +(320,0,l) +); +}, +{ +closed = 1; +nodes = ( +(149,204,l), +(404,690,l), +(266,690,l), +(6,204,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(128,204,l), +(478,690,l), +(324,690,l), +(-24,204,l) +); +}, +{ +closed = 1; +nodes = ( +(516,118,l), +(544,248,l), +(26,248,l), +(-24,204,l), +(-42,118,l) +); +}, +{ +closed = 1; +nodes = ( +(402,0,l), +(549,690,l), +(394,690,l), +(247,0,l) +); +} +); +width = 569; +} +); +unicode = 52; +}, +{ +color = 6; +glyphname = five; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(138,304,l), +(161.322,342,o), +(210.765,375,o), +(277,375,c), +(371.755,375,o), +(423,309,o), +(423,223,c), +(423,143.627,o), +(366.974,85,o), +(282,85,c), +(208.754,85,o), +(158.283,128.515,o), +(149,204,c), +(45,181,l), +(66.104,63,o), +(158.593,-10,o), +(281,-10,c), +(433.908,-10,o), +(532,90,o), +(532,229,c), +(532,365.913,o), +(436.121,464,o), +(306,464,c), +(221.785,464,o), +(158.387,416.099,o), +(130,338,c), +(147,338,l), +(179,638,l), +(134,590,l), +(502,590,l), +(502,690,l), +(94,690,l), +(60,304,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(400,-10,o), +(514,120,o), +(514,269,c), +(514,380,o), +(442,463,o), +(326,463,c), +(240,463,o), +(173,416,o), +(134,338,c), +(150,338,l), +(246,638,l), +(186,590,l), +(554,590,l), +(576,690,l), +(168,690,l), +(52,304,l), +(130,304,l), +(161,342,o), +(216,376,o), +(283,376,c), +(361,376,o), +(402,325,o), +(402,257,c), +(402,164,o), +(338,85,o), +(244,85,c), +(170,85,o), +(115,123,o), +(115,204,c), +(10,181,l), +(12,63,o), +(109,-10,o), +(231,-10,c) +); +} +); +width = 581; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(186,277,l), +(201,312,o), +(238,344,o), +(291,344,c), +(358,344,o), +(400,296,o), +(400,232,c), +(400,166,o), +(358,126,o), +(293,126,c), +(240,126,o), +(201,154,o), +(190,213,c), +(37,181,l), +(59,60,o), +(153,-14,o), +(286,-14,c), +(447,-14,o), +(555,81,o), +(555,238,c), +(555,369,o), +(464,468,o), +(344,468,c), +(255,468,o), +(195,417,o), +(178,334,c), +(195,334,l), +(227,638,l), +(141,550,l), +(523,550,l), +(523,690,l), +(88,690,l), +(54,277,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(415,-14,o), +(531,105,o), +(531,270,c), +(531,387,o), +(467,466,o), +(363,466,c), +(274,466,o), +(211,417,o), +(176,334,c), +(193,334,l), +(290,638,l), +(185,550,l), +(567,550,l), +(597,690,l), +(162,690,l), +(40,277,l), +(172,277,l), +(194,312,o), +(234,344,o), +(287,344,c), +(344,344,o), +(372,310,o), +(372,255,c), +(372,178,o), +(326,126,o), +(251,126,c), +(202,126,o), +(166,155,o), +(162,213,c), +(2,181,l), +(15,60,o), +(92,-14,o), +(231,-14,c) +); +} +); +width = 593; +} +); +unicode = 53; +}, +{ +color = 6; +glyphname = six; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(155,307,o), +(154,331,o), +(154,365,c), +(154,530,o), +(216,604,o), +(314,604,c), +(377,604,o), +(424.833,573,o), +(447,515,c), +(539,559,l), +(504.792,651,o), +(422.692,700,o), +(323,700,c), +(149.127,700,o), +(45,570,o), +(45,325,c), +(45,96,o), +(152,-10,o), +(306,-10,c), +(456.932,-10,o), +(552,88,o), +(552,218,c), +(552,352,o), +(453,437,o), +(336,437,c), +(236,437,o), +(150,379,o), +(143,261,c), +(157,286,l) +); +}, +{ +closed = 1; +nodes = ( +(394,344,o), +(444,289,o), +(444,212,c), +(444,144,o), +(392,85,o), +(308,85,c), +(224,85,o), +(163,143,o), +(163,218,c), +(163,287,o), +(222,344,o), +(303,344,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(414,-10,o), +(527,100,o), +(527,248,c), +(527,363,o), +(449,437,o), +(334,437,c), +(249,437,o), +(154,379,o), +(121,261,c), +(141,286,l), +(151,417,o), +(215,604,o), +(359,604,c), +(420,604,o), +(468,573,o), +(484,515,c), +(578,557,l), +(549,649,o), +(464,700,o), +(370,700,c), +(146,700,o), +(26,461,o), +(26,229,c), +(26,68,o), +(126,-10,o), +(252,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(181,85,o), +(129,133,o), +(129,199,c), +(129,261,o), +(184,344,o), +(296,344,c), +(378,344,o), +(416,300,o), +(416,241,c), +(416,145,o), +(352,85,o), +(264,85,c) +); +} +); +width = 588; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(200,307,o), +(199,331,o), +(199,365,c), +(199,505,o), +(248,564,o), +(328,564,c), +(376,564,o), +(415,542,o), +(443,497,c), +(562,582,l), +(505,668,o), +(430,704,o), +(333,704,c), +(148,704,o), +(41,577,o), +(41,325,c), +(41,93,o), +(153,-14,o), +(315,-14,c), +(474,-14,o), +(574,87,o), +(574,220,c), +(574,358,o), +(480,445,o), +(365,445,c), +(275,445,o), +(189,391,o), +(188,261,c), +(202,286,l) +); +}, +{ +closed = 1; +nodes = ( +(380,312,o), +(417,271,o), +(417,212,c), +(417,163,o), +(378,121,o), +(317,121,c), +(254,121,o), +(212,161,o), +(212,214,c), +(212,268,o), +(253,312,o), +(316,312,c) +); +}, +{ +closed = 1; +nodes = ( +(265,307,o), +(269,331,o), +(277,365,c), +(306,505,o), +(368,564,o), +(448,564,c), +(496,564,o), +(530,542,o), +(549,497,c), +(686,582,l), +(647,668,o), +(580,704,o), +(483,704,c), +(298,704,o), +(164,577,o), +(110,325,c), +(61,93,o), +(150,-14,o), +(312,-14,c), +(471,-14,o), +(592,87,o), +(621,220,c), +(650,358,o), +(575,445,o), +(460,445,c), +(370,445,o), +(272,391,o), +(243,261,c), +(263,286,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(444,-14,o), +(550,115,o), +(550,257,c), +(550,369,o), +(470,440,o), +(376,440,c), +(286,440,o), +(201,391,o), +(172,261,c), +(192,286,l), +(209,431,o), +(264,564,o), +(379,564,c), +(428,564,o), +(460,542,o), +(478,497,c), +(604,570,l), +(565,661,o), +(491,704,o), +(392,704,c), +(182,704,o), +(32,480,o), +(32,229,c), +(32,76,o), +(120,-14,o), +(260,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(221,121,o), +(186,152,o), +(186,202,c), +(186,259,o), +(231,312,o), +(307,312,c), +(362,312,o), +(397,281,o), +(397,231,c), +(397,174,o), +(352,121,o), +(277,121,c) +); +} +); +width = 606; +} +); +unicode = 54; +}, +{ +color = 6; +glyphname = seven; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(20,590,l), +(440,590,l), +(510,638,l), +(510,690,l), +(20,690,l) +); +}, +{ +closed = 1; +nodes = ( +(284,0,l), +(285,212,o), +(343.665,415,o), +(510,638,c), +(397,638,l), +(248.652,426,o), +(176,212,o), +(165,0,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(219,0,l), +(252,216,o), +(354,419,o), +(573,638,c), +(446,638,l), +(252,426,o), +(142,212,o), +(100,0,c) +); +}, +{ +closed = 1; +nodes = ( +(492,590,l), +(573,638,l), +(584,690,l), +(94,690,l), +(72,590,l) +); +} +); +width = 534; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(11,550,l), +(454,550,l), +(524,588,l), +(524,690,l), +(11,690,l) +); +}, +{ +closed = 1; +nodes = ( +(321,0,l), +(322,230,o), +(375,392,o), +(524,588,c), +(384,598,l), +(227,404,o), +(166,230,o), +(156,0,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(249,0,l), +(291,230,o), +(378,392,o), +(577,588,c), +(433,598,l), +(222,404,o), +(130,230,o), +(84,0,c) +); +}, +{ +closed = 1; +nodes = ( +(499,550,l), +(577,588,l), +(599,690,l), +(86,690,l), +(56,550,l) +); +} +); +width = 539; +} +); +unicode = 55; +}, +{ +color = 6; +glyphname = eight; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(442.007,-10,o), +(534,73,o), +(534,191,c), +(534,304,o), +(437.248,385,o), +(284,385,cs), +(131.732,385,o), +(35,304,o), +(35,191,c), +(35,73,o), +(126.974,-10,o), +(284,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(186,81,o), +(141,130,o), +(141,196,c), +(141,271,o), +(192.125,319,o), +(284,319,cs), +(376.851,319,o), +(428,271,o), +(428,196,c), +(428,130,o), +(383,81,o), +(284,81,cs) +); +}, +{ +closed = 1; +nodes = ( +(425.252,350,o), +(519,418,o), +(519,517,cs), +(519,628,o), +(425.252,700,o), +(284,700,cs), +(143.727,700,o), +(50,628,o), +(50,517,cs), +(50,418,o), +(143.727,350,o), +(284,350,cs) +); +}, +{ +closed = 1; +nodes = ( +(204.143,407,o), +(156,450,o), +(156,512,cs), +(156,570,o), +(204,609,o), +(284,609,cs), +(365,609,o), +(413,570,o), +(413,512,cs), +(413,450,o), +(364.83,407,o), +(284,407,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(395,-10,o), +(505,88,o), +(505,215,c), +(505,309,o), +(428,385,o), +(293,385,cs), +(122.161,385,o), +(-1,282,o), +(-1,167,c), +(-1,70,o), +(84,-10,o), +(222,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(155,81,o), +(107,124,o), +(107,180,c), +(107,254,o), +(169,319,o), +(279,319,cs), +(359,319,o), +(400,275,o), +(400,213,c), +(400,146,o), +(358,81,o), +(237,81,c) +); +}, +{ +closed = 1; +nodes = ( +(444.356,350,o), +(558,438,o), +(558,540,c), +(558,630,o), +(480,700,o), +(351,700,c), +(201.586,700,o), +(85,610,o), +(85,499,cs), +(85,417,o), +(160,350,o), +(285,350,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,407,o), +(190,444,o), +(190,493,cs), +(190,558,o), +(243.862,609,o), +(335,609,cs), +(407,609,o), +(451,574,o), +(451,522,c), +(451,458,o), +(385.682,407,o), +(298,407,cs) +); +} +); +width = 568; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(458,-14,o), +(556,72,o), +(556,196,c), +(556,311,o), +(453,394,o), +(293,394,cs), +(132,394,o), +(30,311,o), +(30,196,c), +(30,72,o), +(127,-14,o), +(293,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(217,117,o), +(181,154,o), +(181,202,c), +(181,258,o), +(222,296,o), +(293,296,c), +(364,296,o), +(405,258,o), +(405,202,c), +(405,154,o), +(369,117,o), +(293,117,c) +); +}, +{ +closed = 1; +nodes = ( +(441,332,o), +(541,404,o), +(541,508,cs), +(541,627,o), +(441,704,o), +(293,704,cs), +(144,704,o), +(45,627,o), +(45,508,cs), +(45,404,o), +(144,332,o), +(293,332,cs) +); +}, +{ +closed = 1; +nodes = ( +(233,418,o), +(196,451,o), +(196,499,cs), +(196,544,o), +(233,573,o), +(293,573,cs), +(353,573,o), +(390,544,o), +(390,499,cs), +(390,451,o), +(353,418,o), +(293,418,cs) +); +}, +{ +closed = 1; +nodes = ( +(455,-14,o), +(571,72,o), +(598,196,c), +(622,311,o), +(537,394,o), +(377,394,cs), +(216,394,o), +(96,311,o), +(72,196,c), +(45,72,o), +(124,-14,o), +(290,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,117,o), +(214,154,o), +(224,202,c), +(236,258,o), +(285,296,o), +(356,296,c), +(427,296,o), +(460,258,o), +(448,202,c), +(438,154,o), +(394,117,o), +(318,117,c) +); +}, +{ +closed = 1; +nodes = ( +(512,332,o), +(627,404,o), +(649,508,cs), +(674,627,o), +(591,704,o), +(443,704,cs), +(294,704,o), +(178,627,o), +(153,508,cs), +(131,404,o), +(215,332,o), +(364,332,cs) +); +}, +{ +closed = 1; +nodes = ( +(322,418,o), +(292,451,o), +(302,499,cs), +(312,544,o), +(355,573,o), +(415,573,cs), +(475,573,o), +(506,544,o), +(496,499,cs), +(486,451,o), +(442,418,o), +(382,418,cs) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(411,-14,o), +(523,99,o), +(523,215,c), +(523,321,o), +(438,394,o), +(296,394,cs), +(113,394,o), +(-2,291,o), +(-2,168,cs), +(-2,69,o), +(84,-14,o), +(235,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(182,117,o), +(149,152,o), +(149,195,c), +(149,250,o), +(199,296,o), +(274,296,c), +(339,296,o), +(376,262,o), +(376,214,c), +(376,167,o), +(337,117,o), +(250,117,c) +); +}, +{ +closed = 1; +nodes = ( +(467,332,o), +(572,435,o), +(572,529,c), +(572,632,o), +(483,704,o), +(353,704,cs), +(190,704,o), +(80,606,o), +(80,497,c), +(80,401,o), +(166,332,o), +(299,332,cs) +); +}, +{ +closed = 1; +nodes = ( +(256,418,o), +(225,446,o), +(225,489,c), +(225,535,o), +(268,573,o), +(334,573,c), +(391,573,o), +(422,545,o), +(422,502,c), +(422,456,o), +(379,418,o), +(313,418,c) +); +} +); +width = 584; +} +); +unicode = 56; +}, +{ +color = 6; +glyphname = nine; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(155,307,o), +(154,331,o), +(154,365,c), +(154,530,o), +(216,604,o), +(314,604,c), +(377,604,o), +(424.833,573,o), +(447,515,c), +(539,559,l), +(504.792,651,o), +(422.692,700,o), +(323,700,c), +(149.127,700,o), +(45,570,o), +(45,325,c), +(45,96,o), +(152,-10,o), +(306,-10,c), +(456.932,-10,o), +(552,88,o), +(552,218,c), +(552,352,o), +(453,437,o), +(336,437,c), +(236,437,o), +(150,379,o), +(143,261,c), +(157,286,l) +); +}, +{ +closed = 1; +nodes = ( +(394,344,o), +(444,289,o), +(444,212,c), +(444,144,o), +(392,85,o), +(308,85,c), +(224,85,o), +(163,143,o), +(163,218,c), +(163,287,o), +(222,344,o), +(303,344,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(457,-10,o), +(577,229,o), +(577,461,c), +(577,622,o), +(477,700,o), +(351,700,c), +(189,700,o), +(76,590,o), +(76,442,c), +(76,327,o), +(154,253,o), +(269,253,c), +(354,253,o), +(449,311,o), +(482,429,c), +(462,404,l), +(452,273,o), +(388,86,o), +(244,86,c), +(183,86,o), +(135,117,o), +(119,175,c), +(25,133,l), +(54,41,o), +(139,-10,o), +(233,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(225,346,o), +(187,390,o), +(187,449,c), +(187,545,o), +(251,605,o), +(339,605,c), +(422,605,o), +(474,557,o), +(474,491,c), +(474,429,o), +(419,346,o), +(307,346,c) +); +} +); +width = 586; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(200,307,o), +(199,331,o), +(199,365,c), +(199,505,o), +(248,564,o), +(328,564,c), +(376,564,o), +(415,542,o), +(443,497,c), +(562,582,l), +(505,668,o), +(430,704,o), +(333,704,c), +(148,704,o), +(41,577,o), +(41,325,c), +(41,93,o), +(153,-14,o), +(315,-14,c), +(474,-14,o), +(574,87,o), +(574,220,c), +(574,358,o), +(480,445,o), +(365,445,c), +(275,445,o), +(189,391,o), +(188,261,c), +(202,286,l) +); +}, +{ +closed = 1; +nodes = ( +(380,312,o), +(417,271,o), +(417,212,c), +(417,163,o), +(378,121,o), +(317,121,c), +(254,121,o), +(212,161,o), +(212,214,c), +(212,268,o), +(253,312,o), +(316,312,c) +); +}, +{ +closed = 1; +nodes = ( +(265,307,o), +(269,331,o), +(277,365,c), +(306,505,o), +(368,564,o), +(448,564,c), +(496,564,o), +(530,542,o), +(549,497,c), +(686,582,l), +(647,668,o), +(580,704,o), +(483,704,c), +(298,704,o), +(164,577,o), +(110,325,c), +(61,93,o), +(150,-14,o), +(312,-14,c), +(471,-14,o), +(592,87,o), +(621,220,c), +(650,358,o), +(575,445,o), +(460,445,c), +(370,445,o), +(272,391,o), +(243,261,c), +(263,286,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(424,-14,o), +(574,210,o), +(574,461,c), +(574,614,o), +(486,704,o), +(346,704,c), +(162,704,o), +(56,575,o), +(56,433,c), +(56,321,o), +(136,250,o), +(230,250,c), +(320,250,o), +(405,299,o), +(434,429,c), +(414,404,l), +(397,259,o), +(342,126,o), +(227,126,c), +(178,126,o), +(146,148,o), +(128,193,c), +(2,120,l), +(41,29,o), +(115,-14,o), +(214,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(244,378,o), +(209,409,o), +(209,459,c), +(209,516,o), +(254,569,o), +(329,569,c), +(385,569,o), +(420,538,o), +(420,488,c), +(420,431,o), +(375,378,o), +(299,378,c) +); +} +); +width = 604; +} +); +unicode = 57; +}, +{ +color = 6; +glyphname = zero.tf; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(430,-10,o), +(569,197,o), +(569,476,c), +(569,616,o), +(486,700,o), +(361,700,c), +(170,700,o), +(31,493,o), +(31,214,c), +(31,74,o), +(114,-10,o), +(241,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(183,87,o), +(140,127,o), +(140,228,c), +(140,436,o), +(231,603,o), +(346,603,c), +(417,603,o), +(460,563,o), +(460,462,c), +(460,254,o), +(369,87,o), +(255,87,c) +); +} +); +width = 599; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(450,-14,o), +(580,219,o), +(580,455,c), +(580,612,o), +(498,704,o), +(364,704,c), +(151,704,o), +(21,471,o), +(21,235,c), +(21,78,o), +(103,-14,o), +(237,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(207,132,o), +(180,169,o), +(180,245,c), +(180,413,o), +(253,558,o), +(342,558,c), +(394,558,o), +(421,521,o), +(421,445,c), +(421,277,o), +(348,132,o), +(259,132,c) +); +} +); +width = 600; +} +); +}, +{ +color = 6; +glyphname = one.tf; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(75,0,l), +(530,0,l), +(530,96,l), +(75,96,l) +); +}, +{ +closed = 1; +nodes = ( +(366,0,l), +(366,690,l), +(286,690,l), +(261,572,l), +(261,0,l) +); +}, +{ +closed = 1; +nodes = ( +(312,499,l), +(286,690,l), +(268,608,o), +(231,584,o), +(88,575,c), +(88,499,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(292,0,l), +(439,690,l), +(359,690,l), +(309,572,l), +(187,0,l) +); +}, +{ +closed = 1; +nodes = ( +(456,0,l), +(476,96,l), +(21,96,l), +(1,0,l) +); +}, +{ +closed = 1; +nodes = ( +(344,499,l), +(359,690,l), +(323,608,o), +(281,584,o), +(136,575,c), +(120,499,l) +); +} +); +width = 599; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(297,0,l), +(297,690,l), +(142,690,l), +(142,0,l) +); +}, +{ +closed = 1; +nodes = ( +(120,488,o), +(187,569,o), +(228,690,c), +(110,690,l), +(86,658,o), +(51,630,o), +(6,612,c), +(6,460,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(315,0,l), +(462,690,l), +(341,690,l), +(271,520,l), +(160,0,l) +); +}, +{ +closed = 1; +nodes = ( +(462,0,l), +(492,140,l), +(32,140,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(314,463,l), +(341,690,l), +(304,605,o), +(251,573,o), +(133,567,c), +(110,463,l) +); +} +); +width = 599; +} +); +}, +{ +color = 6; +glyphname = two.tf; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(381,255,ls), +(497,346,o), +(560,434,o), +(560,522,c), +(560,614,o), +(482,700,o), +(354,700,c), +(211,700,o), +(123,623,o), +(88,473,c), +(186,453,l), +(206,557,o), +(261,608,o), +(342,608,c), +(409,608,o), +(449,566,o), +(449,512,cs), +(449,462,o), +(399,393,o), +(310,319,cs), +(4,67,l), +(120,52,l) +); +}, +{ +closed = 1; +nodes = ( +(469,0,l), +(490,100,l), +(91,100,l), +(4,67,l), +(-10,0,l) +); +} +); +width = 601; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(396,257,ls), +(525,354,o), +(564,425,o), +(564,509,c), +(564,617,o), +(476,704,o), +(352,704,c), +(211,704,o), +(109,629,o), +(70,466,c), +(218,439,l), +(244,531,o), +(288,563,o), +(335,563,c), +(379,563,o), +(405,537,o), +(405,496,c), +(405,460,o), +(374,414,o), +(274,333,cs), +(-7,104,l), +(171,89,l) +); +}, +{ +closed = 1; +nodes = ( +(483,0,l), +(513,140,l), +(72,140,l), +(-7,104,l), +(-29,0,l) +); +} +); +width = 599; +} +); +}, +{ +color = 6; +glyphname = three.tf; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(412.009,-10,o), +(520.009,124,o), +(520.009,254,c), +(520.009,362,o), +(441.009,428,o), +(353.009,428,c), +(335.009,428,o), +(333.009,425,o), +(313.009,414,c), +(301.009,381,l), +(586.009,623,l), +(466.009,638,l), +(219.009,417,l), +(205.009,352,l), +(282.009,352,l), +(370.009,352,o), +(409.009,311,o), +(409.009,240,c), +(409.009,176,o), +(346.009,85,o), +(251.009,85,c), +(155.009,85,o), +(123.009,157,o), +(128.009,224,c), +(22.009,201,l), +(21.009,69,o), +(103.009,-10,o), +(247.009,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(499.009,590,l), +(586.009,623,l), +(601.009,690,l), +(142.009,690,l), +(120.009,590,l) +); +} +); +width = 600; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(397,-14,o), +(528,94,o), +(528,258,c), +(528,357,o), +(461,435,o), +(376,435,c), +(352,435,o), +(333,433,o), +(306,429,c), +(305,372,l), +(592,586,l), +(459,638,l), +(201,411,l), +(185,332,l), +(269,332,l), +(344,332,o), +(377,303,o), +(377,250,c), +(377,179,o), +(320,126,o), +(245,126,c), +(188,126,o), +(155,157,o), +(153,242,c), +(-2,210,l), +(8,57,o), +(98,-14,o), +(235,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(513,550,l), +(592,586,l), +(614,690,l), +(118,690,l), +(88,550,l) +); +} +); +width = 601; +} +); +}, +{ +color = 6; +glyphname = four.tf; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(113,193,l), +(479,690,l), +(368,690,l), +(-1,193,l) +); +}, +{ +closed = 1; +nodes = ( +(523,141,l), +(543,237,l), +(48,237,l), +(-1,193,l), +(-12,141,l) +); +}, +{ +closed = 1; +nodes = ( +(393,0,l), +(540,690,l), +(435,690,l), +(288,0,l) +); +} +); +width = 599; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(140,204,l), +(490,690,l), +(336,690,l), +(-12,204,l) +); +}, +{ +closed = 1; +nodes = ( +(528,118,l), +(556,248,l), +(38,248,l), +(-12,204,l), +(-30,118,l) +); +}, +{ +closed = 1; +nodes = ( +(414,0,l), +(561,690,l), +(406,690,l), +(259,0,l) +); +} +); +width = 599; +} +); +}, +{ +color = 6; +glyphname = five.tf; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(408,-10,o), +(522,120,o), +(522,269,c), +(522,380,o), +(450,463,o), +(334,463,c), +(248,463,o), +(181,416,o), +(142,338,c), +(158,338,l), +(254,638,l), +(194,590,l), +(562,590,l), +(584,690,l), +(176,690,l), +(60,304,l), +(138,304,l), +(169,342,o), +(224,376,o), +(291,376,c), +(369,376,o), +(410,325,o), +(410,257,c), +(410,164,o), +(346,85,o), +(252,85,c), +(178,85,o), +(123,123,o), +(123,204,c), +(18,181,l), +(20,63,o), +(117,-10,o), +(239,-10,c) +); +} +); +width = 599; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(416,-14,o), +(532,105,o), +(532,270,c), +(532,387,o), +(468,466,o), +(364,466,c), +(275,466,o), +(212,417,o), +(177,334,c), +(194,334,l), +(291,638,l), +(186,550,l), +(568,550,l), +(598,690,l), +(163,690,l), +(41,277,l), +(173,277,l), +(195,312,o), +(235,344,o), +(288,344,c), +(345,344,o), +(373,310,o), +(373,255,c), +(373,178,o), +(327,126,o), +(252,126,c), +(203,126,o), +(167,155,o), +(163,213,c), +(3,181,l), +(16,60,o), +(93,-14,o), +(232,-14,c) +); +} +); +width = 599; +} +); +}, +{ +color = 6; +glyphname = six.tf; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(425,-10,o), +(538,100,o), +(538,248,c), +(538,363,o), +(460,437,o), +(345,437,c), +(260,437,o), +(165,379,o), +(132,261,c), +(152,286,l), +(162,417,o), +(226,604,o), +(370,604,c), +(431,604,o), +(479,573,o), +(495,515,c), +(589,557,l), +(560,649,o), +(475,700,o), +(381,700,c), +(157,700,o), +(37,461,o), +(37,229,c), +(37,68,o), +(137,-10,o), +(263,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(192,85,o), +(140,133,o), +(140,199,c), +(140,261,o), +(195,344,o), +(307,344,c), +(389,344,o), +(427,300,o), +(427,241,c), +(427,145,o), +(363,85,o), +(275,85,c) +); +} +); +width = 601; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(509,-10,o), +(618,113,o), +(618,345,cs), +(618,578,o), +(509,700,o), +(348,700,cs), +(188,700,o), +(79,578,o), +(79,345,cs), +(79,113,o), +(188,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,70,o), +(188,149,o), +(188,345,cs), +(188,542,o), +(250,620,o), +(348,620,cs), +(447,620,o), +(509,542,o), +(509,345,cs), +(509,149,o), +(447,70,o), +(348,70,cs) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(442,-14,o), +(548,115,o), +(548,257,c), +(548,369,o), +(468,440,o), +(374,440,c), +(284,440,o), +(199,391,o), +(170,261,c), +(190,286,l), +(207,431,o), +(262,564,o), +(377,564,c), +(426,564,o), +(458,542,o), +(476,497,c), +(602,570,l), +(563,661,o), +(489,704,o), +(390,704,c), +(180,704,o), +(30,480,o), +(30,229,c), +(30,76,o), +(118,-14,o), +(258,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(219,121,o), +(184,152,o), +(184,202,c), +(184,259,o), +(229,312,o), +(305,312,c), +(360,312,o), +(395,281,o), +(395,231,c), +(395,174,o), +(350,121,o), +(275,121,c) +); +} +); +width = 601; +} +); +}, +{ +color = 6; +glyphname = seven.tf; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(155,0,l), +(155,530,l), +(55,530,l), +(55,0,l) +); +}, +{ +closed = 1; +nodes = ( +(395,0,l), +(495,0,l), +(495,332,l), +(495,460,o), +(420,540,o), +(313,540,c), +(204,540,o), +(122,451,o), +(122,309,c), +(155,309,l), +(155,406,o), +(208,457,o), +(275,457,c), +(342,457,o), +(395,406,o), +(395,309,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(253,0,l), +(286,216,o), +(386,419,o), +(615,638,c), +(488,638,l), +(284,426,o), +(176,212,o), +(134,0,c) +); +}, +{ +closed = 1; +nodes = ( +(534,590,l), +(615,638,l), +(626,690,l), +(120,690,l), +(98,590,l) +); +} +); +width = 599; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(155,0,l), +(155,530,l), +(55,530,l), +(55,0,l) +); +}, +{ +closed = 1; +nodes = ( +(395,0,l), +(495,0,l), +(495,332,l), +(495,460,o), +(420,540,o), +(313,540,c), +(204,540,o), +(122,451,o), +(122,309,c), +(155,309,l), +(155,406,o), +(208,457,o), +(275,457,c), +(342,457,o), +(395,406,o), +(395,309,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(249,0,l), +(291,230,o), +(377,392,o), +(572,588,c), +(428,598,l), +(221,404,o), +(130,230,o), +(84,0,c) +); +}, +{ +closed = 1; +nodes = ( +(494,550,l), +(572,588,l), +(594,690,l), +(91,690,l), +(61,550,l) +); +} +); +width = 539; +} +); +}, +{ +color = 6; +glyphname = eight.tf; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(410,-10,o), +(520,88,o), +(520,215,c), +(520,309,o), +(443,385,o), +(308,385,cs), +(137,385,o), +(14,282,o), +(14,167,c), +(14,70,o), +(99,-10,o), +(237,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(170,81,o), +(122,124,o), +(122,180,c), +(122,254,o), +(184,319,o), +(294,319,cs), +(374,319,o), +(415,275,o), +(415,213,c), +(415,146,o), +(373,81,o), +(252,81,c) +); +}, +{ +closed = 1; +nodes = ( +(459,350,o), +(573,438,o), +(573,540,c), +(573,630,o), +(495,700,o), +(366,700,c), +(217,700,o), +(100,610,o), +(100,499,cs), +(100,417,o), +(175,350,o), +(300,350,cs) +); +}, +{ +closed = 1; +nodes = ( +(243,407,o), +(205,444,o), +(205,493,cs), +(205,558,o), +(259,609,o), +(350,609,cs), +(422,609,o), +(466,574,o), +(466,522,c), +(466,458,o), +(401,407,o), +(313,407,cs) +); +} +); +width = 599; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(412,-14,o), +(524,99,o), +(524,215,c), +(524,321,o), +(439,394,o), +(297,394,cs), +(114,394,o), +(-1,291,o), +(-1,168,cs), +(-1,69,o), +(85,-14,o), +(236,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(183,117,o), +(150,152,o), +(150,195,c), +(150,250,o), +(200,296,o), +(275,296,c), +(340,296,o), +(377,262,o), +(377,214,c), +(377,167,o), +(338,117,o), +(251,117,c) +); +}, +{ +closed = 1; +nodes = ( +(468,332,o), +(573,435,o), +(573,529,c), +(573,632,o), +(484,704,o), +(354,704,cs), +(191,704,o), +(81,606,o), +(81,497,c), +(81,401,o), +(167,332,o), +(300,332,cs) +); +}, +{ +closed = 1; +nodes = ( +(257,418,o), +(226,446,o), +(226,489,c), +(226,535,o), +(269,573,o), +(335,573,c), +(392,573,o), +(423,545,o), +(423,502,c), +(423,456,o), +(380,418,o), +(314,418,c) +); +} +); +width = 586; +} +); +}, +{ +color = 6; +glyphname = nine.tf; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(444,-10,o), +(564,229,o), +(564,461,c), +(564,622,o), +(464,700,o), +(338,700,c), +(176,700,o), +(63,590,o), +(63,442,c), +(63,327,o), +(141,253,o), +(256,253,c), +(341,253,o), +(436,311,o), +(469,429,c), +(449,404,l), +(439,273,o), +(375,86,o), +(231,86,c), +(170,86,o), +(122,117,o), +(106,175,c), +(12,133,l), +(41,41,o), +(126,-10,o), +(220,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(212,346,o), +(174,390,o), +(174,449,c), +(174,545,o), +(238,605,o), +(326,605,c), +(409,605,o), +(461,557,o), +(461,491,c), +(461,429,o), +(406,346,o), +(294,346,c) +); +} +); +width = 599; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(442,383,o), +(443,359,o), +(443,325,c), +(443,146,o), +(379,70,o), +(278,70,c), +(213,70,o), +(163,103,o), +(140,175,c), +(48,131,l), +(83,39,o), +(167,-10,o), +(269,-10,c), +(446,-10,o), +(552,120,o), +(552,365,c), +(552,594,o), +(449,700,o), +(291,700,c), +(134,700,o), +(35,602,o), +(35,472,c), +(35,341,o), +(126,255,o), +(256,255,c), +(356,255,o), +(440,314,o), +(454,429,c), +(440,404,l) +); +}, +{ +closed = 1; +nodes = ( +(195,338,o), +(144,395,o), +(144,478,c), +(144,557,o), +(199,620,o), +(289,620,c), +(373,620,o), +(434,559,o), +(434,472,c), +(434,397,o), +(373,338,o), +(289,338,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(421,-14,o), +(571,210,o), +(571,461,c), +(571,614,o), +(483,704,o), +(343,704,c), +(159,704,o), +(53,575,o), +(53,433,c), +(53,321,o), +(133,250,o), +(227,250,c), +(317,250,o), +(402,299,o), +(431,429,c), +(411,404,l), +(394,259,o), +(339,126,o), +(224,126,c), +(175,126,o), +(143,148,o), +(125,193,c), +(-1,120,l), +(38,29,o), +(112,-14,o), +(211,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(241,378,o), +(206,409,o), +(206,459,c), +(206,516,o), +(251,569,o), +(326,569,c), +(382,569,o), +(417,538,o), +(417,488,c), +(417,431,o), +(372,378,o), +(296,378,c) +); +} +); +width = 600; +} +); +}, +{ +color = 6; +glyphname = fraction; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(20,0,l), +(605,690,l), +(492,690,l), +(-93,0,l) +); +} +); +width = 510; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(51,0,l), +(624,690,l), +(494,690,l), +(-79,0,l) +); +} +); +width = 543; +} +); +unicode = 8260; +}, +{ +color = 6; +glyphname = onehalf; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(187,384,l), +(187,690,l), +(110,690,l), +(110,384,l) +); +}, +{ +closed = 1; +nodes = ( +(105,599,o), +(123,633,o), +(141,690,c), +(95,690,l), +(84,677,o), +(69,665,o), +(50,658,c), +(50,586,l) +); +}, +{ +closed = 1; +nodes = ( +(161,0,l), +(744,690,l), +(641,690,l), +(58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(706,274,o), +(670,313,o), +(612,313,c), +(552,313,o), +(496,280,o), +(470,204,c), +(538,190,l), +(555,234,o), +(574,244,o), +(592,244,c), +(609,244,o), +(621,232,o), +(617,212,c), +(613,192,o), +(592,171,o), +(560,147,cs), +(437,53,l), +(520,46,l), +(615,115,ls), +(659,147,o), +(686,179,o), +(695,219,c) +); +}, +{ +closed = 1; +nodes = ( +(673,66,l), +(470,66,l), +(437,53,l), +(426,0,l), +(659,0,l) +); +}, +{ +closed = 1; +nodes = ( +(269,384,l), +(334,690,l), +(267,690,l), +(240,610,l), +(192,384,l) +); +}, +{ +closed = 1; +nodes = ( +(271,589,l), +(267,690,l), +(252,651,o), +(231,639,o), +(187,635,c), +(177,589,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(677,690,l), +(564,690,l), +(-21,0,l) +); +}, +{ +closed = 1; +nodes = ( +(196,384,l), +(261,690,l), +(194,690,l), +(179,651,o), +(158,639,o), +(114,635,c), +(104,589,l), +(163,589,l), +(119,384,l) +); +}, +{ +closed = 1; +nodes = ( +(586,0,l), +(600,66,l), +(474,66,l), +(539,108,ls), +(597,145,o), +(623,180,o), +(623,228,cs), +(623,279,o), +(581,313,o), +(524,313,cs), +(457,313,o), +(415,280,o), +(398,212,c), +(465,193,l), +(476,234,o), +(495,244,o), +(515,244,cs), +(533,244,o), +(546,233,o), +(546,217,cs), +(546,198,o), +(531,180,o), +(488,147,cs), +(364,53,l), +(353,0,l) +); +} +); +width = 709; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(106,0,l), +(679,690,l), +(549,690,l), +(-24,0,l) +); +}, +{ +closed = 1; +nodes = ( +(188,384,l), +(253,690,l), +(177,690,l), +(161,647,o), +(138,634,o), +(91,631,c), +(79,574,l), +(137,574,l), +(97,384,l) +); +}, +{ +closed = 1; +nodes = ( +(584,0,l), +(601,80,l), +(489,80,l), +(544,116,ls), +(599,152,o), +(618,188,o), +(618,229,cs), +(618,275,o), +(579,314,o), +(515,314,cs), +(454,314,o), +(404,282,o), +(388,205,c), +(471,189,l), +(478,224,o), +(494,231,o), +(506,231,cs), +(517,231,o), +(526,224,o), +(526,211,cs), +(526,194,o), +(518,181,o), +(469,146,cs), +(355,63,l), +(342,0,l) +); +} +); +width = 697; +} +); +unicode = 189; +}, +{ +color = 6; +glyphname = onequarter; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(385,48,l), +(636,48,l), +(636,109,l), +(402,109,l), +(385,92,l) +); +}, +{ +closed = 1; +nodes = ( +(598,0,l), +(598,306,l), +(523,306,l), +(523,0,l) +); +}, +{ +closed = 1; +nodes = ( +(450,92,l), +(561,306,l), +(498,306,l), +(385,92,l) +); +}, +{ +closed = 1; +nodes = ( +(161,0,l), +(597,690,l), +(494,690,l), +(58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(187,384,l), +(187,690,l), +(120,690,l), +(110,610,l), +(110,384,l) +); +}, +{ +closed = 1; +nodes = ( +(146,589,l), +(120,690,l), +(114,651,o), +(95,639,o), +(52,635,c), +(52,589,l) +); +}, +{ +closed = 1; +nodes = ( +(395,48,l), +(646,48,l), +(659,109,l), +(425,109,l), +(405,92,l) +); +}, +{ +closed = 1; +nodes = ( +(598,0,l), +(663,306,l), +(588,306,l), +(523,0,l) +); +}, +{ +closed = 1; +nodes = ( +(475,92,l), +(626,306,l), +(558,306,l), +(405,92,l) +); +}, +{ +closed = 1; +nodes = ( +(161,0,l), +(744,690,l), +(641,690,l), +(58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(269,384,l), +(334,690,l), +(267,690,l), +(240,610,l), +(192,384,l) +); +}, +{ +closed = 1; +nodes = ( +(271,589,l), +(267,690,l), +(252,651,o), +(231,639,o), +(187,635,c), +(177,589,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(677,690,l), +(564,690,l), +(-21,0,l) +); +}, +{ +closed = 1; +nodes = ( +(196,384,l), +(261,690,l), +(194,690,l), +(179,651,o), +(158,639,o), +(114,635,c), +(104,589,l), +(163,589,l), +(119,384,l) +); +}, +{ +closed = 1; +nodes = ( +(525,0,l), +(535,48,l), +(573,48,l), +(586,109,l), +(548,109,l), +(590,306,l), +(485,306,l), +(332,92,l), +(322,48,l), +(460,48,l), +(450,0,l) +); +}, +{ +closed = 1; +nodes = ( +(499,229,l), +(473,109,l), +(413.995,109,l) +); +} +); +width = 666; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(175,0,l), +(601,690,l), +(478,690,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(384,42,l), +(642,42,l), +(642,112,l), +(402,112,l), +(384,95,l) +); +}, +{ +closed = 1; +nodes = ( +(606,0,l), +(606,306,l), +(516,306,l), +(516,0,l) +); +}, +{ +closed = 1; +nodes = ( +(466,95,l), +(561,306,l), +(495,306,l), +(384,95,l) +); +}, +{ +closed = 1; +nodes = ( +(179,384,l), +(179,690,l), +(103,690,l), +(88,593,l), +(88,384,l) +); +}, +{ +closed = 1; +nodes = ( +(124,574,l), +(103,690,l), +(96,647,o), +(76,634,o), +(30,631,c), +(30,574,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(105,0,l), +(678,690,l), +(548,690,l), +(-25,0,l) +); +}, +{ +closed = 1; +nodes = ( +(188,384,l), +(253,690,l), +(177,690,l), +(161,647,o), +(138,634,o), +(91,631,c), +(79,574,l), +(137,574,l), +(97,384,l) +); +}, +{ +closed = 1; +nodes = ( +(533,0,l), +(542,42,l), +(578,42,l), +(593,112,l), +(557,112,l), +(598,306,l), +(480,306,l), +(331,95,l), +(320,42,l), +(452,42,l), +(443,0,l) +); +}, +{ +closed = 1; +nodes = ( +(487,206,l), +(467,112,l), +(424,112,l) +); +} +); +width = 686; +} +); +unicode = 188; +}, +{ +color = 6; +glyphname = threequarters; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(429,48,l), +(680,48,l), +(693,109,l), +(459,109,l), +(439,92,l) +); +}, +{ +closed = 1; +nodes = ( +(632,0,l), +(697,306,l), +(622,306,l), +(557,0,l) +); +}, +{ +closed = 1; +nodes = ( +(504,92,l), +(660,306,l), +(597,306,l), +(439,92,l) +); +}, +{ +closed = 1; +nodes = ( +(195,0,l), +(778,690,l), +(675,690,l), +(92,0,l) +); +}, +{ +closed = 1; +nodes = ( +(176,624,l), +(372,624,l), +(404,637,l), +(416,690,l), +(190,690,l) +); +}, +{ +closed = 1; +nodes = ( +(278,547,l), +(404,637,l), +(353,667,l), +(227,565,l), +(219,528,l), +(262,528,l), +(297,528,o), +(312,511,o), +(306,485,c), +(300,458,o), +(276,442,o), +(250,442,c), +(228,442,o), +(206,454,o), +(210,488,c), +(136,473,l), +(130,408,o), +(170,377,o), +(236,377,c), +(299,377,o), +(363,417,o), +(378,489,c), +(389,539,o), +(363,576,o), +(313,576,c), +(303,576,o), +(288,575,o), +(275,573,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(127,0,l), +(712,690,l), +(599,690,l), +(14,0,l) +); +}, +{ +closed = 1; +nodes = ( +(608,48,l), +(621,109,l), +(387,109,l), +(367,92,l), +(357,48,l) +); +}, +{ +closed = 1; +nodes = ( +(249,377,o), +(308,430,o), +(308,499,cs), +(308,537,o), +(283,576,o), +(241,576,c), +(231,576,o), +(216,575,o), +(203,573,c), +(206,547,l), +(332,637,l), +(277,667,l), +(155,565,l), +(147,528,l), +(190,528,l), +(220,528,o), +(235,514,o), +(235,491,c), +(235,461,o), +(216,442,o), +(182,442,c), +(160,442,o), +(139,455,o), +(136,488,c), +(64,473,l), +(72,410,o), +(114,377,o), +(178,377,c) +); +}, +{ +closed = 1; +nodes = ( +(437,92,l), +(588,306,l), +(520,306,l), +(367,92,l) +); +}, +{ +closed = 1; +nodes = ( +(560,0,l), +(625,306,l), +(550,306,l), +(485,0,l) +); +}, +{ +closed = 1; +nodes = ( +(300,624,l), +(332,637,l), +(344,690,l), +(118,690,l), +(104,624,l) +); +} +); +width = 701; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(235,0,l), +(808,690,l), +(685,690,l), +(112,0,l) +); +}, +{ +closed = 1; +nodes = ( +(453,42,l), +(711,42,l), +(726,112,l), +(486,112,l), +(464,95,l) +); +}, +{ +closed = 1; +nodes = ( +(666,0,l), +(731,306,l), +(641,306,l), +(576,0,l) +); +}, +{ +closed = 1; +nodes = ( +(546,95,l), +(686,306,l), +(620,306,l), +(464,95,l) +); +}, +{ +closed = 1; +nodes = ( +(178,610,l), +(386,610,l), +(417,628,l), +(431,690,l), +(195,690,l) +); +}, +{ +closed = 1; +nodes = ( +(293,545,l), +(417,628,l), +(368,667,l), +(235,564,l), +(226,522,l), +(271,522,l), +(299,522,o), +(309,510,o), +(305,489,c), +(300,468,o), +(286,456,o), +(265,456,c), +(243,456,o), +(232,468,o), +(235,499,c), +(142,481,l), +(137,409,o), +(179,376,o), +(244,376,c), +(314,376,o), +(376,411,o), +(391,482,c), +(401,529,o), +(381,568,o), +(334,568,c), +(317,568,o), +(298,565,o), +(281,561,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(738,690,l), +(608,690,l), +(35,0,l) +); +}, +{ +closed = 1; +nodes = ( +(638,42,l), +(653,112,l), +(413,112,l), +(391,95,l), +(380,42,l) +); +}, +{ +closed = 1; +nodes = ( +(265,376,o), +(317,424,o), +(317,490,c), +(317,529,o), +(296,568,o), +(251,568,c), +(240,568,o), +(225,565,o), +(208,561,c), +(220,545,l), +(344,628,l), +(295,667,l), +(162,564,l), +(153,522,l), +(198,522,l), +(222,522,o), +(233,513,o), +(233,493,c), +(233,474,o), +(217,456,o), +(192,456,c), +(170,456,o), +(157,471,o), +(155,498,c), +(69,481,l), +(74,411,o), +(121,376,o), +(187,376,c) +); +}, +{ +closed = 1; +nodes = ( +(473,95,l), +(613,306,l), +(540,306,l), +(391,95,l) +); +}, +{ +closed = 1; +nodes = ( +(593,0,l), +(658,306,l), +(568,306,l), +(503,0,l) +); +}, +{ +closed = 1; +nodes = ( +(313,610,l), +(344,628,l), +(358,690,l), +(122,690,l), +(105,610,l) +); +} +); +width = 746; +} +); +unicode = 190; +}, +{ +color = 6; +glyphname = onesuperior; +kernLeft = M; +kernRight = b; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(138,384,l), +(138,690,l), +(71,690,l), +(61,610,l), +(61,384,l) +); +}, +{ +closed = 1; +nodes = ( +(97,589,l), +(71,690,l), +(65,651,o), +(45.73,639.304,o), +(3,635,c), +(3,589,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(147,384,l), +(212,690,l), +(145,690,l), +(118,610,l), +(70,384,l) +); +}, +{ +closed = 1; +nodes = ( +(149,589,l), +(145,690,l), +(130,651,o), +(109,639,o), +(65,635,c), +(55,589,l) +); +} +); +width = 170; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(148,384,l), +(148,690,l), +(72,690,l), +(57,593,l), +(57,384,l) +); +}, +{ +closed = 1; +nodes = ( +(93,574,l), +(72,690,l), +(65,647,o), +(45,634,o), +(-1,631,c), +(-1,574,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(157,384,l), +(222,690,l), +(146,690,l), +(110,593,l), +(66,384,l) +); +}, +{ +closed = 1; +nodes = ( +(142,574,l), +(146,690,l), +(130,647,o), +(107,634,o), +(60,631,c), +(48,574,l) +); +} +); +userData = { +ufoStretch.beamYPositionForStretchedGlyph = 114.20507; +}; +width = 175; +} +); +unicode = 185; +}, +{ +color = 6; +glyphname = twosuperior; +kernLeft = M; +kernRight = b; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(237,658,o), +(192,697,o), +(134,697,c), +(74,697,o), +(25,664,o), +(16,588,c), +(87,574,l), +(94,618,o), +(111,628,o), +(129,628,c), +(146,628,o), +(161,616,o), +(161,596,c), +(161,576,o), +(145,555,o), +(118,531,cs), +(15,437,l), +(99,430,l), +(180,499,ls), +(217,531,o), +(237,563,o), +(237,603,c) +); +}, +{ +closed = 1; +nodes = ( +(248,450,l), +(45,450,l), +(15,437,l), +(15,384,l), +(248,384,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(211,492,ls), +(269,529,o), +(295,564,o), +(295,612,c), +(295,663,o), +(253,697,o), +(196,697,c), +(129,697,o), +(87,664,o), +(70,596,c), +(137,577,l), +(148,618,o), +(167,628,o), +(187,628,c), +(205,628,o), +(218,617,o), +(218,601,c), +(218,582,o), +(203,564,o), +(160,531,cs), +(36,437,l), +(115,430,l) +); +}, +{ +closed = 1; +nodes = ( +(258,384,l), +(272,450,l), +(69,450,l), +(36,437,l), +(25,384,l) +); +} +); +width = 261; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(244,657,o), +(197,698,o), +(133,698,c), +(71,698,o), +(21,666,o), +(14,581,c), +(105,573,l), +(106,608,o), +(118,615,o), +(130,615,c), +(142,615,o), +(151,607,o), +(151,592,c), +(151,573,o), +(135,553,o), +(108,530,cs), +(12,447,l), +(113,440,l), +(189,502,ls), +(227,533,o), +(244,563,o), +(244,599,c) +); +}, +{ +closed = 1; +nodes = ( +(254,464,l), +(40,464,l), +(12,447,l), +(12,384,l), +(254,384,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(223,500,ls), +(278,536,o), +(297,572,o), +(297,613,cs), +(297,659,o), +(258,698,o), +(194,698,c), +(133,698,o), +(83,666,o), +(67,589,c), +(150,573,l), +(157,608,o), +(173,615,o), +(185,615,c), +(196,615,o), +(205,608,o), +(205,595,c), +(205,578,o), +(197,565,o), +(148,530,cs), +(34,447,l), +(134,442,l) +); +}, +{ +closed = 1; +nodes = ( +(263,384,l), +(280,464,l), +(66,464,l), +(34,447,l), +(21,384,l) +); +} +); +width = 264; +} +); +unicode = 178; +}, +{ +color = 6; +glyphname = threesuperior; +kernLeft = M; +kernRight = b; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(16,624,l), +(212,624,l), +(242,637,l), +(242,690,l), +(16,690,l) +); +}, +{ +closed = 1; +nodes = ( +(135,547,l), +(242,637,l), +(184,667,l), +(80,565,l), +(80,528,l), +(123,528,l), +(158,528,o), +(176,511,o), +(176,485,c), +(176,458,o), +(155,442,o), +(129,442,c), +(107,442,o), +(82,454,o), +(79,488,c), +(8,473,l), +(16,408,o), +(63,377,o), +(129,377,c), +(192,377,o), +(247,417,o), +(247,489,c), +(247,539,o), +(214,576,o), +(164,576,c), +(154,576,o), +(139,575,o), +(126,573,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(222,377,o), +(281,430,o), +(281,499,cs), +(281,537,o), +(256,576,o), +(214,576,c), +(204,576,o), +(189,575,o), +(176,573,c), +(179,547,l), +(305,637,l), +(250,667,l), +(128,565,l), +(120,528,l), +(163,528,l), +(193,528,o), +(208,514,o), +(208,491,c), +(208,461,o), +(189,442,o), +(155,442,c), +(133,442,o), +(112,455,o), +(109,488,c), +(37,473,l), +(45,410,o), +(87,377,o), +(151,377,c) +); +}, +{ +closed = 1; +nodes = ( +(273,624,l), +(305,637,l), +(317,690,l), +(91,690,l), +(77,624,l) +); +} +); +width = 262; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(12,610,l), +(220,610,l), +(248,628,l), +(248,690,l), +(12,690,l) +); +}, +{ +closed = 1; +nodes = ( +(141,545,l), +(248,628,l), +(190,667,l), +(79,564,l), +(79,522,l), +(124,522,l), +(152,522,o), +(165,510,o), +(165,489,c), +(165,468,o), +(153,456,o), +(132,456,c), +(110,456,o), +(97,468,o), +(93,499,c), +(4,481,l), +(14,409,o), +(63,376,o), +(128,376,c), +(198,376,o), +(253,410.724,o), +(253,482,c), +(253,529,o), +(224,568,o), +(177,568,c), +(160,568,o), +(142,565,o), +(126,561,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(229,376,o), +(281,424,o), +(281,490,c), +(281,529,o), +(260,568,o), +(215,568,c), +(204,568,o), +(189,565,o), +(172,561,c), +(184,545,l), +(308,628,l), +(259,667,l), +(126,564,l), +(117,522,l), +(162,522,l), +(186,522,o), +(197,513,o), +(197,493,c), +(197,474,o), +(181,456,o), +(156,456,c), +(134,456,o), +(121,471,o), +(119,498,c), +(33,481,l), +(38,411,o), +(85,376,o), +(151,376,c) +); +}, +{ +closed = 1; +nodes = ( +(277,610,l), +(308,628,l), +(322,690,l), +(86,690,l), +(69,610,l) +); +} +); +width = 264; +} +); +unicode = 179; +}, +{ +color = 6; +glyphname = space; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +width = 220; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +width = 182; +} +); +unicode = 32; +}, +{ +color = 6; +glyphname = nbspace; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +width = 220; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +width = 182; +} +); +unicode = 160; +}, +{ +color = 6; +glyphname = CR; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +width = 500; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +width = 500; +} +); +unicode = 13; +}, +{ +color = 6; +glyphname = NULL; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +width = 500; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +width = 500; +} +); +}, +{ +color = 6; +glyphname = .notdef; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (393,0); +}, +{ +name = bottomleft; +pos = (197,0); +}, +{ +name = center; +pos = (466,345); +}, +{ +name = top; +pos = (375,690); +}, +{ +name = topright; +pos = (392,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(430,-100,l), +(607,690,l), +(169,690,l), +(-8,-100,l) +); +}, +{ +closed = 1; +nodes = ( +(254,594,l), +(482,594,l), +(345,-4,l), +(117,-4,l) +); +} +); +width = 597; +}, +{ +anchors = ( +{ +name = bottom; +pos = (377,0); +}, +{ +name = bottomleft; +pos = (187,0); +}, +{ +name = center; +pos = (450,345); +}, +{ +name = top; +pos = (373,690); +}, +{ +name = topright; +pos = (402,690); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(453,-100,l), +(620,690,l), +(156,690,l), +(-11,-100,l) +); +}, +{ +closed = 1; +nodes = ( +(280,545,l), +(434,545,l), +(329,45,l), +(175,45,l) +); +} +); +width = 600; +} +); +}, +{ +color = 6; +glyphname = space.tf; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +width = 600; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +width = 600; +} +); +}, +{ +color = 6; +glyphname = period; +kernLeft = K; +kernRight = Q; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(147.823,-10,o), +(175,18,o), +(175,56,cs), +(175,95,o), +(147.823,123,o), +(110,123,cs), +(72.177,123,o), +(45,95,o), +(45,56,cs), +(45,18,o), +(72.177,-10,o), +(110,-10,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(86,-10,o), +(116,19,o), +(116,61,c), +(116,98,o), +(91,123,o), +(54,123,c), +(13,123,o), +(-16,94,o), +(-16,50,c), +(-16,15,o), +(9,-10,o), +(45,-10,c) +); +} +); +width = 221; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(114,-14,o), +(156,23,o), +(156,81,c), +(156,129,o), +(125,161,o), +(73,161,c), +(21,161,o), +(-21,123,o), +(-21,65,c), +(-21,17,o), +(10,-14,o), +(61,-14,c) +); +} +); +width = 249; +} +); +unicode = 46; +}, +{ +color = 6; +glyphname = comma; +kernLeft = K; +kernRight = Q; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(175,96,o), +(148,123,o), +(110,123,cs), +(72,123,o), +(45,95,o), +(45,56,cs), +(45,18,o), +(72,-10,o), +(110,-10,c), +(97,6,l), +(45,-160,l), +(107,-160,l), +(147,-57,ls), +(165,-12,o), +(175,18,o), +(175,52,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(7,-160,l), +(109,113,l), +(-5,113,l), +(-63,-160,l) +); +} +); +width = 192; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(214,127,o), +(175,162,o), +(124,162,cs), +(74,162,o), +(36,126,o), +(36,73,cs), +(36,21,o), +(74,-14,o), +(124,-14,c), +(104,6,l), +(61,-160,l), +(142,-160,l), +(186,-51,ls), +(204,-6,o), +(214,30,o), +(214,67,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(39,-159,l), +(166,148,l), +(6,148,l), +(-59,-159,l) +); +} +); +width = 246; +} +); +unicode = 44; +}, +{ +color = 6; +glyphname = colon; +kernLeft = D; +kernRight = I; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(173,407,o), +(203,436,o), +(203,478,c), +(203,515,o), +(178,540,o), +(141,540,c), +(100,540,o), +(71,511,o), +(71,467,c), +(71,432,o), +(96,407,o), +(132,407,c) +); +}, +{ +closed = 1; +nodes = ( +(85,-10,o), +(115,19,o), +(115,61,c), +(115,98,o), +(90,123,o), +(53,123,c), +(12,123,o), +(-17,94,o), +(-17,50,c), +(-17,15,o), +(8,-10,o), +(44,-10,c) +); +} +); +width = 220; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(196,369,o), +(238,406,o), +(238,464,c), +(238,512,o), +(207,544,o), +(155,544,c), +(103,544,o), +(61,506,o), +(61,448,c), +(61,400,o), +(92,369,o), +(143,369,c) +); +}, +{ +closed = 1; +nodes = ( +(114,-14,o), +(156,23,o), +(156,81,c), +(156,129,o), +(125,161,o), +(73,161,c), +(21,161,o), +(-21,123,o), +(-21,65,c), +(-21,17,o), +(10,-14,o), +(61,-14,c) +); +} +); +width = 250; +} +); +unicode = 58; +}, +{ +color = 6; +glyphname = semicolon; +kernLeft = D; +kernRight = I; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(175,96,o), +(148,123,o), +(110,123,cs), +(72,123,o), +(45,95,o), +(45,56,cs), +(45,18,o), +(72,-10,o), +(110,-10,c), +(97,6,l), +(45,-160,l), +(107,-160,l), +(147,-57,ls), +(165,-12,o), +(175,18,o), +(175,52,c) +); +}, +{ +closed = 1; +nodes = ( +(148,407,o), +(175,435,o), +(175,473,cs), +(175,512,o), +(148,540,o), +(110,540,cs), +(72,540,o), +(45,512,o), +(45,473,cs), +(45,435,o), +(72,407,o), +(110,407,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(17,-160,l), +(119,113,l), +(5,113,l), +(-53,-160,l) +); +}, +{ +closed = 1; +nodes = ( +(174,407,o), +(204,436,o), +(204,478,c), +(204,515,o), +(179,540,o), +(142,540,c), +(101,540,o), +(72,511,o), +(72,467,c), +(72,432,o), +(97,407,o), +(133,407,c) +); +} +); +width = 219; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(214,127,o), +(175,162,o), +(124,162,cs), +(74,162,o), +(36,126,o), +(36,73,cs), +(36,21,o), +(74,-14,o), +(124,-14,c), +(104,6,l), +(61,-160,l), +(142,-160,l), +(186,-51,ls), +(204,-6,o), +(214,30,o), +(214,67,c) +); +}, +{ +closed = 1; +nodes = ( +(175,368,o), +(214,404,o), +(214,456,cs), +(214,509,o), +(175,544,o), +(124,544,cs), +(74,544,o), +(36,509,o), +(36,456,cs), +(36,404,o), +(74,368,o), +(124,368,cs) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(40,-159,l), +(167,148,l), +(7,148,l), +(-58,-159,l) +); +}, +{ +closed = 1; +nodes = ( +(197,369,o), +(239,406,o), +(239,464,c), +(239,512,o), +(208,544,o), +(156,544,c), +(104,544,o), +(62,506,o), +(62,448,c), +(62,400,o), +(93,369,o), +(144,369,c) +); +} +); +width = 251; +} +); +unicode = 59; +}, +{ +color = 6; +glyphname = ellipsis; +kernLeft = K; +kernRight = Q; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(526,-10,o), +(556,19,o), +(556,61,cs), +(556,98,o), +(531,123,o), +(494,123,cs), +(453,123,o), +(424,94,o), +(424,50,cs), +(424,15,o), +(449,-10,o), +(485,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(86,-10,o), +(116,19,o), +(116,61,cs), +(116,98,o), +(91,123,o), +(54,123,cs), +(13,123,o), +(-16,94,o), +(-16,50,cs), +(-16,15,o), +(9,-10,o), +(45,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(306,-10,o), +(336,19,o), +(336,61,cs), +(336,98,o), +(311,123,o), +(274,123,cs), +(233,123,o), +(204,94,o), +(204,50,cs), +(204,15,o), +(229,-10,o), +(265,-10,cs) +); +} +); +width = 661; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(594,-14,o), +(636,23,o), +(636,81,cs), +(636,129,o), +(605,161,o), +(553,161,cs), +(501,161,o), +(459,123,o), +(459,65,cs), +(459,17,o), +(490,-14,o), +(541,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(114,-14,o), +(156,23,o), +(156,81,cs), +(156,129,o), +(125,161,o), +(73,161,cs), +(21,161,o), +(-21,123,o), +(-21,65,cs), +(-21,17,o), +(10,-14,o), +(61,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(354,-14,o), +(396,23,o), +(396,81,cs), +(396,129,o), +(365,161,o), +(313,161,cs), +(261,161,o), +(219,123,o), +(219,65,cs), +(219,17,o), +(250,-14,o), +(301,-14,cs) +); +} +); +width = 729; +} +); +unicode = 8230; +}, +{ +color = 6; +glyphname = exclam; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(166,227,l), +(194,550,ls), +(198,598,o), +(199,619,o), +(199,632,c), +(199,670,o), +(175,700,o), +(135,700,cs), +(95,700,o), +(71,670,o), +(71,632,c), +(71,619,o), +(72,598,o), +(76,550,cs), +(104,227,l) +); +}, +{ +closed = 1; +nodes = ( +(173,-10,o), +(200,18,o), +(200,56,cs), +(200,95,o), +(173,123,o), +(135,123,cs), +(97,123,o), +(70,95,o), +(70,56,cs), +(70,18,o), +(97,-10,o), +(135,-10,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(142,227,l), +(218,478,l), +(263,690,l), +(158,690,l), +(113,478,l), +(80,227,l) +); +}, +{ +closed = 1; +nodes = ( +(111,-10,o), +(141,19,o), +(141,61,c), +(141,98,o), +(116,123,o), +(79,123,c), +(38,123,o), +(9,94,o), +(9,50,c), +(9,15,o), +(34,-10,o), +(70,-10,c) +); +} +); +width = 271; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(168,247,l), +(249,502,l), +(289,690,l), +(133,690,l), +(93,502,l), +(66,247,l) +); +}, +{ +closed = 1; +nodes = ( +(127,-14,o), +(169,23,o), +(169,81,c), +(169,129,o), +(138,161,o), +(86,161,c), +(34,161,o), +(-8,123,o), +(-8,65,c), +(-8,17,o), +(23,-14,o), +(74,-14,c) +); +} +); +width = 273; +} +); +unicode = 33; +}, +{ +color = 6; +glyphname = exclamdown; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(166,227,l), +(194,550,ls), +(198,598,o), +(199,619,o), +(199,632,c), +(199,670,o), +(175,700,o), +(135,700,cs), +(95,700,o), +(71,670,o), +(71,632,c), +(71,619,o), +(72,598,o), +(76,550,cs), +(104,227,l) +); +}, +{ +closed = 1; +nodes = ( +(173,-10,o), +(200,18,o), +(200,56,cs), +(200,95,o), +(173,123,o), +(135,123,cs), +(97,123,o), +(70,95,o), +(70,56,cs), +(70,18,o), +(97,-10,o), +(135,-10,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(78,-175,l), +(126,52,l), +(157,303,l), +(95,303,l), +(21,52,l), +(-27,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(199,407,o), +(229,436,o), +(229,478,c), +(229,515,o), +(204,540,o), +(167,540,c), +(126,540,o), +(97,511,o), +(97,467,c), +(97,432,o), +(122,407,o), +(158,407,c) +); +} +); +width = 269; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(106,-175,l), +(149,28,l), +(176,283,l), +(74,283,l), +(-7,28,l), +(-50,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(208,369,o), +(250,406,o), +(250,464,c), +(250,512,o), +(219,544,o), +(167,544,c), +(115,544,o), +(73,506,o), +(73,448,c), +(73,400,o), +(104,369,o), +(155,369,c) +); +} +); +width = 275; +} +); +unicode = 161; +}, +{ +color = 6; +glyphname = question; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(221,264,ls), +(221,433,o), +(409,401,o), +(409,514,c), +(409,569,o), +(366,607,o), +(288,607,c), +(209,607,o), +(159.778,566.308,o), +(144,484,c), +(45,508,l), +(67.175,630.614,o), +(159,700,o), +(290,700,c), +(436,700,o), +(515,626,o), +(515,524,c), +(515,338,o), +(312,378,o), +(312,255,cs), +(312,227,l), +(221,227,l) +); +}, +{ +closed = 1; +nodes = ( +(306,-10,o), +(333,18,o), +(333,56,cs), +(333,95,o), +(306,123,o), +(268,123,cs), +(230,123,o), +(203,95,o), +(203,56,cs), +(203,18,o), +(230,-10,o), +(268,-10,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(288,227,l), +(294,255,ls), +(318,369,o), +(553,341,o), +(553,532,c), +(553,641,o), +(472,700,o), +(345,700,c), +(205,700,o), +(120,631,o), +(81,514,c), +(174,479,l), +(199,566,o), +(252,607,o), +(340,607,c), +(408,607,o), +(443,577,o), +(443,526,c), +(443,415,o), +(233,438,o), +(203,262,cs), +(197,227,l) +); +}, +{ +closed = 1; +nodes = ( +(244,-10,o), +(274,19,o), +(274,61,c), +(274,98,o), +(249,123,o), +(212,123,c), +(171,123,o), +(142,94,o), +(142,50,c), +(142,15,o), +(167,-10,o), +(203,-10,c) +); +} +); +width = 558; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(309,-14,o), +(348,21,o), +(348,73,cs), +(348,126,o), +(309,162,o), +(258,162,cs), +(208,162,o), +(170,126,o), +(170,73,cs), +(170,21,o), +(208,-14,o), +(258,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(520,629,o), +(420,704,o), +(289,704,c), +(154,704,o), +(49,638.184,o), +(30,489,c), +(184,469,l), +(193,538.742,o), +(231,563,o), +(280,563,c), +(326,563,o), +(360,541,o), +(360,504,c), +(360,414,o), +(185,416,o), +(191,254,cs), +(192,227,l), +(322,227,l), +(322,243,ls), +(322,338,o), +(520,340,o), +(520,514,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(297,227,l), +(301,243,ls), +(329,355,o), +(555,348,o), +(555,527,c), +(555,630,o), +(473,704,o), +(340,704,c), +(210,704,o), +(109,650,o), +(63,501,c), +(210,465,l), +(230,534,o), +(273,563,o), +(327,563,c), +(372,563,o), +(394,542,o), +(394,515,c), +(394,431,o), +(196,424,o), +(171,254,cs), +(167,227,l) +); +}, +{ +closed = 1; +nodes = ( +(248,-14,o), +(290,23,o), +(290,81,c), +(290,129,o), +(259,161,o), +(207,161,c), +(155,161,o), +(113,123,o), +(113,65,c), +(113,17,o), +(144,-14,o), +(195,-14,c) +); +} +); +width = 549; +} +); +unicode = 63; +}, +{ +color = 6; +glyphname = questiondown; +lastChange = "2024-03-21 14:18:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 0; +nodes = ( +(227,550,l), +(255,227,l), +(317,227,l), +(345,550,l) +); +}, +{ +closed = 1; +nodes = ( +(326,261,ls), +(337,92,o), +(146,120,o), +(146,1,c), +(146,-54,o), +(191,-92,o), +(269,-92,c), +(348,-92,o), +(395,-51,o), +(411,31,c), +(510,7,l), +(488,-116,o), +(398,-185,o), +(267,-185,c), +(121,-185,o), +(40,-111,o), +(40,-9,c), +(40,183,o), +(244,147,o), +(251,270,cs), +(253,303,l), +(323,303,l) +); +}, +{ +closed = 1; +nodes = ( +(249,540,o), +(222,512,o), +(222,474,cs), +(222,435,o), +(249,407,o), +(287,407,cs), +(325,407,o), +(352,435,o), +(352,474,cs), +(352,512,o), +(325,540,o), +(287,540,cs) +); +}, +{ +closed = 1; +nodes = ( +(334,266,ls), +(334,90.24,o), +(146,123.52,o), +(146,6,c), +(146,-51.957,o), +(189,-92,o), +(267,-92,c), +(346,-92,o), +(395,-49.333,o), +(411,36,c), +(510,12,l), +(488,-114.203,o), +(396,-185,o), +(265,-185,c), +(119,-185,o), +(40,-108.898,o), +(40,-4,c), +(40,188.914,o), +(243,147.428,o), +(243,275,cs), +(243,303,l), +(334,303,l) +); +}, +{ +closed = 1; +nodes = ( +(249,540,o), +(222,512,o), +(222,474,cs), +(222,435,o), +(249,407,o), +(287,407,cs), +(325,407,o), +(352,435,o), +(352,474,cs), +(352,512,o), +(325,540,o), +(287,540,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(317,-185,o), +(402,-116,o), +(441,0,c), +(348,35,l), +(323,-51,o), +(270,-92,o), +(182,-92,c), +(114,-92,o), +(79,-62,o), +(79,-10,c), +(79,100,o), +(292,92,o), +(322,268,cs), +(328,303,l), +(237,303,l), +(231,275,ls), +(207,161,o), +(-31,174,o), +(-31,-17,c), +(-31,-126,o), +(50,-185,o), +(177,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(353,407,o), +(382,436,o), +(382,480,c), +(382,515,o), +(357,540,o), +(321,540,c), +(280,540,o), +(250,511,o), +(250,469,c), +(250,432,o), +(275,407,o), +(312,407,c) +); +} +); +width = 559; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(309,-14,o), +(348,21,o), +(348,73,cs), +(348,126,o), +(309,162,o), +(258,162,cs), +(208,162,o), +(170,126,o), +(170,73,cs), +(170,21,o), +(208,-14,o), +(258,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(520,629,o), +(420,704,o), +(289,704,c), +(154,704,o), +(49,638.184,o), +(30,489,c), +(184,469,l), +(193,538.742,o), +(231,563,o), +(280,563,c), +(326,563,o), +(360,541,o), +(360,504,c), +(360,414,o), +(185,416,o), +(191,254,cs), +(192,227,l), +(322,227,l), +(322,243,ls), +(322,338,o), +(520,340,o), +(520,514,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(305,-189,o), +(406,-135,o), +(452,14,c), +(305,50,l), +(285,-19,o), +(242,-48,o), +(188,-48,c), +(143,-48,o), +(121,-27,o), +(121,0,c), +(121,84,o), +(322,106,o), +(347,276,cs), +(351,303,l), +(221,303,l), +(217,287,ls), +(189,175,o), +(-40,167,o), +(-40,-14,c), +(-40,-113,o), +(42,-189,o), +(175,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(356,369,o), +(398,407,o), +(398,465,c), +(398,513,o), +(367,544,o), +(316,544,c), +(263,544,o), +(221,507,o), +(221,449,c), +(221,401,o), +(252,369,o), +(304,369,c) +); +} +); +width = 551; +} +); +unicode = 191; +}, +{ +color = 6; +glyphname = periodcentered; +kernLeft = L; +kernRight = a; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(137,231,o), +(167,260,o), +(167,302,c), +(167,339,o), +(142,364,o), +(105,364,c), +(64,364,o), +(35,335,o), +(35,291,c), +(35,256,o), +(60,231,o), +(96,231,c) +); +} +); +width = 221; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(148,231,o), +(175,259,o), +(175,297,cs), +(175,336,o), +(148,364,o), +(110,364,cs), +(72,364,o), +(45,336,o), +(45,297,cs), +(45,259,o), +(72,231,o), +(110,231,cs) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(164,214,o), +(206,251,o), +(206,309,c), +(206,357,o), +(175,389,o), +(123,389,c), +(71,389,o), +(29,351,o), +(29,293,c), +(29,245,o), +(60,214,o), +(111,214,c) +); +} +); +width = 251; +} +); +unicode = 183; +}, +{ +color = 6; +glyphname = bullet; +kernLeft = L; +kernRight = a; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(148,231,o), +(175,259,o), +(175,297,cs), +(175,336,o), +(148,364,o), +(110,364,cs), +(72,364,o), +(45,336,o), +(45,297,cs), +(45,259,o), +(72,231,o), +(110,231,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(186,203,o), +(229,244,o), +(229,304,c), +(229,357,o), +(193,392,o), +(141,392,c), +(82,392,o), +(41,351,o), +(41,288,c), +(41,239,o), +(77,203,o), +(128,203,c) +); +} +); +width = 289; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(195,188,o), +(248,235,o), +(248,309,c), +(248,370,o), +(209,411,o), +(143,411,c), +(76,411,o), +(23,363,o), +(23,289,c), +(23,227,o), +(62,188,o), +(127,188,c) +); +} +); +width = 289; +} +); +unicode = 8226; +}, +{ +color = 6; +glyphname = asterisk; +kernLeft = M; +kernRight = b; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(240,477,l), +(288,477,l), +(315,690,l), +(213,690,l) +); +}, +{ +closed = 1; +nodes = ( +(256,455,l), +(271,500,l), +(76,592,l), +(45,495,l) +); +}, +{ +closed = 1; +nodes = ( +(284,462,l), +(246,490,l), +(98,333,l), +(180,274,l) +); +}, +{ +closed = 1; +nodes = ( +(451,592,l), +(256,500,l), +(271,455,l), +(482,495,l) +); +}, +{ +closed = 1; +nodes = ( +(429,333,l), +(281,490,l), +(243,462,l), +(347,274,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(314,462,l), +(274,490,l), +(96,333,l), +(171,274,l) +); +}, +{ +closed = 1; +nodes = ( +(304,500,l), +(129,592,l), +(77,495,l), +(280,455,l) +); +}, +{ +closed = 1; +nodes = ( +(427,333,l), +(314,490,l), +(274,462,l), +(338,274,l) +); +}, +{ +closed = 1; +nodes = ( +(316,477,l), +(389,690,l), +(287,690,l), +(268,477,l) +); +}, +{ +closed = 1; +nodes = ( +(514,495,l), +(504,592,l), +(289,500,l), +(295,455,l) +); +} +); +width = 527; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(228,477,l), +(290,477,l), +(335,690,l), +(183,690,l) +); +}, +{ +closed = 1; +nodes = ( +(251,448,l), +(271,507,l), +(82,616,l), +(35,471,l) +); +}, +{ +closed = 1; +nodes = ( +(435,616,l), +(246,507,l), +(266,448,l), +(482,471,l) +); +}, +{ +closed = 1; +nodes = ( +(286,456,l), +(236,493,l), +(74,347,l), +(198,258,l) +); +}, +{ +closed = 1; +nodes = ( +(444,347,l), +(282,493,l), +(232,456,l), +(320,258,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(316,456,l), +(264,493,l), +(75,347,l), +(186,258,l) +); +}, +{ +closed = 1; +nodes = ( +(306,507,l), +(140,616,l), +(62,471,l), +(273,448,l) +); +}, +{ +closed = 1; +nodes = ( +(445,347,l), +(318,493,l), +(262,456,l), +(308,258,l) +); +}, +{ +closed = 1; +nodes = ( +(318,477,l), +(409,690,l), +(257,690,l), +(256,477,l) +); +}, +{ +closed = 1; +nodes = ( +(509,471,l), +(493,616,l), +(281,507,l), +(288,448,l) +); +} +); +width = 517; +} +); +unicode = 42; +}, +{ +color = 6; +glyphname = numbersign; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(328,0,l), +(631,690,l), +(534,690,l), +(231,0,l) +); +}, +{ +closed = 1; +nodes = ( +(519,192,l), +(537,278,l), +(6,278,l), +(-12,192,l) +); +}, +{ +closed = 1; +nodes = ( +(87,0,l), +(390,690,l), +(293,690,l), +(-10,0,l) +); +}, +{ +closed = 1; +nodes = ( +(622,428,l), +(640,514,l), +(109,514,l), +(91,428,l) +); +} +); +width = 623; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(339,0,l), +(642,690,l), +(500,690,l), +(197,0,l) +); +}, +{ +closed = 1; +nodes = ( +(505,176,l), +(532,300,l), +(6,300,l), +(-21,176,l) +); +}, +{ +closed = 1; +nodes = ( +(101,0,l), +(404,690,l), +(262,690,l), +(-41,0,l) +); +}, +{ +closed = 1; +nodes = ( +(601,406,l), +(628,530,l), +(102,530,l), +(75,406,l) +); +} +); +width = 602; +} +); +unicode = 35; +}, +{ +color = 6; +glyphname = slash; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(-2,-120,l), +(388,770,l), +(291,770,l), +(-99,-120,l) +); +} +); +width = 296; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(52,-120,l), +(442,770,l), +(291,770,l), +(-99,-120,l) +); +} +); +width = 350; +} +); +unicode = 47; +}, +{ +color = 6; +glyphname = backslash; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(190,-120,l), +(180,770,l), +(92,770,l), +(102,-120,l) +); +} +); +width = 289; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(241,-120,l), +(231,770,l), +(92,770,l), +(102,-120,l) +); +} +); +width = 340; +} +); +unicode = 92; +}, +{ +color = 6; +glyphname = periodcentered.loclCAT; +lastChange = "2024-03-21 14:01:02 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = periodcentered; +} +); +width = 189; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = periodcentered; +} +); +width = 251; +} +); +}, +{ +color = 6; +glyphname = period.tf; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(275,-10,o), +(305,19,o), +(305,61,c), +(305,98,o), +(280,123,o), +(243,123,c), +(202,123,o), +(173,94,o), +(173,50,c), +(173,15,o), +(198,-10,o), +(234,-10,c) +); +} +); +width = 600; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(288,-14,o), +(330,23,o), +(330,81,c), +(330,129,o), +(299,161,o), +(247,161,c), +(195,161,o), +(153,123,o), +(153,65,c), +(153,17,o), +(184,-14,o), +(235,-14,c) +); +} +); +width = 598; +} +); +}, +{ +color = 6; +glyphname = comma.tf; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(196,-160,l), +(298,113,l), +(184,113,l), +(126,-160,l) +); +} +); +width = 599; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(214,127,o), +(175,162,o), +(124,162,cs), +(74,162,o), +(36,126,o), +(36,73,cs), +(36,21,o), +(74,-14,o), +(124,-14,c), +(104,6,l), +(61,-160,l), +(142,-160,l), +(186,-51,ls), +(204,-6,o), +(214,30,o), +(214,67,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(213,-159,l), +(340,148,l), +(180,148,l), +(115,-159,l) +); +} +); +width = 599; +} +); +}, +{ +color = 10; +glyphname = colon.tf; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +pos = (189,0); +ref = colon; +} +); +width = 599; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +pos = (173,0); +ref = colon; +} +); +width = 599; +} +); +}, +{ +color = 10; +glyphname = semicolon.tf; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(162,0,l), +(162,690,l), +(58,690,l), +(58,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +pos = (189,0); +ref = semicolon; +} +); +width = 598; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +pos = (172,0); +ref = semicolon; +} +); +width = 600; +} +); +}, +{ +color = 6; +glyphname = periodcentered.loclCAT.case; +lastChange = "2024-03-21 14:02:14 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = periodcentered; +} +); +width = 221; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = periodcentered; +} +); +width = 251; +} +); +}, +{ +color = 6; +glyphname = hyphen; +kernLeft = L; +kernRight = a; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(297,261,l), +(316,346,l), +(61,346,l), +(42,261,l) +); +} +); +width = 374; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(298,239,l), +(325,368,l), +(51,368,l), +(24,239,l) +); +} +); +width = 365; +} +); +unicode = 45; +}, +{ +color = 6; +glyphname = endash; +kernLeft = L; +kernRight = a; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(417,261,l), +(436,346,l), +(61,346,l), +(42,261,l) +); +} +); +width = 494; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(418,239,l), +(445,368,l), +(51,368,l), +(24,239,l) +); +} +); +width = 485; +} +); +unicode = 8211; +}, +{ +color = 6; +glyphname = emdash; +kernLeft = L; +kernRight = a; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(767,261,l), +(786,346,l), +(31,346,l), +(12,261,l) +); +} +); +width = 814; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(772,239,l), +(799,368,l), +(26,368,l), +(-1,239,l) +); +} +); +width = 814; +} +); +unicode = 8212; +}, +{ +color = 6; +glyphname = underscore; +kernLeft = K; +kernRight = Q; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(344,-85,l), +(362,0,l), +(-73,0,l), +(-91,-85,l) +); +} +); +width = 434; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(370,-130,l), +(398,0,l), +(-73,0,l), +(-101,-130,l) +); +} +); +width = 471; +} +); +unicode = 95; +}, +{ +color = 6; +glyphname = parenleft; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,540,o), +(249,658,o), +(344,715,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c), +(344,-65,l), +(249,-8,o), +(169,110,o), +(169,325,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(259,-65,l), +(188,-13,o), +(156,58,o), +(156,211,c), +(156,460,o), +(291,654,o), +(425,715,c), +(395,780,l), +(200,707,o), +(57,480,o), +(57,202,c), +(57,35,o), +(110,-70,o), +(216,-126,c) +); +} +); +width = 325; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(200,543,o), +(285,659,o), +(376,706,c), +(332,802,l), +(163,746,o), +(56,586,o), +(56,325,c), +(56,64,o), +(163,-96,o), +(332,-152,c), +(376,-56,l), +(285,-9,o), +(200,106,o), +(200,325,c) +); +}, +{ +closed = 1; +nodes = ( +(815,543,o), +(925,659,o), +(1026,706,c), +(1002,802,l), +(822,746,o), +(681,586,o), +(625,325,c), +(570,64,o), +(643,-96,o), +(800,-152,c), +(864,-56,l), +(783,-9,o), +(723,106,o), +(769,325,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(292,-56,l), +(218,-9,o), +(186,58,o), +(186,210,c), +(186,438,o), +(328,658,o), +(454,706,c), +(414,800,l), +(200,744,o), +(43,472,o), +(43,198,c), +(43,16,o), +(106,-94,o), +(234,-147,c) +); +} +); +width = 352; +} +); +unicode = 40; +}, +{ +color = 6; +glyphname = parenright; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,540,o), +(249,658,o), +(344,715,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c), +(344,-65,l), +(249,-8,o), +(169,110,o), +(169,325,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(118,-57,o), +(261,170,o), +(261,448,c), +(261,615,o), +(208,720,o), +(102,776,c), +(59,715,l), +(130,663,o), +(162,592,o), +(162,439,c), +(162,190,o), +(27,-4,o), +(-107,-65,c), +(-77,-130,l) +); +} +); +width = 325; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(200,543,o), +(285,659,o), +(376,706,c), +(332,802,l), +(163,746,o), +(56,586,o), +(56,325,c), +(56,64,o), +(163,-96,o), +(332,-152,c), +(376,-56,l), +(285,-9,o), +(200,106,o), +(200,325,c) +); +}, +{ +closed = 1; +nodes = ( +(815,543,o), +(925,659,o), +(1026,706,c), +(1002,802,l), +(822,746,o), +(681,586,o), +(625,325,c), +(570,64,o), +(643,-96,o), +(800,-152,c), +(864,-56,l), +(783,-9,o), +(723,106,o), +(769,325,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(145,-94,o), +(302,178,o), +(302,452,c), +(302,634,o), +(239,744,o), +(111,797,c), +(53,706,l), +(127,659,o), +(159,592,o), +(159,440,c), +(159,212,o), +(17,-8,o), +(-109,-56,c), +(-69,-150,l) +); +} +); +width = 350; +} +); +unicode = 41; +}, +{ +color = 6; +glyphname = braceleft; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(216,335,o), +(263,292,o), +(263,234,c), +(263,150,o), +(185,128,o), +(185,51,c), +(185,-6.368,o), +(235,-50.351,o), +(343,-58,c), +(335,-135,l), +(159,-121.629,o), +(86,-47.571,o), +(86,45,c), +(86,139,o), +(174,178,o), +(174,231,c), +(174,262,o), +(155,284,o), +(116,284,c), +(75,284,l), +(75,366,l), +(116,366,l), +(155,366,o), +(174,388,o), +(174,419,c), +(174,472,o), +(86,511,o), +(86,605,c), +(86,697.571,o), +(159,771.629,o), +(335,785,c), +(343,708,l), +(235,700.351,o), +(185,656.368,o), +(185,599,c), +(185,522,o), +(263,500,o), +(263,416,c), +(263,358,o), +(216,315,o), +(140,311,c), +(140,339,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(258,-58,l), +(165,-49,o), +(118,-20,o), +(118,23,c), +(118,103,o), +(242,142,o), +(242,250,c), +(242,302,o), +(202,326,o), +(136,330,c), +(130,310,l), +(230,307,o), +(281,363,o), +(281,429,c), +(281,490,o), +(237,524,o), +(237,582,c), +(237,648,o), +(296,699,o), +(420,708,c), +(418,785,l), +(229,777,o), +(139,697,o), +(139,591,c), +(139,514,o), +(191,472,o), +(191,429,cs), +(191,390,o), +(167,366,o), +(115,366,c), +(79,366,l), +(61,284,l), +(103,284,l), +(136,284,o), +(151,272,o), +(151,245,cs), +(151,159,o), +(20,123,o), +(20,11,cs), +(20,-56,o), +(82,-114,o), +(233,-135,c) +); +} +); +width = 337; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(217.179,325.381,o), +(266,284,o), +(266,234,c), +(266,156,o), +(195,120,o), +(195,51,c), +(195,4,o), +(243,-32,o), +(354,-46,c), +(340,-152,l), +(142.795,-137.761,o), +(61,-62.636,o), +(61,35,c), +(61,134.054,o), +(140,173,o), +(140,229,c), +(140,254,o), +(124,272,o), +(92,272,c), +(50,272,l), +(50,378,l), +(92,378,l), +(124,378,o), +(140,396,o), +(140,421,c), +(140,477,o), +(61,515.946,o), +(61,615,c), +(61,712.636,o), +(142.795,787.761,o), +(340,802,c), +(354,696,l), +(243,682,o), +(195,646,o), +(195,599,c), +(195,530,o), +(266,494,o), +(266,416,c), +(266,366,o), +(217.179,324.619,o), +(135,321,c), +(135,329,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(271,-46,l), +(174,-33,o), +(130,-7,o), +(130,28,c), +(130,88,o), +(245,140,o), +(245,231,c), +(245,282,o), +(208,314,o), +(135,324,c), +(133,316,l), +(231,321,o), +(283,368,o), +(283,432,c), +(283,489,o), +(247,542,o), +(247,592,c), +(247,634,o), +(289,677,o), +(429,696,c), +(425,802,l), +(204,793,o), +(117,696,o), +(117,592,c), +(117,526,o), +(157,477,o), +(157,434,cs), +(157,400,o), +(143,378,o), +(96,378,c), +(57,378,l), +(35,272,l), +(77,272,l), +(107,272,o), +(117,259,o), +(117,239,cs), +(117,179,o), +(-5,117,o), +(-5,16,cs), +(-5,-66,o), +(68,-140,o), +(240,-152,c) +); +} +); +width = 345; +} +); +unicode = 123; +}, +{ +color = 6; +glyphname = braceright; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(216,335,o), +(263,292,o), +(263,234,c), +(263,150,o), +(185,128,o), +(185,51,c), +(185,-6.368,o), +(235,-50.351,o), +(343,-58,c), +(335,-135,l), +(159,-121.629,o), +(86,-47.571,o), +(86,45,c), +(86,139,o), +(174,178,o), +(174,231,c), +(174,262,o), +(155,284,o), +(116,284,c), +(75,284,l), +(75,366,l), +(116,366,l), +(155,366,o), +(174,388,o), +(174,419,c), +(174,472,o), +(86,511,o), +(86,605,c), +(86,697.571,o), +(159,771.629,o), +(335,785,c), +(343,708,l), +(235,700.351,o), +(185,656.368,o), +(185,599,c), +(185,522,o), +(263,500,o), +(263,416,c), +(263,358,o), +(216,315,o), +(140,311,c), +(140,339,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(101,-127,o), +(191,-47,o), +(191,59,c), +(191,136,o), +(139,178,o), +(139,221,cs), +(139,260,o), +(163,284,o), +(215,284,c), +(251,284,l), +(269,366,l), +(227,366,l), +(194,366,o), +(179,378,o), +(179,405,cs), +(179,491,o), +(310,527,o), +(310,639,cs), +(310,706,o), +(248,764,o), +(97,785,c), +(72,708,l), +(165,699,o), +(212,670,o), +(212,627,c), +(212,547,o), +(88,508,o), +(88,400,c), +(88,348,o), +(128,324,o), +(194,320,c), +(200,340,l), +(100,343,o), +(49,287,o), +(49,221,c), +(49,160,o), +(93,126,o), +(93,68,c), +(93,2,o), +(34,-49,o), +(-90,-58,c), +(-88,-135,l) +); +} +); +width = 338; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(217.179,325.381,o), +(266,284,o), +(266,234,c), +(266,156,o), +(195,120,o), +(195,51,c), +(195,4,o), +(243,-32,o), +(354,-46,c), +(340,-152,l), +(142.795,-137.761,o), +(61,-62.636,o), +(61,35,c), +(61,134.054,o), +(140,173,o), +(140,229,c), +(140,254,o), +(124,272,o), +(92,272,c), +(50,272,l), +(50,378,l), +(92,378,l), +(124,378,o), +(140,396,o), +(140,421,c), +(140,477,o), +(61,515.946,o), +(61,615,c), +(61,712.636,o), +(142.795,787.761,o), +(340,802,c), +(354,696,l), +(243,682,o), +(195,646,o), +(195,599,c), +(195,530,o), +(266,494,o), +(266,416,c), +(266,366,o), +(217.179,324.619,o), +(135,321,c), +(135,329,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(134,-143,o), +(221,-46,o), +(221,58,c), +(221,124,o), +(181,173,o), +(181,216,cs), +(181,250,o), +(195,272,o), +(242,272,c), +(281,272,l), +(303,378,l), +(261,378,l), +(231,378,o), +(221,391,o), +(221,411,cs), +(221,471,o), +(343,533,o), +(343,634,cs), +(343,716,o), +(270,790,o), +(98,802,c), +(67,696,l), +(164,683,o), +(208,657,o), +(208,622,c), +(208,562,o), +(93,510,o), +(93,419,c), +(93,368,o), +(130,336,o), +(203,326,c), +(205,334,l), +(107,329,o), +(55,282,o), +(55,218,c), +(55,161,o), +(91,108,o), +(91,58,c), +(91,16,o), +(49,-27,o), +(-91,-46,c), +(-87,-152,l) +); +} +); +width = 345; +} +); +unicode = 125; +}, +{ +color = 6; +glyphname = bracketleft; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,545,o), +(249,667,o), +(344,725,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c), +(344,-75,l), +(249,-17,o), +(169,105,o), +(169,325,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(70,-120,l), +(260,770,l), +(170,770,l), +(-20,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(216,-120,l), +(233,-40,l), +(27,-40,l), +(10,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(389,690,l), +(406,770,l), +(200,770,l), +(183,690,l) +); +} +); +width = 309; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,545,o), +(249,667,o), +(344,725,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c), +(344,-75,l), +(249,-17,o), +(169,105,o), +(169,325,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(110,-120,l), +(300,770,l), +(161,770,l), +(-29,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(213,-120,l), +(241,10,l), +(47,10,l), +(19,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(375,640,l), +(403,770,l), +(209,770,l), +(181,640,l) +); +} +); +width = 321; +} +); +unicode = 91; +}, +{ +color = 6; +glyphname = bracketright; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,545,o), +(249,667,o), +(344,725,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c), +(344,-75,l), +(249,-17,o), +(169,105,o), +(169,325,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(132,-120,l), +(322,770,l), +(232,770,l), +(42,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(102,-120,l), +(119,-40,l), +(-87,-40,l), +(-104,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(275,690,l), +(292,770,l), +(86,770,l), +(69,690,l) +); +} +); +width = 310; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,545,o), +(249,667,o), +(344,725,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c), +(344,-75,l), +(249,-17,o), +(169,105,o), +(169,325,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(153,-120,l), +(343,770,l), +(204,770,l), +(14,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(105,-120,l), +(133,10,l), +(-61,10,l), +(-89,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(267,640,l), +(295,770,l), +(101,770,l), +(73,640,l) +); +} +); +width = 321; +} +); +unicode = 93; +}, +{ +color = 6; +glyphname = quotesinglbase; +kernLeft = K; +kernRight = Q; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(7,-160,l), +(109,113,l), +(-5,113,l), +(-63,-160,l) +); +} +); +width = 192; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(214,127,o), +(175,162,o), +(124,162,cs), +(74,162,o), +(36,126,o), +(36,73,cs), +(36,21,o), +(74,-14,o), +(124,-14,c), +(104,6,l), +(61,-160,l), +(142,-160,l), +(186,-51,ls), +(204,-6,o), +(214,30,o), +(214,67,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(39,-159,l), +(166,148,l), +(6,148,l), +(-59,-159,l) +); +} +); +width = 246; +} +); +unicode = 8218; +}, +{ +color = 6; +glyphname = quotedblbase; +kernLeft = K; +kernRight = Q; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(167,-160,l), +(269,113,l), +(155,113,l), +(97,-160,l) +); +}, +{ +closed = 1; +nodes = ( +(7,-160,l), +(109,113,l), +(-5,113,l), +(-63,-160,l) +); +} +); +width = 352; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(239,-159,l), +(366,148,l), +(206,148,l), +(141,-159,l) +); +}, +{ +closed = 1; +nodes = ( +(39,-159,l), +(166,148,l), +(6,148,l), +(-59,-159,l) +); +} +); +width = 446; +} +); +unicode = 8222; +}, +{ +color = 6; +glyphname = quotedblleft; +kernLeft = I; +kernRight = N; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(165,417,l), +(223,690,l), +(153,690,l), +(51,417,l) +); +}, +{ +closed = 1; +nodes = ( +(325,417,l), +(383,690,l), +(313,690,l), +(211,417,l) +); +} +); +width = 352; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(214,669,o), +(175,704,o), +(125,704,cs), +(74,704,o), +(36,668,o), +(36,615,cs), +(36,563,o), +(74,528,o), +(125,528,c), +(104,548,l), +(62,382,l), +(142,382,l), +(186,491,ls), +(204,536,o), +(214,572,o), +(214,609,c) +); +}, +{ +closed = 1; +nodes = ( +(420,669,o), +(381,704,o), +(331,704,cs), +(280,704,o), +(242,668,o), +(242,615,cs), +(242,563,o), +(280,528,o), +(331,528,c), +(310,548,l), +(268,382,l), +(348,382,l), +(392,491,ls), +(410,536,o), +(420,572,o), +(420,609,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(206,383,l), +(272,690,l), +(174,690,l), +(46,383,l) +); +}, +{ +closed = 1; +nodes = ( +(406,383,l), +(472,690,l), +(374,690,l), +(246,383,l) +); +} +); +width = 445; +} +); +unicode = 8220; +}, +{ +color = 6; +glyphname = quotedblright; +kernLeft = I; +kernRight = N; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(291,417,l), +(393,690,l), +(279,690,l), +(221,417,l) +); +}, +{ +closed = 1; +nodes = ( +(131,417,l), +(233,690,l), +(119,690,l), +(61,417,l) +); +} +); +width = 352; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(214,669,o), +(175,704,o), +(125,704,cs), +(74,704,o), +(36,668,o), +(36,615,cs), +(36,563,o), +(74,528,o), +(125,528,c), +(104,548,l), +(62,382,l), +(142,382,l), +(186,491,ls), +(204,536,o), +(214,572,o), +(214,609,c) +); +}, +{ +closed = 1; +nodes = ( +(420,669,o), +(381,704,o), +(331,704,cs), +(280,704,o), +(242,668,o), +(242,615,cs), +(242,563,o), +(280,528,o), +(331,528,c), +(310,548,l), +(268,382,l), +(348,382,l), +(392,491,ls), +(410,536,o), +(420,572,o), +(420,609,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(354,383,l), +(482,690,l), +(322,690,l), +(256,383,l) +); +}, +{ +closed = 1; +nodes = ( +(154,383,l), +(282,690,l), +(122,690,l), +(56,383,l) +); +} +); +width = 445; +} +); +unicode = 8221; +}, +{ +color = 6; +glyphname = quoteleft; +kernLeft = I; +kernRight = N; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(165,417,l), +(223,690,l), +(153,690,l), +(51,417,l) +); +} +); +width = 192; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(36,403,o), +(75,368,o), +(125,368,cs), +(176,368,o), +(214,404,o), +(214,457,cs), +(214,509,o), +(176,544,o), +(125,544,c), +(146,524,l), +(188,690,l), +(108,690,l), +(64,581,ls), +(46,536,o), +(36,500,o), +(36,463,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(206,383,l), +(272,690,l), +(174,690,l), +(46,383,l) +); +} +); +width = 245; +} +); +unicode = 8216; +}, +{ +color = 6; +glyphname = quoteright; +kernLeft = I; +kernRight = N; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(131,417,l), +(233,690,l), +(119,690,l), +(61,417,l) +); +} +); +width = 192; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(214,669,o), +(175,704,o), +(124,704,cs), +(74,704,o), +(36,669,o), +(36,616,cs), +(36,564,o), +(74,528,o), +(124,528,c), +(104,549,l), +(61,383,l), +(142,383,l), +(186,492,ls), +(204,537,o), +(214,572,o), +(214,610,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(154,383,l), +(282,690,l), +(122,690,l), +(56,383,l) +); +} +); +width = 245; +} +); +unicode = 8217; +}, +{ +color = 6; +glyphname = guillemetleft; +kernLeft = F; +kernRight = K; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(392,80,l), +(290,280,l), +(481,500,l), +(366,500,l), +(217,323,l), +(203,257,l), +(293,80,l) +); +}, +{ +closed = 1; +nodes = ( +(192,80,l), +(90,280,l), +(281,500,l), +(166,500,l), +(17,323,l), +(3,257,l), +(93,80,l) +); +} +); +width = 453; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(451,76,l), +(354,275,l), +(542,504,l), +(374,504,l), +(236,327,l), +(220,253,l), +(304,76,l) +); +}, +{ +closed = 1; +nodes = ( +(229,76,l), +(132,275,l), +(320,504,l), +(152,504,l), +(14,327,l), +(-2,253,l), +(82,76,l) +); +} +); +width = 508; +} +); +unicode = 171; +}, +{ +color = 6; +glyphname = guillemetright; +kernLeft = E; +kernRight = J; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(264,80,l), +(413,257,l), +(427,323,l), +(337,500,l), +(238,500,l), +(340,300,l), +(149,80,l) +); +}, +{ +closed = 1; +nodes = ( +(64,80,l), +(213,257,l), +(227,323,l), +(137,500,l), +(38,500,l), +(140,300,l), +(-51,80,l) +); +} +); +width = 450; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(333,76,l), +(471,253,l), +(487,327,l), +(403,504,l), +(256,504,l), +(353,305,l), +(165,76,l) +); +}, +{ +closed = 1; +nodes = ( +(111,76,l), +(249,253,l), +(265,327,l), +(181,504,l), +(34,504,l), +(131,305,l), +(-57,76,l) +); +} +); +width = 505; +} +); +unicode = 187; +}, +{ +color = 6; +glyphname = guilsinglleft; +kernLeft = F; +kernRight = K; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(192,80,l), +(90,280,l), +(281,500,l), +(166,500,l), +(17,323,l), +(3,257,l), +(93,80,l) +); +} +); +width = 253; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(229,76,l), +(132,275,l), +(320,504,l), +(152,504,l), +(14,327,l), +(-2,253,l), +(82,76,l) +); +} +); +width = 286; +} +); +unicode = 8249; +}, +{ +color = 6; +glyphname = guilsinglright; +kernLeft = E; +kernRight = J; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(64,80,l), +(213,257,l), +(227,323,l), +(137,500,l), +(38,500,l), +(140,300,l), +(-51,80,l) +); +} +); +width = 250; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(111,76,l), +(249,253,l), +(265,327,l), +(181,504,l), +(34,504,l), +(131,305,l), +(-57,76,l) +); +} +); +width = 283; +} +); +unicode = 8250; +}, +{ +color = 6; +glyphname = quotedbl; +kernLeft = I; +kernRight = N; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(313,417,l), +(393,690,l), +(279,690,l), +(243,417,l) +); +}, +{ +closed = 1; +nodes = ( +(153,417,l), +(233,690,l), +(119,690,l), +(83,417,l) +); +} +); +width = 362; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(190,670,o), +(157,704,o), +(113,704,cs), +(68,704,o), +(36,670,o), +(36,622,c), +(36,597,o), +(39,579,o), +(44,554,cs), +(75,383,l), +(150,383,l), +(182,554,ls), +(187,579,o), +(190,597,o), +(190,622,c) +); +}, +{ +closed = 1; +nodes = ( +(374,670,o), +(341,704,o), +(296,704,cs), +(251,704,o), +(219,670,o), +(219,622,c), +(219,597,o), +(222,579,o), +(227,554,cs), +(258,383,l), +(334,383,l), +(365,554,ls), +(370,579,o), +(374,597,o), +(374,622,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(363,383,l), +(464,690,l), +(300,690,l), +(269,383,l) +); +}, +{ +closed = 1; +nodes = ( +(169,383,l), +(270,690,l), +(106,690,l), +(75,383,l) +); +} +); +width = 420; +} +); +unicode = 34; +}, +{ +color = 6; +glyphname = quotesingle; +kernLeft = I; +kernRight = N; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(153,417,l), +(233,690,l), +(119,690,l), +(83,417,l) +); +} +); +width = 202; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(169,383,l), +(270,690,l), +(106,690,l), +(75,383,l) +); +} +); +width = 226; +} +); +unicode = 39; +}, +{ +color = 6; +glyphname = florin; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(73,-185,o), +(138,-138,o), +(163,-21,c), +(286,557,ls), +(297,610,o), +(328,636,o), +(376,636,c), +(399,636,o), +(419,630,o), +(439,621,c), +(457,708,l), +(431,718,o), +(403,725,o), +(371,725,c), +(277,725,o), +(212,678,o), +(187,561,cs), +(64,-17,l), +(53,-70,o), +(22,-96,o), +(-26,-96,c), +(-49,-96,o), +(-69,-90,o), +(-89,-81,c), +(-107,-168,l), +(-81,-178,o), +(-53,-185,o), +(-21,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(396,443,l), +(415,530,l), +(106,530,l), +(87,443,l) +); +} +); +width = 449; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(220,582,o), +(245,603,o), +(291,603,c), +(317,603,o), +(340,598,o), +(364,592,c), +(364,715,l), +(332,724,o), +(301,730,o), +(260,730,c), +(143,730,o), +(71,665,o), +(71,536,c), +(71,0,l), +(220,0,l), +(220,541,l) +); +}, +{ +closed = 1; +nodes = ( +(358,407,l), +(358,530,l), +(5,530,l), +(5,407,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(81,-189,o), +(163,-143,o), +(190,-14,cs), +(308,541,ls), +(317,582,o), +(343,603,o), +(384,603,c), +(412,603,o), +(436,597,o), +(457,589,c), +(483,712,l), +(454,723,o), +(414,729,o), +(374,729,c), +(271,729,o), +(189,683,o), +(162,554,cs), +(44,-1,ls), +(35,-42,o), +(9,-63,o), +(-32,-63,c), +(-60,-63,o), +(-84,-57,o), +(-105,-49,c), +(-131,-172,l), +(-102,-183,o), +(-62,-189,o), +(-22,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(413,407,l), +(439,530,l), +(91,530,l), +(65,407,l) +); +} +); +width = 465; +} +); +unicode = 402; +}, +{ +color = 6; +glyphname = at; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(509.185,412,o), +(554,367.975,o), +(554,265,c), +(554,162.025,o), +(509.185,118,o), +(444,118,c), +(378.815,118,o), +(334,162.025,o), +(334,265,c), +(334,367.975,o), +(378.815,412,o), +(444,412,c) +); +}, +{ +closed = 1; +nodes = ( +(577,309,l), +(577,430.545,o), +(512.946,500,o), +(416,500,c), +(307.573,500,o), +(230,411.982,o), +(230,265,c), +(230,118.018,o), +(307.573,30,o), +(416,30,c), +(512.946,30,o), +(577,99.455,o), +(577,221,c) +); +}, +{ +closed = 1; +nodes = ( +(764,124.825,o), +(731,70,o), +(695,70,c), +(667,70,o), +(649,89,o), +(649,157,c), +(649,490,l), +(549,490,l), +(549,367,l), +(564,265,l), +(549,162,l), +(551,128,ls), +(555,54,o), +(603,-10,o), +(687,-10,c), +(789,-10,o), +(854,83.768,o), +(854,285,c), +(854,534,o), +(697,700,o), +(456,700,c), +(219,700,o), +(40,526,o), +(40,265,cs), +(40,19,o), +(196.796,-149,o), +(413,-149,c), +(487,-149,o), +(556,-129,o), +(611,-95,c), +(572,-26,l), +(527,-54,o), +(480,-69,o), +(413,-69,c), +(246.87,-69,o), +(130,63,o), +(130,265,cs), +(130,482,o), +(269,620,o), +(456,620,c), +(647,620,o), +(764,489.829,o), +(764,285,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(400,-149,o), +(459,-136,o), +(521,-109,c), +(493,-35,l), +(443,-58,o), +(400,-69,o), +(333,-69,cs), +(202,-69,o), +(109,30,o), +(109,200,cs), +(109,428,o), +(270,620,o), +(507,620,cs), +(655,620,o), +(755,522,o), +(755,350,cs), +(755,195,o), +(680,70,o), +(631,70,cs), +(595,70,o), +(603,130,o), +(609,157,cs), +(680,490,l), +(580,490,l), +(567,427,l), +(548,474,o), +(504,500,o), +(445,500,cs), +(318,500,o), +(207,372,o), +(207,201,cs), +(207,100,o), +(260,30,o), +(349,30,cs), +(411,30,o), +(465,58,o), +(503,109,c), +(503,19,o), +(554,-10,o), +(615,-10,cs), +(746,-10,o), +(846,150,o), +(846,357,cs), +(846,572,o), +(708,700,o), +(514,700,cs), +(220,700,o), +(19,470,o), +(19,192,cs), +(19,-15,o), +(149,-149,o), +(326,-149,cs) +); +}, +{ +closed = 1; +nodes = ( +(344,118,o), +(311,146,o), +(311,215,cs), +(311,335,o), +(380,412,o), +(459,412,cs), +(511,412,o), +(544,384,o), +(544,320,cs), +(544,214,o), +(474,118,o), +(396,118,cs) +); +} +); +width = 894; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(497.182,387,o), +(534,350.483,o), +(534,265,c), +(534,179.517,o), +(497.182,143,o), +(444,143,c), +(390.818,143,o), +(354,179.517,o), +(354,265,c), +(354,350.483,o), +(390.818,387,o), +(444,387,c) +); +}, +{ +closed = 1; +nodes = ( +(557,309,l), +(557,440.581,o), +(496.975,515,o), +(406,515,c), +(289.29,515,o), +(205,421.383,o), +(205,265,c), +(205,108.617,o), +(289.29,15,o), +(406,15,c), +(496.975,15,o), +(557,89.419,o), +(557,221,c) +); +}, +{ +closed = 1; +nodes = ( +(759,136.163,o), +(732,91,o), +(706,91,c), +(686,91,o), +(674,100.724,o), +(674,157,c), +(674,505,l), +(529,505,l), +(529,367,l), +(544,265,l), +(529,162,l), +(531,128,ls), +(535.588,54,o), +(579,-10,o), +(675,-10,c), +(777,-10,o), +(854,84,o), +(854,285,c), +(854,534,o), +(697,704,o), +(456,704,c), +(219,704,o), +(40,526,o), +(40,265,cs), +(40,19,o), +(197,-153,o), +(413,-153,c), +(487,-153,o), +(556,-133,o), +(611,-99,c), +(572,-25,l), +(527,-53,o), +(480,-68,o), +(413,-68,c), +(250,-68,o), +(135,66.024,o), +(135,265,cs), +(135,478.944,o), +(272,619,o), +(456,619,c), +(644,619,o), +(759,486.94,o), +(759,285,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(400,-149,o), +(459,-136,o), +(521,-109,c), +(493,-35,l), +(443,-58,o), +(400,-69,o), +(333,-69,cs), +(202,-69,o), +(109,30,o), +(109,200,cs), +(109,428,o), +(270,620,o), +(507,620,cs), +(655,620,o), +(755,522,o), +(755,350,cs), +(755,195,o), +(696,91,o), +(652,91,cs), +(632,91,o), +(622,101,o), +(634,157,cs), +(708,505,l), +(563,505,l), +(549,438,l), +(531,488,o), +(488,515,o), +(429,515,cs), +(292,515,o), +(179,384,o), +(179,209,cs), +(179,87,o), +(240,15,o), +(336,15,cs), +(394,15,o), +(446,45,o), +(483,101,c), +(483,39,o), +(516,-10,o), +(600,-10,cs), +(746,-10,o), +(846,150,o), +(846,357,cs), +(846,572,o), +(708,700,o), +(514,700,cs), +(220,700,o), +(19,470,o), +(19,192,cs), +(19,-15,o), +(149,-149,o), +(326,-149,cs) +); +}, +{ +closed = 1; +nodes = ( +(359,143,o), +(332,167,o), +(332,226,cs), +(332,320,o), +(389,387,o), +(453,387,cs), +(495,387,o), +(522,363,o), +(522,307,cs), +(522,212,o), +(466,143,o), +(401,143,cs) +); +} +); +width = 894; +} +); +unicode = 64; +}, +{ +color = 6; +glyphname = ampersand; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(175,331,ls), +(108,411,o), +(75,463,o), +(75,525,c), +(75,616,o), +(147,700,o), +(264,700,c), +(370,700,o), +(444,624,o), +(444,539,c), +(444,337,o), +(125,347,o), +(125,171,c), +(125,118,o), +(164,80,o), +(243,80,c), +(367,80,o), +(457,180,o), +(476,339,c), +(570,323,l), +(538,115,o), +(405,-10,o), +(238,-10,c), +(97,-10,o), +(22,68,o), +(22,159,c), +(22,384,o), +(345,378,o), +(345,534,c), +(345,578,o), +(310,613,o), +(262,613,c), +(210,613,o), +(175,578,o), +(175,530,c), +(175,488,o), +(190,461,o), +(228,417,cs), +(581,0,l), +(453,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(340,-10,o), +(490,115,o), +(567,323,c), +(472,343,l), +(413,184,o), +(300,80,o), +(188,80,c), +(119,80,o), +(87,113,o), +(87,157,cs), +(87,352,o), +(486,331,o), +(486,557,c), +(486,635,o), +(417,700,o), +(324,700,c), +(200,700,o), +(112,615,o), +(112,508,c), +(112,452,o), +(141,398,o), +(183,331,cs), +(391,0,l), +(509,0,l), +(245,417,ls), +(223,450,o), +(213,474,o), +(213,505,c), +(213,573,o), +(256,613,o), +(313,613,c), +(361,613,o), +(389,586,o), +(389,550,cs), +(389,374,o), +(-16,397,o), +(-16,145,c), +(-16,63,o), +(48,-10,o), +(173,-10,c) +); +} +); +width = 592; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(168,319,ls), +(97,397,o), +(70,450,o), +(70,516,c), +(70,615,o), +(148,704,o), +(280,704,c), +(406,704,o), +(481,623,o), +(481,525,c), +(482,305,o), +(166,342,o), +(166,192,c), +(166,148,o), +(193,116,o), +(259,116,c), +(381,116,o), +(467,208,o), +(496,362,c), +(634,323,l), +(586,112,o), +(435,-14,o), +(249,-14,c), +(86,-14,o), +(17,72,o), +(17,167,c), +(17,411,o), +(343,367,o), +(342,515,c), +(342,550,o), +(317,579,o), +(279,579,c), +(240,579,o), +(215,549,o), +(215,514,c), +(215,477,o), +(233,446,o), +(264,413,cs), +(650,0,l), +(460,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(369,-14,o), +(537,112,o), +(630,323,c), +(494,364,l), +(438,208,o), +(333,116,o), +(216,116,c), +(160,116,o), +(136,147,o), +(136,184,c), +(136,364,o), +(521,285,o), +(521,542,c), +(521,633,o), +(448,704,o), +(328,704,c), +(185,704,o), +(102,606,o), +(102,498,c), +(102,436,o), +(131,379,o), +(173,319,cs), +(397,0,l), +(577,0,l), +(279,413,ls), +(260,439,o), +(249,464,o), +(249,492,cs), +(249,541,o), +(278,579,o), +(323,579,c), +(358,579,o), +(380,558,o), +(380,525,c), +(380,356,o), +(-19,431,o), +(-19,152,c), +(-19,68,o), +(47,-14,o), +(189,-14,c) +); +} +); +width = 647; +} +); +unicode = 38; +}, +{ +color = 6; +glyphname = paragraph; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(350,-120,l), +(523,690,l), +(433,690,l), +(260,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(530,-120,l), +(703,690,l), +(613,690,l), +(440,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(280,690,o), +(168,602,o), +(139,465,cs), +(135,445,o), +(133,426,o), +(133,409,cs), +(133,304,o), +(204,240,o), +(320,240,c), +(380,240,l), +(476,690,l), +(416,690,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(311,240,l), +(407,690,l), +(329,690,l), +(173,690,o), +(64,574,o), +(64,429,c), +(64,304,o), +(145,240,o), +(261,240,c) +); +}, +{ +closed = 1; +nodes = ( +(277,-120,l), +(450,690,l), +(360,690,l), +(187,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(457,-120,l), +(630,690,l), +(540,690,l), +(367,-120,l) +); +} +); +width = 635; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(130.031,690,o), +(35,600.044,o), +(35,460,cs), +(35,319.956,o), +(130.031,230,o), +(269,230,c), +(349,230,l), +(349,690,l), +(269,690,l) +); +}, +{ +closed = 1; +nodes = ( +(625,-120,l), +(625,690,l), +(486,690,l), +(486,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(425,-120,l), +(425,690,l), +(286,690,l), +(286,-120,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(326,230,l), +(424,690,l), +(334,690,l), +(175,690,o), +(59,566,o), +(59,422,c), +(59,296,o), +(137,230,o), +(250,230,c) +); +}, +{ +closed = 1; +nodes = ( +(327,-120,l), +(500,690,l), +(361,690,l), +(188,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(527,-120,l), +(700,690,l), +(561,690,l), +(388,-120,l) +); +} +); +width = 697; +} +); +unicode = 182; +}, +{ +color = 6; +glyphname = section; +lastChange = "2024-03-21 14:18:51 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(493,126,o), +(556,188,o), +(556,265,c), +(556,483,o), +(198,397,o), +(198,535,c), +(198,575,o), +(233,607,o), +(290,607,c), +(349,607,o), +(389,577,o), +(409,514,c), +(509,547,l), +(480,643,o), +(405,700,o), +(299,700,c), +(173,700,o), +(93,622,o), +(93,534,c), +(93,451,o), +(142,411,o), +(204,386,c), +(204,394,l), +(103,389,o), +(40,327,o), +(40,250,c), +(40,32,o), +(398,118,o), +(398,-20,c), +(398,-60,o), +(363,-92,o), +(306,-92,c), +(247,-92,o), +(207,-62,o), +(187,1,c), +(87,-32,l), +(116,-128,o), +(191,-185,o), +(297,-185,c), +(423,-185,o), +(503,-107,o), +(503,-19,c), +(503,64,o), +(454,104,o), +(392,129,c), +(392,121,l) +); +}, +{ +closed = 1; +nodes = ( +(138,320,o), +(179,355,o), +(241,355,c), +(331,355,o), +(458,319,o), +(458,244,c), +(458,195,o), +(417,160,o), +(355,160,c), +(265,160,o), +(138,196,o), +(138,271,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(351,-185,o), +(425,-88,o), +(425,0,c), +(425,60,o), +(395,108,o), +(347,123,c), +(345,118,l), +(464,114,o), +(540,195,o), +(540,272,c), +(540,461,o), +(237,400,o), +(237,530,c), +(237,572,o), +(282,607,o), +(341,607,c), +(405,607,o), +(439,577,o), +(450,515,c), +(552,547,l), +(534,643,o), +(450,700,o), +(351,700,c), +(209,700,o), +(135,603,o), +(135,513,c), +(135,455,o), +(165,407,o), +(213,391,c), +(215,397,l), +(96,401,o), +(20,320,o), +(20,243,c), +(20,54,o), +(323,115,o), +(323,-13,c), +(323,-57,o), +(278,-92,o), +(219,-92,c), +(155,-92,o), +(121,-62,o), +(110,0,c), +(8,-32,l), +(26,-128,o), +(110,-185,o), +(209,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(232,160,o), +(122,192,o), +(122,264,c), +(122,316,o), +(169,355,o), +(243,355,c), +(328,355,o), +(438,323,o), +(438,251,c), +(438,199,o), +(391,160,o), +(317,160,c) +); +} +); +width = 596; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(162,315,o), +(192,342,o), +(251,342,c), +(321,342,o), +(442,309,o), +(442,235,c), +(442,200,o), +(412,173,o), +(353,173,c), +(283,173,o), +(162,206,o), +(162,280,c) +); +}, +{ +closed = 1; +nodes = ( +(112,391,o), +(35,333,o), +(35,233,c), +(35,5,o), +(393,72,o), +(393,-30,c), +(393,-55,o), +(368,-74,o), +(325,-74,c), +(271,-74,o), +(234,-43,o), +(217,16,c), +(77,-32,l), +(109,-128,o), +(193,-189,o), +(312,-189,c), +(455,-189,o), +(538,-109,o), +(538,-15,c), +(538,55,o), +(496,107,o), +(432,129,c), +(396,116,l), +(503,124,o), +(580,182,o), +(580,282,c), +(580,510,o), +(222,443,o), +(222,545,c), +(222,570,o), +(247,589,o), +(290,589,c), +(344,589,o), +(380.521,558.342,o), +(398,499,c), +(538,547,l), +(505.548,643,o), +(421.619,704,o), +(303,704,c), +(160,704,o), +(77,624,o), +(77,530,c), +(77,460,o), +(119,408,o), +(183,386,c), +(219,399,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(375,-189,o), +(462,-95,o), +(462,-1,c), +(462,49,o), +(432,106,o), +(369,129,c), +(357,116,l), +(480,119,o), +(565,193,o), +(565,285,c), +(565,484,o), +(261,432,o), +(261,537,cs), +(261,564,o), +(288,589,o), +(339,589,c), +(393,589,o), +(423,558,o), +(437,500,c), +(578,547,l), +(556,643,o), +(471,704,o), +(363,704,c), +(202,704,o), +(115,610,o), +(115,516,c), +(115,466,o), +(145,409,o), +(208,386,c), +(220,399,l), +(97,401,o), +(12,322,o), +(12,230,c), +(12,31,o), +(316,83,o), +(316,-22,cs), +(316,-49,o), +(289,-74,o), +(238,-74,c), +(184,-74,o), +(154,-43,o), +(140,15,c), +(-1,-32,l), +(21,-128,o), +(106,-189,o), +(214,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(219,173,o), +(144,202,o), +(144,272,c), +(144,310,o), +(184,342,o), +(248,342,c), +(343,342,o), +(418,313,o), +(418,243,c), +(418,205,o), +(378,173,o), +(314,173,c) +); +} +); +width = 615; +} +); +unicode = 167; +}, +{ +color = 6; +glyphname = copyright; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(509.185,412,o), +(554,367.975,o), +(554,265,c), +(554,162.025,o), +(509.185,118,o), +(444,118,c), +(378.815,118,o), +(334,162.025,o), +(334,265,c), +(334,367.975,o), +(378.815,412,o), +(444,412,c) +); +}, +{ +closed = 1; +nodes = ( +(577,309,l), +(577,430.545,o), +(512.946,500,o), +(416,500,c), +(307.573,500,o), +(230,411.982,o), +(230,265,c), +(230,118.018,o), +(307.573,30,o), +(416,30,c), +(512.946,30,o), +(577,99.455,o), +(577,221,c) +); +}, +{ +closed = 1; +nodes = ( +(764,124.825,o), +(731,70,o), +(695,70,c), +(667,70,o), +(649,89,o), +(649,157,c), +(649,490,l), +(549,490,l), +(549,367,l), +(564,265,l), +(549,162,l), +(551,128,ls), +(555,54,o), +(603,-10,o), +(687,-10,c), +(789,-10,o), +(854,83.768,o), +(854,285,c), +(854,534,o), +(697,700,o), +(456,700,c), +(219,700,o), +(40,526,o), +(40,265,cs), +(40,19,o), +(196.796,-149,o), +(413,-149,c), +(487,-149,o), +(556,-129,o), +(611,-95,c), +(572,-26,l), +(527,-54,o), +(480,-69,o), +(413,-69,c), +(246.87,-69,o), +(130,63,o), +(130,265,cs), +(130,482,o), +(269,620,o), +(456,620,c), +(647,620,o), +(764,489.829,o), +(764,285,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(607,-10,o), +(757,150,o), +(757,345,cs), +(757,540,o), +(607,700,o), +(406,700,cs), +(205,700,o), +(55,540,o), +(55,345,cs), +(55,150,o), +(205,-10,o), +(406,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(251,65,o), +(135,191,o), +(135,345,cs), +(135,499,o), +(251,625,o), +(406,625,cs), +(561,625,o), +(677,499,o), +(677,345,cs), +(677,191,o), +(561,65,o), +(406,65,cs) +); +}, +{ +closed = 1; +nodes = ( +(487,137,o), +(546,177,o), +(569,254,c), +(488,276,l), +(475,230,o), +(448,211,o), +(406,211,c), +(352,211,o), +(315,251,o), +(315,340,cs), +(315,429,o), +(352,469,o), +(406,469,c), +(448,469,o), +(475,450,o), +(490,405,c), +(569,428,l), +(546,503,o), +(487,543,o), +(410,543,cs), +(302,543,o), +(228,463,o), +(228,340,cs), +(228,216,o), +(302,137,o), +(410,137,c) +); +} +); +width = 809; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(509.185,412,o), +(554,367.975,o), +(554,265,c), +(554,162.025,o), +(509.185,118,o), +(444,118,c), +(378.815,118,o), +(334,162.025,o), +(334,265,c), +(334,367.975,o), +(378.815,412,o), +(444,412,c) +); +}, +{ +closed = 1; +nodes = ( +(577,309,l), +(577,430.545,o), +(512.946,500,o), +(416,500,c), +(307.573,500,o), +(230,411.982,o), +(230,265,c), +(230,118.018,o), +(307.573,30,o), +(416,30,c), +(512.946,30,o), +(577,99.455,o), +(577,221,c) +); +}, +{ +closed = 1; +nodes = ( +(764,124.825,o), +(731,70,o), +(695,70,c), +(667,70,o), +(649,89,o), +(649,157,c), +(649,490,l), +(549,490,l), +(549,367,l), +(564,265,l), +(549,162,l), +(551,128,ls), +(555,54,o), +(603,-10,o), +(687,-10,c), +(789,-10,o), +(854,83.768,o), +(854,285,c), +(854,534,o), +(697,700,o), +(456,700,c), +(219,700,o), +(40,526,o), +(40,265,cs), +(40,19,o), +(196.796,-149,o), +(413,-149,c), +(487,-149,o), +(556,-129,o), +(611,-95,c), +(572,-26,l), +(527,-54,o), +(480,-69,o), +(413,-69,c), +(246.87,-69,o), +(130,63,o), +(130,265,cs), +(130,482,o), +(269,620,o), +(456,620,c), +(647,620,o), +(764,489.829,o), +(764,285,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(602,-10,o), +(752,150,o), +(752,345,cs), +(752,540,o), +(602,700,o), +(401,700,cs), +(200,700,o), +(50,540,o), +(50,345,cs), +(50,150,o), +(200,-10,o), +(401,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(255,80,o), +(145,199,o), +(145,345,cs), +(145,491,o), +(255,610,o), +(401,610,cs), +(547,610,o), +(657,491,o), +(657,345,cs), +(657,199,o), +(547,80,o), +(401,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(484,137,o), +(545,177,o), +(571,254,c), +(475,286,l), +(463,243,o), +(440,226,o), +(403,226,c), +(355,226,o), +(322,261,o), +(322,340,cs), +(322,419,o), +(355,454,o), +(403,454,c), +(440,454,o), +(464,437,o), +(477,395,c), +(571,428,l), +(545,503,o), +(484,543,o), +(407,543,cs), +(296,543,o), +(218,463,o), +(218,340,cs), +(218,216,o), +(296,137,o), +(407,137,c) +); +} +); +width = 799; +} +); +unicode = 169; +}, +{ +color = 6; +glyphname = registered; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(347,211,o), +(310,251,o), +(310,340,cs), +(310,429,o), +(347,469,o), +(401,469,c), +(443,469,o), +(470,450,o), +(485,405,c), +(564,428,l), +(541,503,o), +(482,543,o), +(405,543,cs), +(297,543,o), +(223,463,o), +(223,340,cs), +(223,216,o), +(297,137,o), +(405,137,c), +(482,137,o), +(541,177,o), +(564,254,c), +(483,276,l), +(470,230,o), +(443,211,o), +(401,211,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(607,-10,o), +(757,150,o), +(757,345,cs), +(757,540,o), +(607,700,o), +(406,700,cs), +(205,700,o), +(55,540,o), +(55,345,cs), +(55,150,o), +(205,-10,o), +(406,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(251,65,o), +(135,191,o), +(135,345,cs), +(135,499,o), +(251,625,o), +(406,625,cs), +(561,625,o), +(677,499,o), +(677,345,cs), +(677,191,o), +(561,65,o), +(406,65,cs) +); +}, +{ +closed = 1; +nodes = ( +(343,142,l), +(343,540,l), +(259,540,l), +(259,142,l) +); +}, +{ +closed = 1; +nodes = ( +(576,142,l), +(467,304,l), +(374,304,l), +(477,142,l) +); +}, +{ +closed = 1; +nodes = ( +(414,272,l), +(510,272,o), +(572,323,o), +(572,406,cs), +(572,489,o), +(510,540,o), +(414,540,c), +(299,540,l), +(299,462,l), +(406,462,l), +(459,462,o), +(484,444,o), +(484,406,cs), +(484,369,o), +(459,350,o), +(406,350,c), +(299,350,l), +(299,272,l) +); +} +); +width = 809; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(355,226,o), +(322,261,o), +(322,340,cs), +(322,419,o), +(355,454,o), +(403,454,c), +(440,454,o), +(464,437,o), +(477,395,c), +(571,428,l), +(545,503,o), +(484,543,o), +(407,543,cs), +(296,543,o), +(218,463,o), +(218,340,cs), +(218,216,o), +(296,137,o), +(407,137,c), +(484,137,o), +(545,177,o), +(571,254,c), +(475,286,l), +(463,243,o), +(440,226,o), +(403,226,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(602,-10,o), +(752,150,o), +(752,345,cs), +(752,540,o), +(602,700,o), +(401,700,cs), +(200,700,o), +(50,540,o), +(50,345,cs), +(50,150,o), +(200,-10,o), +(401,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(255,80,o), +(145,199,o), +(145,345,cs), +(145,491,o), +(255,610,o), +(401,610,cs), +(547,610,o), +(657,491,o), +(657,345,cs), +(657,199,o), +(547,80,o), +(401,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(358,147,l), +(358,540,l), +(259,540,l), +(259,147,l) +); +}, +{ +closed = 1; +nodes = ( +(566,147,l), +(468,309,l), +(365,309,l), +(455,147,l) +); +}, +{ +closed = 1; +nodes = ( +(416,269,l), +(513,269,o), +(566,320,o), +(566,404,cs), +(566,486,o), +(513,540,o), +(416,540,c), +(303,540,l), +(303,447,l), +(409,447,l), +(448,447,o), +(464,432,o), +(464,404,cs), +(464,375,o), +(448,360,o), +(409,360,c), +(303,360,l), +(303,269,l) +); +} +); +width = 799; +} +); +unicode = 174; +}, +{ +color = 6; +glyphname = trademark; +kernLeft = M; +kernRight = b; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(561,384,l), +(515,690,l), +(443,690,l), +(496,384,l) +); +}, +{ +closed = 1; +nodes = ( +(262,384,l), +(262,690,l), +(185,690,l), +(185,384,l) +); +}, +{ +closed = 1; +nodes = ( +(347,617,l), +(347,690,l), +(100,690,l), +(100,617,l) +); +}, +{ +closed = 1; +nodes = ( +(451,384,l), +(451,690,l), +(378,690,l), +(378,384,l) +); +}, +{ +closed = 1; +nodes = ( +(608,384,l), +(661,690,l), +(593,690,l), +(544,384,l) +); +}, +{ +closed = 1; +nodes = ( +(730,384,l), +(730,690,l), +(653,690,l), +(653,384,l) +); +} +); +width = 770; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(572,384,l), +(539,690,l), +(450,690,l), +(502,384,l) +); +}, +{ +closed = 1; +nodes = ( +(265,384,l), +(265,690,l), +(175,690,l), +(175,384,l) +); +}, +{ +closed = 1; +nodes = ( +(345,604,l), +(345,690,l), +(95,690,l), +(95,604,l) +); +}, +{ +closed = 1; +nodes = ( +(461,384,l), +(461,690,l), +(375,690,l), +(375,384,l) +); +}, +{ +closed = 1; +nodes = ( +(627,384,l), +(683,690,l), +(598,690,l), +(556,384,l) +); +}, +{ +closed = 1; +nodes = ( +(757,384,l), +(757,690,l), +(670,690,l), +(670,384,l) +); +} +); +width = 787; +} +); +unicode = 8482; +}, +{ +color = 6; +glyphname = degree; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(359,633,o), +(294,700,o), +(199,700,cs), +(105,700,o), +(40,633,o), +(40,537,c), +(40,441,o), +(105,374,o), +(199,374,cs), +(294,374,o), +(359,441,o), +(359,537,c) +); +}, +{ +closed = 1; +nodes = ( +(127,592,o), +(158,624,o), +(199,624,cs), +(241,624,o), +(272,592,o), +(272,537,c), +(272,482,o), +(241,450,o), +(199,450,cs), +(158,450,o), +(127,482,o), +(127,537,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(327,374,o), +(404,457,o), +(404,568,c), +(404,640,o), +(351,700,o), +(263,700,c), +(158,700,o), +(81,617,o), +(81,506,c), +(81,434,o), +(134,374,o), +(222,374,c) +); +}, +{ +closed = 1; +nodes = ( +(191,450,o), +(168,472,o), +(168,514,c), +(168,568,o), +(208,624,o), +(257,624,c), +(294,624,o), +(317,602,o), +(317,560,c), +(317,506,o), +(277,450,o), +(228,450,c) +); +} +); +width = 400; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(373,636,o), +(302,704,o), +(201,704,cs), +(101,704,o), +(30,636,o), +(30,537,c), +(30,438,o), +(101,370,o), +(201,370,cs), +(302,370,o), +(373,438,o), +(373,537,c) +); +}, +{ +closed = 1; +nodes = ( +(146,576,o), +(170,599,o), +(201,599,cs), +(233,599,o), +(257,576,o), +(257,537,c), +(257,498,o), +(233,475,o), +(201,475,cs), +(170,475,o), +(146,498,o), +(146,537,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(334,370,o), +(407,458,o), +(407,564,c), +(407,645,o), +(345,704,o), +(261,704,c), +(143,704,o), +(70,616,o), +(70,510,c), +(70,429,o), +(132,370,o), +(216,370,c) +); +}, +{ +closed = 1; +nodes = ( +(203,475,o), +(184,491,o), +(184,523,c), +(184,562,o), +(211,599,o), +(247,599,c), +(274,599,o), +(293,583,o), +(293,551,c), +(293,512,o), +(266,475,o), +(230,475,c) +); +} +); +width = 394; +} +); +unicode = 176; +}, +{ +color = 6; +glyphname = bar; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(70,-120,l), +(260,770,l), +(170,770,l), +(-20,-120,l) +); +} +); +width = 248; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(111,-120,l), +(301,770,l), +(162,770,l), +(-28,-120,l) +); +} +); +width = 281; +} +); +unicode = 124; +}, +{ +color = 6; +glyphname = brokenbar; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(186,425,l), +(260,770,l), +(170,770,l), +(96,425,l) +); +}, +{ +closed = 1; +nodes = ( +(70,-120,l), +(144,225,l), +(54,225,l), +(-20,-120,l) +); +} +); +width = 248; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(227,425,l), +(301,770,l), +(162,770,l), +(88,425,l) +); +}, +{ +closed = 1; +nodes = ( +(111,-120,l), +(185,225,l), +(46,225,l), +(-28,-120,l) +); +} +); +width = 281; +} +); +unicode = 166; +}, +{ +color = 6; +glyphname = dagger; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(166,227,l), +(194,550,ls), +(198,598,o), +(199,619,o), +(199,632,c), +(199,670,o), +(175,700,o), +(135,700,cs), +(95,700,o), +(71,670,o), +(71,632,c), +(71,619,o), +(72,598,o), +(76,550,cs), +(104,227,l) +); +}, +{ +closed = 1; +nodes = ( +(173,-10,o), +(200,18,o), +(200,56,cs), +(200,95,o), +(173,123,o), +(135,123,cs), +(97,123,o), +(70,95,o), +(70,56,cs), +(70,18,o), +(97,-10,o), +(135,-10,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(153,0,l), +(241,311,l), +(322,690,l), +(217,690,l), +(136,311,l), +(91,0,l) +); +}, +{ +closed = 1; +nodes = ( +(381,443,l), +(400,530,l), +(70,530,l), +(51,443,l) +); +} +); +width = 389; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(183,0,l), +(272,291,l), +(357,690,l), +(202,690,l), +(117,291,l), +(81,0,l) +); +}, +{ +closed = 1; +nodes = ( +(404,410,l), +(434,550,l), +(64,550,l), +(34,410,l) +); +} +); +width = 409; +} +); +unicode = 8224; +}, +{ +color = 6; +glyphname = literSign; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(431,344,o), +(492,417,o), +(492,501,c), +(492,559,o), +(455,605,o), +(379,605,c), +(293,605,o), +(210,530,o), +(210,447,cs), +(210,390,o), +(258,344,o), +(334,344,c) +); +}, +{ +closed = 1; +nodes = ( +(179,359,o), +(160,278,o), +(160,224,c), +(160,137,o), +(201,87,o), +(276,87,c), +(315,87,o), +(360,102,o), +(402,133,c), +(447,49,l), +(390,11,o), +(328,-10,o), +(267,-10,c), +(129,-10,o), +(56,72,o), +(56,227,c), +(56,498,o), +(186,700,o), +(390,700,c), +(519,700,o), +(597,618,o), +(597,512,c), +(597,367,o), +(478,253,o), +(345,253,c), +(246,253,o), +(180,307,o), +(180,396,cs), +(180,408,o), +(183,416,o), +(185,429,c), +(192,404,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(282,145,o), +(511,381,o), +(511,559,c), +(511,644,o), +(466,700,o), +(383,700,c), +(202,700,o), +(57,452,o), +(57,227,c), +(57,72,o), +(130,-10,o), +(268,-10,c), +(329,-10,o), +(391,11,o), +(448,49,c), +(403,133,l), +(361,102,o), +(316,87,o), +(277,87,c), +(202,87,o), +(161,137,o), +(161,224,c), +(161,374,o), +(268,605,o), +(372,605,c), +(399,605,o), +(413,585,o), +(413,552,c), +(413,424,o), +(235,211,o), +(-39,66,c), +(-4,-10,l) +); +} +); +width = 545; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(264,211,o), +(442,424,o), +(442,552,c), +(442,585,o), +(428,605,o), +(401,605,c), +(297,605,o), +(190,374,o), +(190,224,c), +(190,137,o), +(231,87,o), +(306,87,c), +(345,87,o), +(390,102,o), +(432,133,c), +(477,49,l), +(420,11,o), +(358,-10,o), +(297,-10,c), +(159,-10,o), +(86,72,o), +(86,227,c), +(86,452,o), +(231,700,o), +(412,700,c), +(495,700,o), +(540,644,o), +(540,559,c), +(540,381,o), +(311,145,o), +(25,-10,c), +(-10,66,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(325,139,o), +(564,354,o), +(564,549,c), +(564,640,o), +(506,704,o), +(403,704,c), +(212,704,o), +(58,471,o), +(58,227,c), +(58,72,o), +(155,-14,o), +(294,-14,c), +(371,-14,o), +(442,9,o), +(499,50,c), +(439,174,l), +(386,134,o), +(337,117,o), +(303,117,c), +(241,117,o), +(207,157,o), +(207,235,c), +(207,359,o), +(294,571,o), +(378,571,c), +(405,571,o), +(419,551,o), +(419,518,c), +(419,413,o), +(248,232,o), +(-32,108,c), +(25,-14,l) +); +} +); +width = 586; +} +); +unicode = 8467; +}, +{ +color = 6; +glyphname = daggerdbl; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(166,227,l), +(194,550,ls), +(198,598,o), +(199,619,o), +(199,632,c), +(199,670,o), +(175,700,o), +(135,700,cs), +(95,700,o), +(71,670,o), +(71,632,c), +(71,619,o), +(72,598,o), +(76,550,cs), +(104,227,l) +); +}, +{ +closed = 1; +nodes = ( +(173,-10,o), +(200,18,o), +(200,56,cs), +(200,95,o), +(173,123,o), +(135,123,cs), +(97,123,o), +(70,95,o), +(70,56,cs), +(70,18,o), +(97,-10,o), +(135,-10,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(175,0,l), +(322,690,l), +(217,690,l), +(70,0,l) +); +}, +{ +closed = 1; +nodes = ( +(321,160,l), +(340,247,l), +(10,247,l), +(-9,160,l) +); +}, +{ +closed = 1; +nodes = ( +(381,443,l), +(400,530,l), +(70,530,l), +(51,443,l) +); +} +); +width = 389; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(210,0,l), +(357,690,l), +(202,690,l), +(55,0,l) +); +}, +{ +closed = 1; +nodes = ( +(347,140,l), +(377,280,l), +(7,280,l), +(-23,140,l) +); +}, +{ +closed = 1; +nodes = ( +(404,410,l), +(434,550,l), +(64,550,l), +(34,410,l) +); +} +); +width = 409; +} +); +unicode = 8225; +}, +{ +color = 6; +glyphname = estimated; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(551,-10,o), +(667,67,o), +(726,180,c), +(691,201,l), +(640,99,o), +(536,30,o), +(417,30,cs), +(238.748,30,o), +(93,171,o), +(93,345,cs), +(93,519,o), +(232,660,o), +(402,660,cs), +(572,660,o), +(711,519,o), +(711,345,c), +(751,345,l), +(751,540,o), +(594,700,o), +(402,700,cs), +(210,700,o), +(53,540,o), +(53,345,cs), +(53,150,o), +(216.748,-10,o), +(417,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(213,627,l), +(78,457,l), +(78,230,l), +(213,60,l) +); +}, +{ +closed = 1; +nodes = ( +(751,327,l), +(751,345,l), +(720,372,l), +(109,372,l), +(109,327,l) +); +}, +{ +closed = 1; +nodes = ( +(726,341,l), +(726,457,l), +(591,627,l), +(591,341,l) +); +} +); +width = 806; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(546,-10,o), +(662,67,o), +(721,180,c), +(686,201,l), +(635,99,o), +(531,30,o), +(412,30,cs), +(234,30,o), +(88,171,o), +(88,345,cs), +(88,519,o), +(227,660,o), +(397,660,cs), +(567,660,o), +(706,519,o), +(706,345,c), +(746,345,l), +(746,540,o), +(589,700,o), +(397,700,cs), +(205,700,o), +(48,540,o), +(48,345,cs), +(48,150,o), +(212,-10,o), +(412,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(208,627,l), +(73,457,l), +(73,230,l), +(208,60,l) +); +}, +{ +closed = 1; +nodes = ( +(746,327,l), +(746,345,l), +(715,372,l), +(104,372,l), +(104,327,l) +); +}, +{ +closed = 1; +nodes = ( +(721,341,l), +(721,457,l), +(586,627,l), +(586,341,l) +); +} +); +width = 796; +} +); +unicode = 8494; +}, +{ +color = 6; +glyphname = numero; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(248,690,l), +(445,0,l), +(554,0,l), +(357,690,l) +); +}, +{ +closed = 1; +nodes = ( +(170,0,l), +(317,690,l), +(217,690,l), +(70,0,l) +); +}, +{ +closed = 1; +nodes = ( +(585,0,l), +(732,690,l), +(632,690,l), +(485,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(478,0,l), +(284,690,l), +(185,690,l), +(379,0,l) +); +}, +{ +closed = 1; +nodes = ( +(102,0,l), +(249,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(514,0,l), +(661,690,l), +(561,690,l), +(414,0,l) +); +}, +{ +closed = 1; +nodes = ( +(837,191,o), +(867,220,o), +(867,262,c), +(867,299,o), +(842,324,o), +(805,324,c), +(764,324,o), +(735,295,o), +(735,251,c), +(735,216,o), +(760,191,o), +(796,191,c) +); +}, +{ +closed = 1; +nodes = ( +(945,374,o), +(1022,457,o), +(1022,568,c), +(1022,640,o), +(969,700,o), +(881,700,c), +(776,700,o), +(699,617,o), +(699,506,c), +(699,434,o), +(752,374,o), +(840,374,c) +); +}, +{ +closed = 1; +nodes = ( +(809,450,o), +(786,472,o), +(786,514,c), +(786,568,o), +(826,624,o), +(875,624,c), +(912,624,o), +(935,602,o), +(935,560,c), +(935,506,o), +(895,450,o), +(846,450,c) +); +} +); +width = 1018; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(317,690,l), +(345,0,l), +(496,0,l), +(468,690,l) +); +}, +{ +closed = 1; +nodes = ( +(206,0,l), +(353,690,l), +(206,690,l), +(59,0,l) +); +}, +{ +closed = 1; +nodes = ( +(607,0,l), +(754,690,l), +(607,690,l), +(460,0,l) +); +}, +{ +closed = 1; +nodes = ( +(1148,636,o), +(1092,704,o), +(991,704,cs), +(891,704,o), +(805,636,o), +(784,537,c), +(763,438,o), +(820,370,o), +(920,370,cs), +(1021,370,o), +(1106,438,o), +(1127,537,c) +); +}, +{ +closed = 1; +nodes = ( +(908,576,o), +(937,599,o), +(968,599,cs), +(1000,599,o), +(1019,576,o), +(1011,537,c), +(1003,498,o), +(974,475,o), +(942,475,cs), +(911,475,o), +(892,498,o), +(900,537,c) +); +}, +{ +closed = 1; +nodes = ( +(923,144,o), +(969,179,o), +(980,231,cs), +(991,284,o), +(960,320,o), +(909,320,cs), +(859,320,o), +(813,284,o), +(802,231,cs), +(791,179,o), +(822,144,o), +(872,144,cs) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(423,0,l), +(386,690,l), +(245,690,l), +(282,0,l) +); +}, +{ +closed = 1; +nodes = ( +(136,0,l), +(283,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(532,0,l), +(679,690,l), +(532,690,l), +(385,0,l) +); +}, +{ +closed = 1; +nodes = ( +(864,145,o), +(906,182,o), +(906,240,c), +(906,288,o), +(875,320,o), +(823,320,c), +(771,320,o), +(729,282,o), +(729,224,c), +(729,176,o), +(760,145,o), +(811,145,c) +); +}, +{ +closed = 1; +nodes = ( +(978,370,o), +(1051,458,o), +(1051,564,c), +(1051,645,o), +(989,704,o), +(905,704,c), +(787,704,o), +(714,616,o), +(714,510,c), +(714,429,o), +(776,370,o), +(860,370,c) +); +}, +{ +closed = 1; +nodes = ( +(847,475,o), +(828,491,o), +(828,523,c), +(828,562,o), +(855,599,o), +(891,599,c), +(918,599,o), +(937,583,o), +(937,551,c), +(937,512,o), +(910,475,o), +(874,475,c) +); +} +); +width = 1042; +} +); +unicode = 8470; +}, +{ +color = 6; +glyphname = cent; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(308,800,l), +(218,800,l), +(218,652,l), +(308,652,l) +); +}, +{ +closed = 1; +nodes = ( +(308,-110,l), +(308,222,l), +(218,222,l), +(218,-110,l) +); +}, +{ +closed = 1; +nodes = ( +(187,260,o), +(139,313.919,o), +(139,435,cs), +(139,556.081,o), +(187,610,o), +(259,610,c), +(314.917,610,o), +(348.833,583.443,o), +(369,518,c), +(463,549,l), +(434.435,647.731,o), +(360.167,700,o), +(264,700,cs), +(127.941,700,o), +(35,595.927,o), +(35,435,cs), +(35,274.073,o), +(127.941,170,o), +(264,170,c), +(360.167,170,o), +(434.435,222.302,o), +(463,324,c), +(366,353,l), +(348.624,286.571,o), +(314.786,260,o), +(259,260,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(330.86,170,o), +(412,220,o), +(460,325,c), +(366,359,l), +(337,289,o), +(294.992,260,o), +(248,260,c), +(188,260,o), +(152,297,o), +(152,365,cs), +(152,499,o), +(228,610,o), +(322,610,c), +(373.158,610,o), +(405,582,o), +(413,515,c), +(511,544,l), +(497,646,o), +(426.402,700,o), +(336,700,c), +(173,700,o), +(48,549,o), +(48,360,cs), +(48,247,o), +(122,170,o), +(235,170,c) +); +}, +{ +closed = 1; +nodes = ( +(213,-110,l), +(283,222,l), +(193,222,l), +(123,-110,l) +); +}, +{ +closed = 1; +nodes = ( +(375,652,l), +(406,800,l), +(316,800,l), +(285,652,l) +); +} +); +width = 493; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(218,299,o), +(180,345.575,o), +(180,435,cs), +(180,524.425,o), +(218,571,o), +(275,571,c), +(322.421,571,o), +(353,543,o), +(360,489,c), +(508,522,l), +(484,634,o), +(395.815,704,o), +(275,704,cs), +(128.869,704,o), +(26,596.014,o), +(26,435,cs), +(26,273.986,o), +(128.869,166,o), +(275,166,c), +(395.878,166,o), +(486,236,o), +(511,349,c), +(364,380,l), +(355,326,o), +(322.646,299,o), +(275,299,c) +); +}, +{ +closed = 1; +nodes = ( +(333,800,l), +(214,800,l), +(214,604,l), +(333,604,l) +); +}, +{ +closed = 1; +nodes = ( +(333,-110,l), +(333,254,l), +(214,254,l), +(214,-110,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(371,166,o), +(469,238,o), +(513,357,c), +(369,387,l), +(353,328,o), +(312,299,o), +(266,299,c), +(216,299,o), +(194,335,o), +(194,388,c), +(194,488,o), +(252,571,o), +(325,571,c), +(373,571,o), +(398,541,o), +(398,485,c), +(546,515,l), +(537,632,o), +(459,704,o), +(342,704,c), +(167,704,o), +(40,552,o), +(40,371,c), +(40,252,o), +(118,166,o), +(245,166,c) +); +}, +{ +closed = 1; +nodes = ( +(237,-110,l), +(314,254,l), +(195,254,l), +(118,-110,l) +); +}, +{ +closed = 1; +nodes = ( +(388,604,l), +(430,800,l), +(311,800,l), +(269,604,l) +); +} +); +width = 532; +} +); +unicode = 162; +}, +{ +color = 6; +glyphname = currency; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(464,405,o), +(388.844,486,o), +(279,486,cs), +(170.22,486,o), +(95,405,o), +(95,303,c), +(95,201,o), +(170.22,120,o), +(279,120,cs), +(388.844,120,o), +(464,201,o), +(464,303,c) +); +}, +{ +closed = 1; +nodes = ( +(181,364,o), +(223.829,410,o), +(279,410,cs), +(335.319,410,o), +(378,364,o), +(378,303,c), +(378,242,o), +(335.319,196,o), +(279,196,cs), +(223.829,196,o), +(181,242,o), +(181,303,c) +); +}, +{ +closed = 1; +nodes = ( +(25,498,l), +(153,370,l), +(212,429,l), +(84,557,l) +); +}, +{ +closed = 1; +nodes = ( +(531,499,l), +(474,556,l), +(344,426,l), +(401,369,l) +); +}, +{ +closed = 1; +nodes = ( +(473,50,l), +(532,109,l), +(402,239,l), +(343,180,l) +); +}, +{ +closed = 1; +nodes = ( +(83,51,l), +(210,178,l), +(153,235,l), +(26,108,l) +); +}, +{ +closed = 1; +nodes = ( +(550,405,o), +(492,486,o), +(382,486,cs), +(274,486,o), +(181,405,o), +(159,303,c), +(138,201,o), +(196,120,o), +(305,120,cs), +(414,120,o), +(507,201,o), +(528,303,c) +); +}, +{ +closed = 1; +nodes = ( +(258,364,o), +(311,410,o), +(366,410,cs), +(422,410,o), +(455,364,o), +(442,303,c), +(429,242,o), +(377,196,o), +(321,196,cs), +(265,196,o), +(232,242,o), +(245,303,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(364,120,o), +(460,221,o), +(460,329,c), +(460,416,o), +(391,486,o), +(300,486,c), +(179.197,486,o), +(83,385,o), +(83,277,c), +(83,190,o), +(152,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(179,174,l), +(129,239,l), +(-25,112,l), +(29,51,l) +); +}, +{ +closed = 1; +nodes = ( +(223,432,l), +(124,557,l), +(63,502,l), +(160,380,l) +); +}, +{ +closed = 1; +nodes = ( +(202,196,o), +(170,234,o), +(170,285,c), +(170,351,o), +(231.313,410,o), +(291,410,c), +(341,410,o), +(373,372,o), +(373,321,c), +(373,255,o), +(312,196,o), +(252,196,c) +); +}, +{ +closed = 1; +nodes = ( +(483,105,l), +(384,230,l), +(322,175,l), +(421,50,l) +); +}, +{ +closed = 1; +nodes = ( +(568,495,l), +(513,556,l), +(364,433,l), +(412,366,l) +); +} +); +width = 558; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(494,416.148,o), +(410.892,506,o), +(289,506,cs), +(168.152,506,o), +(85,416.148,o), +(85,303,c), +(85,189.852,o), +(168.152,100,o), +(289,100,cs), +(410.892,100,o), +(494,189.852,o), +(494,303,c) +); +}, +{ +closed = 1; +nodes = ( +(209,355,o), +(242,391,o), +(289,391,cs), +(337,391,o), +(370,355,o), +(370,303,c), +(370,251,o), +(337,215,o), +(289,215,cs), +(242,215,o), +(209,251,o), +(209,303,c) +); +}, +{ +closed = 1; +nodes = ( +(106,25,l), +(250,169,l), +(154,265,l), +(10,121,l) +); +}, +{ +closed = 1; +nodes = ( +(10,485,l), +(154,341,l), +(251,438,l), +(107,582,l) +); +}, +{ +closed = 1; +nodes = ( +(567,486,l), +(471,582,l), +(322,433,l), +(418,337,l) +); +}, +{ +closed = 1; +nodes = ( +(470,25,l), +(567,122,l), +(431,258,l), +(334,161,l) +); +}, +{ +closed = 1; +nodes = ( +(582,416,o), +(518,506,o), +(397,506,cs), +(276,506,o), +(173,416,o), +(149,303,c), +(125,190,o), +(189,100,o), +(310,100,cs), +(432,100,o), +(534,190,o), +(558,303,c) +); +}, +{ +closed = 1; +nodes = ( +(284,355,o), +(325,391,o), +(372,391,cs), +(420,391,o), +(445,355,o), +(434,303,c), +(423,251,o), +(383,215,o), +(335,215,cs), +(288,215,o), +(262,251,o), +(273,303,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(385,100,o), +(485,210,o), +(485,339,c), +(485,428,o), +(407,506,o), +(306,506,c), +(174,506,o), +(74,396,o), +(74,267,c), +(74,178,o), +(152,100,o), +(253,100,c) +); +}, +{ +closed = 1; +nodes = ( +(209,157,l), +(127,264,l), +(-37,128,l), +(49,25,l) +); +}, +{ +closed = 1; +nodes = ( +(253,453,l), +(151,582,l), +(43,492,l), +(148,359,l) +); +}, +{ +closed = 1; +nodes = ( +(222,215,o), +(197,246,o), +(197,285,cs), +(197,340,o), +(245,391,o), +(294,391,c), +(337,391,o), +(362,360,o), +(362,321,cs), +(362,266,o), +(314,215,o), +(265,215,c) +); +}, +{ +closed = 1; +nodes = ( +(520,115,l), +(413,251,l), +(306,159,l), +(412,25,l) +); +}, +{ +closed = 1; +nodes = ( +(599,479,l), +(513,582,l), +(349,447,l), +(432,341,l) +); +} +); +width = 576; +} +); +unicode = 164; +}, +{ +color = 6; +glyphname = dollar; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(515,443,o), +(153,363,o), +(153,522,c), +(153,570,o), +(186,612,o), +(266,612,c), +(340,612,o), +(384,572,o), +(408,499,c), +(508,532,l), +(475,637,o), +(396,700,o), +(275,700,c), +(128,700,o), +(52,617,o), +(52,515,c), +(52,266,o), +(413,351,o), +(413,174,c), +(413,117,o), +(364,78,o), +(284,78,c), +(201,78,o), +(156,120,o), +(133,196,c), +(30,163,l), +(64,55,o), +(144,-10,o), +(276,-10,c), +(430,-10,o), +(515,72,o), +(515,180,c) +); +}, +{ +closed = 1; +nodes = ( +(322,800,l), +(232,800,l), +(232,652,l), +(322,652,l) +); +}, +{ +closed = 1; +nodes = ( +(322,-110,l), +(322,42,l), +(232,42,l), +(232,-110,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(415,-10,o), +(498,92,o), +(498,196,c), +(498,421,o), +(191,364,o), +(191,521,c), +(191,566,o), +(225.259,607,o), +(316,607,c), +(400.304,607,o), +(445.266,572,o), +(464,499,c), +(561,532,l), +(531.303,637,o), +(453,700,o), +(331,700,c), +(150,700,o), +(84,597,o), +(84,505,c), +(84,295,o), +(389,334,o), +(389,187,c), +(389,125,o), +(339.354,83,o), +(241,83,c), +(151,83,o), +(107.875,120,o), +(91,196,c), +(-9,163,l), +(16.924,55,o), +(97,-10,o), +(233,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(230,-110,l), +(262,42,l), +(172,42,l), +(140,-110,l) +); +}, +{ +closed = 1; +nodes = ( +(392,652,l), +(423,800,l), +(333,800,l), +(302,652,l) +); +} +); +width = 573; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(450,-14,o), +(556,79,o), +(556,212,c), +(556,437,o), +(235,402,o), +(235,507,c), +(235,540,o), +(262,566,o), +(337,566,c), +(402,566,o), +(442,536,o), +(456,473,c), +(608,517,l), +(581,640,o), +(478,704,o), +(350,704,c), +(169,704,o), +(76,607,o), +(76,488,c), +(76,272,o), +(391,310,o), +(391,193,c), +(391,156,o), +(365,125,o), +(285,125,c), +(212,125,o), +(168,159,o), +(150,236,c), +(-6,190,l), +(22,53,o), +(127,-14,o), +(272,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(272,-110,l), +(309,64,l), +(190,64,l), +(153,-110,l) +); +}, +{ +closed = 1; +nodes = ( +(423,604,l), +(465,800,l), +(346,800,l), +(304,604,l) +); +} +); +width = 620; +} +); +unicode = 36; +}, +{ +color = 6; +glyphname = euro; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(238,84,o), +(186,179,o), +(186,345,cs), +(186,512,o), +(238,606,o), +(322,606,c), +(384,606,o), +(421,563,o), +(436,487,c), +(537,511,l), +(511,634,o), +(436,700,o), +(325,700,c), +(177,700,o), +(83,576,o), +(83,345,cs), +(83,115,o), +(177,-10,o), +(325,-10,c), +(436,-10,o), +(512,56,o), +(541,181,c), +(440,205,l), +(421,127,o), +(385,84,o), +(322,84,c) +); +}, +{ +closed = 1; +nodes = ( +(20,223,l), +(367,223,l), +(377,310,l), +(20,310,l) +); +}, +{ +closed = 1; +nodes = ( +(20,365,l), +(383,365,l), +(393,452,l), +(20,452,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(382,-10,o), +(459,56,o), +(506,181,c), +(411,205,l), +(380,127,o), +(335,84,o), +(275,84,c), +(206,84,o), +(176,135,o), +(176,227,c), +(176,443,o), +(268,606,o), +(376,606,c), +(437,606,o), +(465,563,o), +(472,487,c), +(573,511,l), +(560,634,o), +(491,700,o), +(386,700,c), +(210,700,o), +(72,492,o), +(72,222,c), +(72,70,o), +(145,-10,o), +(269,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(341,223,l), +(370,310,l), +(13,310,l), +(-6,223,l) +); +}, +{ +closed = 1; +nodes = ( +(388,365,l), +(416,452,l), +(43,452,l), +(25,365,l) +); +} +); +width = 577; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(262.265,124,o), +(216,204.441,o), +(216,345,cs), +(216,486.406,o), +(262.265,566,o), +(337,566,c), +(391.061,566,o), +(423.713,534,o), +(429,482,c), +(580,516,l), +(557,638.736,o), +(469,704,o), +(340,704,c), +(167.949,704,o), +(58,579.254,o), +(58,345,cs), +(58,111.761,o), +(167.949,-14,o), +(340,-14,c), +(469,-14,o), +(557,51.282,o), +(587,176,c), +(436,215,l), +(423.362,156,o), +(392.105,124,o), +(337,124,c) +); +}, +{ +closed = 1; +nodes = ( +(10,217,l), +(406,217,l), +(417,316,l), +(10,316,l) +); +}, +{ +closed = 1; +nodes = ( +(10,359,l), +(422,359,l), +(433,458,l), +(10,458,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(413,-14,o), +(504,51,o), +(551,176,c), +(409,215,l), +(384,156,o), +(345,124,o), +(293,124,c), +(235,124,o), +(216,162,o), +(216,249,c), +(216,434,o), +(291,566,o), +(384,566,c), +(438,566,o), +(460,534,o), +(465,482,c), +(617,516,l), +(606,639,o), +(516,704,o), +(401,704,c), +(199,704,o), +(57,507,o), +(57,243,c), +(57,72,o), +(139,-14,o), +(278,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(379,217,l), +(411,316,l), +(4,316,l), +(-17,217,l) +); +}, +{ +closed = 1; +nodes = ( +(425,359,l), +(457,458,l), +(34,458,l), +(13,359,l) +); +} +); +width = 602; +} +); +unicode = 8364; +}, +{ +color = 6; +glyphname = sterling; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(504,96,l), +(130,96,l), +(50,67,l), +(50,0,l), +(504,0,l) +); +}, +{ +closed = 1; +nodes = ( +(253,342,o), +(175,413,o), +(175,501,c), +(175,566,o), +(221,608,o), +(283,608,c), +(353,608,o), +(390.44,557,o), +(401,493,c), +(504,513,l), +(487.365,623,o), +(412,700,o), +(287,700,c), +(163,700,o), +(69,620,o), +(69,501,c), +(69,392,o), +(160,341,o), +(160,241,c), +(160,193,o), +(130,135,o), +(50,67,c), +(132,52,l), +(232,135,o), +(253,189,o), +(253,253,c) +); +}, +{ +closed = 1; +nodes = ( +(50,275,l), +(438,275,l), +(438,362,l), +(50,362,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(210,147,o), +(238,208,o), +(238,288,cs), +(238,350,o), +(205,406,o), +(205,478,c), +(205,557,o), +(265,608,o), +(327,608,c), +(399,608,o), +(429,563,o), +(437,493,c), +(536,513,l), +(524,640,o), +(453,700,o), +(337,700,c), +(208,700,o), +(98,605,o), +(98,472,c), +(98,389,o), +(142,342,o), +(142,275,cs), +(142,219.667,o), +(109.572,151.872,o), +(-9,67,c), +(70,52,l) +); +}, +{ +closed = 1; +nodes = ( +(431,0,l), +(451,96,l), +(77,96,l), +(-9,67,l), +(-23,0,l) +); +}, +{ +closed = 1; +nodes = ( +(423,275,l), +(442,362,l), +(54,362,l), +(35,275,l) +); +} +); +width = 564; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(547,140,l), +(106,140,l), +(35,104,l), +(35,0,l), +(547,0,l) +); +}, +{ +closed = 1; +nodes = ( +(57,395,o), +(133,346,o), +(133,272,c), +(133,214,o), +(100.607,158,o), +(35,104,c), +(107,97,l), +(231,133,o), +(279,205,o), +(279,278,c), +(279,353,o), +(217,409,o), +(217,485,c), +(217,534,o), +(252,563,o), +(295,563,c), +(341,563,o), +(380,531,o), +(386,469,c), +(540,489,l), +(524,629,o), +(431,704,o), +(296,704,c), +(160,704,o), +(57,618,o), +(57,497,c) +); +}, +{ +closed = 1; +nodes = ( +(35,251,l), +(449,251,l), +(449,371,l), +(35,371,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(206,138,o), +(266,232,o), +(266,309,cs), +(266,359,o), +(244,403,o), +(244,469,c), +(244,529,o), +(289,563,o), +(337,563,c), +(389,563,o), +(413,537,o), +(417,469,c), +(566,489,l), +(557,619,o), +(488,704,o), +(348,704,c), +(183,704,o), +(85,585,o), +(85,471,c), +(85,390,o), +(124,347,o), +(124,296,cs), +(124,230,o), +(72,165,o), +(-16,104,c), +(55,97,l) +); +}, +{ +closed = 1; +nodes = ( +(474,0,l), +(504,140,l), +(63,140,l), +(-16,104,l), +(-38,0,l) +); +}, +{ +closed = 1; +nodes = ( +(429,251,l), +(455,371,l), +(41,371,l), +(15,251,l) +); +} +); +width = 583; +} +); +unicode = 163; +}, +{ +color = 6; +glyphname = yen; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(329,363,l), +(138,690,l), +(20,690,l), +(262,303,l) +); +}, +{ +closed = 1; +nodes = ( +(332,303,l), +(574,690,l), +(459,690,l), +(271,363,l) +); +}, +{ +closed = 1; +nodes = ( +(349,0,l), +(349,410,l), +(244,410,l), +(244,0,l) +); +}, +{ +closed = 1; +nodes = ( +(90,161,l), +(503,161,l), +(503,248,l), +(90,248,l) +); +}, +{ +closed = 1; +nodes = ( +(90,303,l), +(504,303,l), +(504,390,l), +(90,390,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(649,690,l), +(528,690,l), +(270,363,l), +(324,303,l) +); +}, +{ +closed = 1; +nodes = ( +(277,0,l), +(364,410,l), +(259,410,l), +(172,0,l) +); +}, +{ +closed = 1; +nodes = ( +(465,161,l), +(484,248,l), +(71,248,l), +(52,161,l) +); +}, +{ +closed = 1; +nodes = ( +(328,363,l), +(207,690,l), +(95,690,l), +(254,303,l) +); +}, +{ +closed = 1; +nodes = ( +(496,303,l), +(515,390,l), +(101,390,l), +(82,303,l) +); +} +); +width = 594; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(386,0,l), +(386,453,l), +(232,453,l), +(232,0,l) +); +}, +{ +closed = 1; +nodes = ( +(71,183,l), +(547,183,l), +(547,290,l), +(71,290,l) +); +}, +{ +closed = 1; +nodes = ( +(71,325,l), +(547,325,l), +(547,432,l), +(71,432,l) +); +}, +{ +closed = 1; +nodes = ( +(279,415,l), +(368,293,l), +(592,690,l), +(426,690,l) +); +}, +{ +closed = 1; +nodes = ( +(251,292,l), +(351,415,l), +(201,690,l), +(28,690,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(667,690,l), +(491,690,l), +(285,415,l), +(358,293,l) +); +}, +{ +closed = 1; +nodes = ( +(314,0,l), +(410,453,l), +(256,453,l), +(160,0,l) +); +}, +{ +closed = 1; +nodes = ( +(514,183,l), +(537,290,l), +(61,290,l), +(38,183,l) +); +}, +{ +closed = 1; +nodes = ( +(357,415,l), +(266,690,l), +(103,690,l), +(241,292,l) +); +}, +{ +closed = 1; +nodes = ( +(544,325,l), +(567,432,l), +(91,432,l), +(68,325,l) +); +} +); +width = 620; +} +); +unicode = 165; +}, +{ +color = 6; +glyphname = bulletoperator; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(148,231,o), +(175,259,o), +(175,297,cs), +(175,336,o), +(148,364,o), +(110,364,cs), +(72,364,o), +(45,336,o), +(45,297,cs), +(45,259,o), +(72,231,o), +(110,231,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(186,203,o), +(229,244,o), +(229,304,c), +(229,357,o), +(193,392,o), +(141,392,c), +(82,392,o), +(41,351,o), +(41,288,c), +(41,239,o), +(77,203,o), +(128,203,c) +); +} +); +width = 289; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(195,188,o), +(248,235,o), +(248,309,c), +(248,370,o), +(209,411,o), +(143,411,c), +(76,411,o), +(23,363,o), +(23,289,c), +(23,227,o), +(62,188,o), +(127,188,c) +); +} +); +width = 289; +} +); +unicode = 8729; +}, +{ +color = 6; +glyphname = divisionslash; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(-3,-120,l), +(383,770,l), +(287,770,l), +(-99,-120,l) +); +} +); +width = 291; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(51,-120,l), +(434,770,l), +(284,770,l), +(-99,-120,l) +); +} +); +width = 342; +} +); +unicode = 8725; +}, +{ +color = 6; +glyphname = plus; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(256,92,l), +(345,515,l), +(260,515,l), +(171,92,l) +); +}, +{ +closed = 1; +nodes = ( +(456,263,l), +(473,344,l), +(60,344,l), +(43,263,l) +); +} +); +width = 532; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(279,74,l), +(376,533,l), +(237,533,l), +(140,74,l) +); +}, +{ +closed = 1; +nodes = ( +(468,236,l), +(497,371,l), +(48,371,l), +(19,236,l) +); +} +); +width = 532; +} +); +unicode = 43; +}, +{ +color = 6; +glyphname = minus; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(456,263,l), +(473,344,l), +(60,344,l), +(43,263,l) +); +} +); +width = 532; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(468,236,l), +(497,371,l), +(48,371,l), +(19,236,l) +); +} +); +width = 532; +} +); +unicode = 8722; +}, +{ +color = 6; +glyphname = multiply; +lastChange = "2024-03-21 14:13:13 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(121,101,l), +(469,449,l), +(412,506,l), +(64,158,l) +); +}, +{ +closed = 1; +nodes = ( +(63,448,l), +(411,100,l), +(470,159,l), +(122,507,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(431,155,l), +(146,507,l), +(85,452,l), +(369,100,l) +); +}, +{ +closed = 1; +nodes = ( +(491,445,l), +(436,506,l), +(25,162,l), +(79,101,l) +); +} +); +width = 532; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(134,75,l), +(495,436,l), +(399,532,l), +(38,171,l) +); +}, +{ +closed = 1; +nodes = ( +(38,435,l), +(398,75,l), +(495,172,l), +(135,532,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(460,165,l), +(166,532,l), +(58,442,l), +(352,75,l) +); +}, +{ +closed = 1; +nodes = ( +(516,429,l), +(430,532,l), +(2,178,l), +(88,75,l) +); +} +); +width = 532; +} +); +unicode = 215; +}, +{ +color = 6; +glyphname = divide; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(456,263,l), +(473,344,l), +(60,344,l), +(43,263,l) +); +}, +{ +closed = 1; +nodes = ( +(252,82,o), +(278,106,o), +(278,142,c), +(278,173,o), +(256,194,o), +(225,194,c), +(190,194,o), +(166,170,o), +(166,132,c), +(166,103,o), +(187,82,o), +(217,82,c) +); +}, +{ +closed = 1; +nodes = ( +(322,412,o), +(348,436,o), +(348,472,c), +(348,503,o), +(326,524,o), +(295,524,c), +(260,524,o), +(236,500,o), +(236,462,c), +(236,433,o), +(257,412,o), +(287,412,c) +); +} +); +width = 532; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(468,236,l), +(497,371,l), +(48,371,l), +(19,236,l) +); +}, +{ +closed = 1; +nodes = ( +(260,55,o), +(296,87,o), +(296,136,c), +(296,177,o), +(269,204,o), +(225,204,c), +(181,204,o), +(145,172,o), +(145,122,c), +(145,81,o), +(171,55,o), +(215,55,c) +); +}, +{ +closed = 1; +nodes = ( +(333,403,o), +(369,435,o), +(369,484,c), +(369,525,o), +(342,552,o), +(298,552,c), +(254,552,o), +(218,520,o), +(218,470,c), +(218,429,o), +(244,403,o), +(288,403,c) +); +} +); +width = 532; +} +); +unicode = 247; +}, +{ +color = 6; +glyphname = equal; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(435,163,l), +(452,244,l), +(39,244,l), +(22,163,l) +); +}, +{ +closed = 1; +nodes = ( +(477,363,l), +(494,444,l), +(81,444,l), +(64,363,l) +); +} +); +width = 532; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(444,122,l), +(473,258,l), +(24,258,l), +(-5,122,l) +); +}, +{ +closed = 1; +nodes = ( +(492,350,l), +(521,484,l), +(72,484,l), +(43,350,l) +); +} +); +width = 532; +} +); +unicode = 61; +}, +{ +color = 6; +glyphname = notequal; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(166,92,l), +(448,515,l), +(350,515,l), +(68,92,l) +); +}, +{ +closed = 1; +nodes = ( +(435,163,l), +(452,244,l), +(39,244,l), +(22,163,l) +); +}, +{ +closed = 1; +nodes = ( +(477,363,l), +(494,444,l), +(81,444,l), +(64,363,l) +); +} +); +width = 532; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(167,52,l), +(487,555,l), +(349,555,l), +(29,52,l) +); +}, +{ +closed = 1; +nodes = ( +(444,122,l), +(473,258,l), +(24,258,l), +(-5,122,l) +); +}, +{ +closed = 1; +nodes = ( +(492,350,l), +(521,484,l), +(72,484,l), +(43,350,l) +); +} +); +width = 532; +} +); +unicode = 8800; +}, +{ +color = 6; +glyphname = greater; +lastChange = "2024-03-21 14:13:44 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(460,261,l), +(478,345,l), +(101,513,l), +(83,427,l), +(364,308,l), +(32,189,l), +(12,93,l) +); +} +); +width = 532; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(472,221,l), +(507,385,l), +(83,523,l), +(54,386,l), +(354,307,l), +(20,228,l), +(-10,83,l) +); +} +); +width = 532; +} +); +unicode = 62; +}, +{ +color = 6; +glyphname = less; +lastChange = "2024-03-21 14:13:31 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(55,261,l), +(161,304,l), +(468,423,l), +(468,513,l), +(55,345,l) +); +}, +{ +closed = 1; +nodes = ( +(468,185,l), +(161,304,l), +(55,345,l), +(55,261,l), +(468,93,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(433,179,l), +(152,298,l), +(484,417,l), +(504,513,l), +(55,345,l), +(37,261,l), +(415,93,l) +); +} +); +width = 532; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(35,221,l), +(171,304,l), +(488,383,l), +(488,523,l), +(35,385,l) +); +}, +{ +closed = 1; +nodes = ( +(488,225,l), +(171,304,l), +(35,385,l), +(35,221,l), +(488,83,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(463,220,l), +(163,299,l), +(496,378,l), +(527,523,l), +(45,385,l), +(10,221,l), +(434,83,l) +); +} +); +width = 532; +} +); +unicode = 60; +}, +{ +color = 6; +glyphname = greaterequal; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(464,302,l), +(486,404,l), +(96,513,l), +(78,430,l), +(377,355,l), +(47,280,l), +(28,193,l) +); +}, +{ +closed = 1; +nodes = ( +(420,93,l), +(437,174,l), +(24,174,l), +(7,93,l) +); +} +); +width = 532; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(478,281,l), +(517,465,l), +(84,543,l), +(57,413,l), +(374,375,l), +(41,338,l), +(12,203,l) +); +}, +{ +closed = 1; +nodes = ( +(431,63,l), +(460,199,l), +(11,199,l), +(-18,63,l) +); +} +); +width = 532; +} +); +unicode = 8805; +}, +{ +color = 6; +glyphname = lessequal; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(459,276,l), +(161,351,l), +(491,426,l), +(509,513,l), +(73,404,l), +(51,302,l), +(441,193,l) +); +}, +{ +closed = 1; +nodes = ( +(420,93,l), +(437,174,l), +(24,174,l), +(7,93,l) +); +} +); +width = 532; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(42,281,l), +(166,374,l), +(491,411,l), +(491,543,l), +(42,465,l) +); +}, +{ +closed = 1; +nodes = ( +(491,336,l), +(166,374,l), +(42,465,l), +(42,281,l), +(491,203,l) +); +}, +{ +closed = 1; +nodes = ( +(42,63,l), +(491,63,l), +(491,199,l), +(42,199,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(489,333,l), +(172,371,l), +(505,408,l), +(533,543,l), +(68,465,l), +(29,281,l), +(461,203,l) +); +}, +{ +closed = 1; +nodes = ( +(431,63,l), +(460,199,l), +(11,199,l), +(-18,63,l) +); +} +); +width = 532; +} +); +unicode = 8804; +}, +{ +color = 6; +glyphname = plusminus; +lastChange = "2024-03-21 14:13:25 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(468,318,l), +(485,399,l), +(72,399,l), +(55,318,l) +); +}, +{ +closed = 1; +nodes = ( +(413,62,l), +(430,143,l), +(17,143,l), +(0,62,l) +); +}, +{ +closed = 1; +nodes = ( +(279,202,l), +(345,515,l), +(260,515,l), +(194,202,l) +); +} +); +width = 532; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(486,322,l), +(515,458,l), +(66,458,l), +(37,322,l) +); +}, +{ +closed = 1; +nodes = ( +(427,44,l), +(456,179,l), +(7,179,l), +(-22,44,l) +); +}, +{ +closed = 1; +nodes = ( +(310,220,l), +(382,560,l), +(243,560,l), +(171,220,l) +); +} +); +width = 532; +} +); +unicode = 177; +}, +{ +color = 6; +glyphname = approxequal; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(60,363,l), +(94,375,o), +(128,383,o), +(162,383,c), +(242,383,o), +(291,343,o), +(371,343,c), +(405,343,o), +(439,351,o), +(473,363,c), +(473,444,l), +(439,432,o), +(405,424,o), +(371,424,c), +(291,424,o), +(242,464,o), +(162,464,c), +(128,464,o), +(94,456,o), +(60,444,c) +); +}, +{ +closed = 1; +nodes = ( +(60,163,l), +(94,175,o), +(128,183,o), +(162,183,c), +(242,183,o), +(291,143,o), +(371,143,c), +(405,143,o), +(439,151,o), +(473,163,c), +(473,244,l), +(439,232,o), +(405,224,o), +(371,224,c), +(291,224,o), +(242,264,o), +(162,264,c), +(128,264,o), +(94,256,o), +(60,244,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(366,143,o), +(398,151,o), +(435,163,c), +(452,244,l), +(415,232,o), +(380,224,o), +(346,224,c), +(266,224,o), +(221,264,o), +(141,264,c), +(107,264,o), +(75,256,o), +(39,244,c), +(22,163,l), +(58,175,o), +(94,183,o), +(128,183,c), +(208,183,o), +(252,143,o), +(332,143,c) +); +}, +{ +closed = 1; +nodes = ( +(409,343,o), +(441,351,o), +(477,363,c), +(494,444,l), +(458,432,o), +(422,424,o), +(388,424,c), +(308,424,o), +(264,464,o), +(184,464,c), +(150,464,o), +(118,456,o), +(81,444,c), +(64,363,l), +(101,375,o), +(136,383,o), +(170,383,c), +(250,383,o), +(295,343,o), +(375,343,c) +); +} +); +width = 532; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(42,353,l), +(83,365,o), +(121.333,373,o), +(162,373,c), +(242,373,o), +(291,333,o), +(371,333,c), +(411.667,333,o), +(450,341,o), +(491,353,c), +(491,484,l), +(450,472,o), +(411.667,464,o), +(371,464,c), +(291,464,o), +(242,504,o), +(162,504,c), +(121.333,504,o), +(83,496,o), +(42,484,c) +); +}, +{ +closed = 1; +nodes = ( +(42,123,l), +(83,135,o), +(121.333,143,o), +(162,143,c), +(242,143,o), +(291,103,o), +(371,103,c), +(411.667,103,o), +(450,111,o), +(491,123,c), +(491,254,l), +(450,242,o), +(411.667,234,o), +(371,234,c), +(291,234,o), +(242,274,o), +(162,274,c), +(121.333,274,o), +(83,266,o), +(42,254,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(366,103,o), +(401,111,o), +(444,123,c), +(472,254,l), +(428,242,o), +(388,234,o), +(348,234,c), +(268,234,o), +(222,274,o), +(142,274,c), +(102,274,o), +(67,266,o), +(23,254,c), +(-5,123,l), +(39,135,o), +(79,143,o), +(119,143,c), +(199,143,o), +(245,103,o), +(325,103,c) +); +}, +{ +closed = 1; +nodes = ( +(414,333,o), +(449,341,o), +(493,353,c), +(521,484,l), +(477,472,o), +(437,464,o), +(397,464,c), +(317,464,o), +(271,504,o), +(191,504,c), +(150,504,o), +(115,496,o), +(72,484,c), +(44,353,l), +(88,365,o), +(128,373,o), +(168,373,c), +(248,373,o), +(294,333,o), +(374,333,c) +); +} +); +width = 532; +} +); +unicode = 8776; +}, +{ +color = 6; +glyphname = asciitilde; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(408,295,o), +(455,357,o), +(453,455,c), +(379,455,l), +(377,402,o), +(362,378,o), +(327,378,c), +(281,378,o), +(247,455,o), +(168,455,c), +(92,455,o), +(45,393,o), +(47,295,c), +(121,295,l), +(123,348,o), +(138,372,o), +(173,372,c), +(221,372,o), +(254,295,o), +(332,295,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(114,295,l), +(122,348,o), +(140,372,o), +(177,372,c), +(228,372,o), +(250,295,o), +(333,295,c), +(411,295,o), +(464,357,o), +(476,455,c), +(402,455,l), +(393,402,o), +(375,378,o), +(338,378,c), +(289,378,o), +(267,455,o), +(183,455,c), +(105,455,o), +(52,393,o), +(40,295,c) +); +} +); +width = 500; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(428.182,277,o), +(483.388,355.562,o), +(481.057,475,c), +(367.057,475,l), +(365.249,432.325,o), +(355.057,416,o), +(323.057,416,c), +(276.057,416,o), +(237.541,475,o), +(156.057,475,c), +(67.495,475,o), +(12.984,396,o), +(15.057,277,c), +(129.057,277,l), +(131.057,319.567,o), +(141.057,336,o), +(173.057,336,c), +(223.057,336,o), +(259.708,277,o), +(340.057,277,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(121,277,l), +(126,320,o), +(139,336,o), +(169,336,c), +(221,336,o), +(256,277,o), +(336,277,c), +(424,277,o), +(486,348,o), +(503,475,c), +(389,475,l), +(384,432,o), +(370,416,o), +(340,416,c), +(291,416,o), +(256,475,o), +(174,475,c), +(85,475,o), +(24,404,o), +(7,277,c) +); +} +); +width = 495; +} +); +unicode = 126; +}, +{ +color = 6; +glyphname = logicalnot; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(456,263,l), +(473,344,l), +(60,344,l), +(43,263,l) +); +}, +{ +closed = 1; +nodes = ( +(420,92,l), +(473,344,l), +(388,344,l), +(335,92,l) +); +} +); +width = 532; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(468,236,l), +(497,371,l), +(48,371,l), +(19,236,l) +); +}, +{ +closed = 1; +nodes = ( +(434,74,l), +(497,371,l), +(358,371,l), +(295,74,l) +); +} +); +width = 532; +} +); +unicode = 172; +}, +{ +color = 6; +glyphname = asciicircum; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(436,277,l), +(356,690,l), +(272,690,l), +(16,278,l), +(113,278,l), +(298,586,l), +(352,277,l) +); +} +); +width = 479; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(174,690,l), +(251,537,l), +(336,277,l), +(480,277,l), +(326,690,l) +); +}, +{ +closed = 1; +nodes = ( +(166,278,l), +(251,537,l), +(326,690,l), +(174,690,l), +(20,278,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(466,277,l), +(400,690,l), +(248,690,l), +(6,278,l), +(159,278,l), +(299,537,l), +(329,277,l) +); +} +); +width = 499; +} +); +unicode = 94; +}, +{ +color = 6; +glyphname = infinity; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(699,120,o), +(774,201,o), +(774,303,c), +(774,405,o), +(699,486,o), +(594,486,c), +(390,486,o), +(395,196,o), +(249,196,cs), +(194,196,o), +(151,242,o), +(151,303,c), +(151,364,o), +(193.829,410,o), +(249,410,c), +(395,410,o), +(380,120,o), +(594,120,c) +); +}, +{ +closed = 1; +nodes = ( +(140,486,o), +(65,405,o), +(65,303,c), +(65,201,o), +(140,120,o), +(244,120,c), +(449,120,o), +(444,410,o), +(589,410,cs), +(645,410,o), +(688,364,o), +(688,303,c), +(688,242,o), +(645,196,o), +(589,196,c), +(444,196,o), +(459,486,o), +(244,486,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(417,120,o), +(458,410,o), +(601,410,cs), +(647,410,o), +(679,369,o), +(679,316,cs), +(679,245,o), +(621.982,196,o), +(560,196,cs), +(413,196,o), +(479,486,o), +(261,486,cs), +(146,486,o), +(57,391,o), +(57,281,cs), +(57,197,o), +(115,120,o), +(210,120,cs) +); +}, +{ +closed = 1; +nodes = ( +(675,120,o), +(764,215,o), +(764,325,cs), +(764,409,o), +(706,486,o), +(611,486,cs), +(405,486,o), +(364,196,o), +(220,196,cs), +(174,196,o), +(142,237,o), +(142,290,cs), +(142,361,o), +(199,410,o), +(261,410,cs), +(409,410,o), +(343,120,o), +(560,120,cs) +); +} +); +width = 838; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(730,100,o), +(814,190,o), +(814,303,c), +(814,416,o), +(730,506,o), +(611,506,c), +(386,506,o), +(398,226,o), +(255,226,cs), +(214,226,o), +(181,259,o), +(181,303,c), +(181,347,o), +(214,380,o), +(255,380,c), +(398,380,o), +(376,100,o), +(611,100,c) +); +}, +{ +closed = 1; +nodes = ( +(129,506,o), +(45,416,o), +(45,303,c), +(45,190,o), +(129,100,o), +(247,100,c), +(473,100,o), +(461,380,o), +(603,380,cs), +(645,380,o), +(678,347,o), +(678,303,c), +(678,259,o), +(645,226,o), +(603,226,c), +(461,226,o), +(483,506,o), +(247,506,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(441,100,o), +(469,380,o), +(607,380,cs), +(647,380,o), +(671,356,o), +(671,314,cs), +(671,264,o), +(626,226,o), +(582,226,cs), +(436,226,o), +(498,506,o), +(257,506,cs), +(126,506,o), +(35,405,o), +(35,281,cs), +(35,179,o), +(113,100,o), +(220,100,cs) +); +}, +{ +closed = 1; +nodes = ( +(715,100,o), +(806,201,o), +(806,325,cs), +(806,427,o), +(728,506,o), +(621,506,cs), +(401,506,o), +(373,226,o), +(234,226,cs), +(194,226,o), +(170,250,o), +(170,292,cs), +(170,342,o), +(215,380,o), +(259,380,cs), +(406,380,o), +(344,100,o), +(584,100,cs) +); +} +); +width = 858; +} +); +unicode = 8734; +}, +{ +color = 6; +glyphname = integral; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(73,-185,o), +(138,-138,o), +(163,-21,c), +(286,557,ls), +(297,610,o), +(328,636,o), +(376,636,c), +(399,636,o), +(419,630,o), +(439,621,c), +(457,708,l), +(431,718,o), +(403,725,o), +(371,725,c), +(277,725,o), +(212,678,o), +(187,561,cs), +(64,-17,l), +(53,-70,o), +(22,-96,o), +(-26,-96,c), +(-49,-96,o), +(-69,-90,o), +(-89,-81,c), +(-107,-168,l), +(-81,-178,o), +(-53,-185,o), +(-21,-185,c) +); +} +); +width = 429; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(220,582,o), +(245,603,o), +(291,603,c), +(317,603,o), +(340,598,o), +(364,592,c), +(364,715,l), +(332,724,o), +(301,730,o), +(260,730,c), +(143,730,o), +(71,665,o), +(71,536,c), +(71,0,l), +(220,0,l), +(220,541,l) +); +}, +{ +closed = 1; +nodes = ( +(358,407,l), +(358,530,l), +(5,530,l), +(5,407,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(81,-189,o), +(163,-143,o), +(190,-14,cs), +(308,541,ls), +(317,582,o), +(343,603,o), +(384,603,c), +(412,603,o), +(436,597,o), +(457,589,c), +(483,712,l), +(454,723,o), +(414,729,o), +(374,729,c), +(271,729,o), +(189,683,o), +(162,554,cs), +(44,-1,ls), +(35,-42,o), +(9,-63,o), +(-32,-63,c), +(-60,-63,o), +(-84,-57,o), +(-105,-49,c), +(-131,-172,l), +(-102,-183,o), +(-62,-189,o), +(-22,-189,c) +); +} +); +width = 445; +} +); +unicode = 8747; +}, +{ +color = 6; +glyphname = Ohm; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(650,0,l), +(650,96,l), +(390,96,l), +(390,0,l) +); +}, +{ +closed = 1; +nodes = ( +(490,180,l), +(390,180,l), +(390,0,l), +(490,0,l) +); +}, +{ +closed = 1; +nodes = ( +(466,593,o), +(544,521,o), +(544,412,cs), +(544,298,o), +(480,228.1,o), +(390,205,c), +(390,128,l), +(536,152.866,o), +(650,256.477,o), +(650,415,cs), +(650,585,o), +(527,700,o), +(345,700,c), +(163,700,o), +(40,585,o), +(40,415,cs), +(40,256.477,o), +(154,152.866,o), +(300,128,c), +(300,205,l), +(210,228.1,o), +(146,298,o), +(146,412,cs), +(146,521,o), +(224,593,o), +(345,593,c) +); +}, +{ +closed = 1; +nodes = ( +(300,96,l), +(40,96,l), +(40,0,l), +(300,0,l) +); +}, +{ +closed = 1; +nodes = ( +(300,0,l), +(300,180,l), +(200,180,l), +(200,0,l) +); +}, +{ +closed = 1; +nodes = ( +(650,0,l), +(670,96,l), +(410,96,l), +(390,0,l) +); +}, +{ +closed = 1; +nodes = ( +(528,180,l), +(428,180,l), +(390,0,l), +(490,0,l) +); +}, +{ +closed = 1; +nodes = ( +(320,96,l), +(60,96,l), +(40,0,l), +(300,0,l) +); +}, +{ +closed = 1; +nodes = ( +(300,0,l), +(338,180,l), +(238,180,l), +(200,0,l) +); +}, +{ +closed = 1; +nodes = ( +(575,593,o), +(637,539,o), +(637,455,cs), +(637,441,o), +(635,427,o), +(632,412,cs), +(607,298,o), +(528,228,o), +(434,205,c), +(417,128,l), +(568,153,o), +(705,256,o), +(738,415,cs), +(743,438,o), +(745,461,o), +(745,482,cs), +(745,615,o), +(651,700,o), +(494,700,c), +(312,700,o), +(164,585,o), +(128,415,cs), +(123,393,o), +(121,372,o), +(121,352,cs), +(121,229,o), +(206,150,o), +(327,128,c), +(344,205,l), +(273,224,o), +(227,275,o), +(227,356,cs), +(227,373,o), +(230,392,o), +(234,412,cs), +(257,521,o), +(350,593,o), +(471,593,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(272,205,l), +(201,224,o), +(155,272,o), +(155,373,c), +(155,493,o), +(251,593,o), +(398,593,c), +(502,593,o), +(565,539,o), +(565,445,c), +(565,314,o), +(468.321,231.015,o), +(362,205,c), +(345,128,l), +(518,147,o), +(673,286,o), +(673,462,c), +(673,602,o), +(561,700,o), +(404,700,c), +(198,700,o), +(49,552,o), +(49,369,c), +(49,236,o), +(134,160,o), +(255,128,c) +); +}, +{ +closed = 1; +nodes = ( +(228,0,l), +(248,96,l), +(-12,96,l), +(-32,0,l) +); +}, +{ +closed = 1; +nodes = ( +(228,0,l), +(266,180,l), +(166,180,l), +(128,0,l) +); +}, +{ +closed = 1; +nodes = ( +(418,0,l), +(456,180,l), +(356,180,l), +(318,0,l) +); +}, +{ +closed = 1; +nodes = ( +(578,0,l), +(598,96,l), +(338,96,l), +(318,0,l) +); +} +); +width = 690; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(325,147,l), +(40,147,l), +(40,0,l), +(325,0,l) +); +}, +{ +closed = 1; +nodes = ( +(325,0,l), +(325,225,l), +(200,225,l), +(200,0,l) +); +}, +{ +closed = 1; +nodes = ( +(670,0,l), +(670,147,l), +(385,147,l), +(385,0,l) +); +}, +{ +closed = 1; +nodes = ( +(510,225,l), +(385,225,l), +(385,0,l), +(510,0,l) +); +}, +{ +closed = 1; +nodes = ( +(166.969,704,o), +(40,589,o), +(40,425,cs), +(40,286,o), +(138,185,o), +(325,173,c), +(325,294,l), +(252.539,301,o), +(198,347,o), +(198,422,cs), +(198,504,o), +(261.074,558,o), +(355,558,c), +(449,558,o), +(512,504,o), +(512,422,cs), +(512,347,o), +(457,301,o), +(385,294,c), +(385,173,l), +(572,185,o), +(670,286,o), +(670,425,cs), +(670,589,o), +(543,704,o), +(355,704,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(315,294,l), +(255,300,o), +(213,335,o), +(213,393,cs), +(213,481,o), +(285,558,o), +(397,558,c), +(479,558,o), +(533,517,o), +(533,452,cs), +(533,375,o), +(459,302,o), +(375,294,c), +(350,173,l), +(568,187,o), +(695,323,o), +(695,470,c), +(695,605,o), +(572,704,o), +(412,704,c), +(192,704,o), +(52,551,o), +(52,387,c), +(52,277,o), +(130,188,o), +(290,173,c) +); +}, +{ +closed = 1; +nodes = ( +(253,0,l), +(284,147,l), +(-1,147,l), +(-32,0,l) +); +}, +{ +closed = 1; +nodes = ( +(253,0,l), +(301,225,l), +(176,225,l), +(128,0,l) +); +}, +{ +closed = 1; +nodes = ( +(438,0,l), +(486,225,l), +(361,225,l), +(313,0,l) +); +}, +{ +closed = 1; +nodes = ( +(598,0,l), +(629,147,l), +(344,147,l), +(313,0,l) +); +} +); +width = 711; +} +); +unicode = 8486; +}, +{ +color = 6; +glyphname = increment; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(57,0,l), +(429,690,l), +(327,690,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(488,0,l), +(508,96,l), +(40,96,l), +(20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(572,0,l), +(481,690,l), +(383,690,l), +(467,0,l) +); +} +); +width = 657; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(450,690,l), +(293,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(470,0,l), +(500,141,l), +(82,141,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(602,0,l), +(530,690,l), +(380,690,l), +(443,0,l) +); +} +); +width = 675; +} +); +unicode = 8710; +}, +{ +color = 6; +glyphname = product; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(120,-175,l), +(304,690,l), +(199,690,l), +(15,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(450,-175,l), +(634,690,l), +(529,690,l), +(345,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(713,594,l), +(734,690,l), +(99,690,l), +(78,594,l) +); +} +); +width = 684; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(143,-175,l), +(327,690,l), +(172,690,l), +(-12,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(479,-175,l), +(663,690,l), +(509,690,l), +(325,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(714,545,l), +(745,690,l), +(90,690,l), +(59,545,l) +); +} +); +width = 685; +} +); +unicode = 8719; +}, +{ +color = 6; +glyphname = summation; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(30,-175,l), +(580,-175,l), +(580,-79,l), +(70,-79,l), +(30,-123,l) +); +}, +{ +closed = 1; +nodes = ( +(70,594,l), +(580,594,l), +(580,690,l), +(30,690,l), +(30,638,l) +); +}, +{ +closed = 1; +nodes = ( +(415,287,l), +(157,638,l), +(30,638,l), +(324,238,l), +(324,277,l), +(30,-123,l), +(152,-123,l), +(415,235,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(65,-123,l), +(393,235,l), +(404,287,l), +(213,638,l), +(94,638,l), +(304,248,l), +(312,287,l), +(-68,-123,l) +); +}, +{ +closed = 1; +nodes = ( +(471,-175,l), +(491,-79,l), +(-19,-79,l), +(-68,-123,l), +(-79,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(634,594,l), +(655,690,l), +(105,690,l), +(94,638,l), +(124,594,l) +); +} +); +width = 610; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(23,-175,l), +(590,-175,l), +(590,-35,l), +(81,-35,l), +(23,-72,l) +); +}, +{ +closed = 1; +nodes = ( +(81,550,l), +(590,550,l), +(590,690,l), +(23,690,l), +(23,587,l) +); +}, +{ +closed = 1; +nodes = ( +(333,295,l), +(23,-72,l), +(202,-72,l), +(440,209,l), +(440,312,l), +(208,587,l), +(23,587,l), +(333,220,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(125,-72,l), +(412,209,l), +(434,312,l), +(251,587,l), +(76,587,l), +(314,230,l), +(330,305,l), +(-64,-72,l) +); +}, +{ +closed = 1; +nodes = ( +(481,-175,l), +(511,-35,l), +(2,-35,l), +(-64,-72,l), +(-86,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(635,550,l), +(665,690,l), +(98,690,l), +(76,587,l), +(126,550,l) +); +} +); +width = 613; +} +); +unicode = 8721; +}, +{ +color = 6; +glyphname = radical; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(326,0,l), +(161,530,l), +(56,530,l), +(225,0,l) +); +}, +{ +closed = 1; +nodes = ( +(379,0,l), +(597,690,l), +(496,690,l), +(286,0,l) +); +}, +{ +closed = 1; +nodes = ( +(5,443,l), +(133,443,l), +(133,530,l), +(5,530,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(306,0,l), +(671,690,l), +(563,690,l), +(206,0,l) +); +}, +{ +closed = 1; +nodes = ( +(246,0,l), +(194,530,l), +(96,530,l), +(152,0,l) +); +}, +{ +closed = 1; +nodes = ( +(154,443,l), +(173,530,l), +(45,530,l), +(26,443,l) +); +} +); +width = 601; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(5,407,l), +(160,407,l), +(160,530,l), +(5,530,l) +); +}, +{ +closed = 1; +nodes = ( +(358,0,l), +(224,530,l), +(63,530,l), +(212,0,l) +); +}, +{ +closed = 1; +nodes = ( +(446,0,l), +(637,690,l), +(480,690,l), +(309,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(374,0,l), +(712,690,l), +(545,690,l), +(227,0,l) +); +}, +{ +closed = 1; +nodes = ( +(276,0,l), +(255,530,l), +(104,530,l), +(140,0,l) +); +}, +{ +closed = 1; +nodes = ( +(175,407,l), +(201,530,l), +(46,530,l), +(20,407,l) +); +} +); +width = 637; +} +); +unicode = 8730; +}, +{ +color = 6; +glyphname = micro; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(56,-175,l), +(206,530,l), +(106,530,l), +(-44,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(301,-10,o), +(379,79,o), +(409,221,c), +(380,221,l), +(360,127,o), +(297,78,o), +(230,78,c), +(163,78,o), +(120,127,o), +(140,221,c), +(109,198,l), +(82,70,o), +(126,-10,o), +(213,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(433,0,l), +(546,530,l), +(446,530,l), +(333,0,l) +); +} +); +width = 570; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(400,530,l), +(400,0,l), +(500,0,l), +(500,530,l) +); +}, +{ +closed = 1; +nodes = ( +(160,530,l), +(60,530,l), +(60,-175,l), +(160,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(134,70,o), +(191,-10,o), +(278,-10,c), +(366,-10,o), +(429,79,o), +(429,221,c), +(400,221,l), +(400,127,o), +(347,78,o), +(280,78,c), +(213,78,o), +(160,127,o), +(160,221,c), +(134,198,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(93,-175,l), +(243,530,l), +(94,530,l), +(-56,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(285,-14,o), +(344,73,o), +(376,226,c), +(360,226,l), +(345,155,o), +(299,118,o), +(246,118,c), +(193,118,o), +(163,155,o), +(178,226,c), +(153,196,l), +(125,64,o), +(154,-14,o), +(219,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(461,0,l), +(574,530,l), +(425,530,l), +(312,0,l) +); +} +); +width = 586; +} +); +unicode = 181; +}, +{ +color = 6; +glyphname = partialdiff; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(225.332,344,o), +(155,270.772,o), +(155,185,cs), +(155,129,o), +(194,85,o), +(267,85,c), +(351,85,o), +(424,143,o), +(440,218,c), +(442,227,o), +(443,235,o), +(443,243,cs), +(443,300,o), +(398,344,o), +(327,344,c) +); +}, +{ +closed = 1; +nodes = ( +(467,307,o), +(473,331,o), +(481,365,c), +(489,404,o), +(493,438,o), +(493,467,cs), +(493,561,o), +(452,604,o), +(377,604,c), +(335,604,o), +(290,587,o), +(256,556,c), +(206,641,l), +(263,679,o), +(322,700,o), +(383,700,c), +(521,700,o), +(597,618,o), +(597,463,cs), +(597,422,o), +(592,376,o), +(581,325,c), +(532,96,o), +(409,-10,o), +(255,-10,c), +(125,-10,o), +(50,70,o), +(50,174,cs), +(50,321,o), +(177,437,o), +(315,437,c), +(404,437,o), +(472,391,o), +(472,297,cs), +(472,285,o), +(471,274,o), +(469,261,c), +(461,286,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(422,-10,o), +(552,192,o), +(552,463,c), +(552,618,o), +(479,700,o), +(341,700,c), +(280,700,o), +(218,679,o), +(161,641,c), +(206,557,l), +(248,588,o), +(293,603,o), +(332,603,c), +(407,603,o), +(448,553,o), +(448,466,c), +(448,412,o), +(429,331,o), +(416,286,c), +(423,261,l), +(425,274,o), +(428,282,o), +(428,294,cs), +(428,383,o), +(362,437,o), +(263,437,c), +(130,437,o), +(11,323,o), +(11,178,c), +(11,72,o), +(89,-10,o), +(218,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(153,85,o), +(116,131,o), +(116,189,c), +(116,273,o), +(177,346,o), +(274,346,c), +(350,346,o), +(398,300,o), +(398,243,cs), +(398,160,o), +(315,85,o), +(229,85,c) +); +} +); +width = 587; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(222,346,o), +(161,273,o), +(161,189,c), +(161,131,o), +(198,85,o), +(274,85,c), +(360,85,o), +(443,160,o), +(443,243,cs), +(443,300,o), +(395,346,o), +(319,346,c) +); +}, +{ +closed = 1; +nodes = ( +(473.839,330.936,o), +(493,412,o), +(493,466,c), +(493,553,o), +(452,603,o), +(377,603,c), +(338,603,o), +(293,588,o), +(251,557,c), +(206,641,l), +(263,679,o), +(325,700,o), +(386,700,c), +(524,700,o), +(597,618,o), +(597,463,c), +(597,192,o), +(467,-10,o), +(263,-10,c), +(134,-10,o), +(56,72,o), +(56,178,c), +(56,323,o), +(175,437,o), +(308,437,c), +(407,437,o), +(473,383,o), +(473,294,cs), +(473,282,o), +(470,274,o), +(468,261,c), +(461,286,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(461,-14,o), +(602,179,o), +(602,450,c), +(602,615,o), +(498,704,o), +(360,704,c), +(281,704,o), +(209,679,o), +(150,641,c), +(215,522,l), +(260,549,o), +(307,563,o), +(342,563,c), +(404,563,o), +(447,523,o), +(447,450,c), +(447,412,o), +(434,340,o), +(415,286,c), +(434,263,l), +(436,276,o), +(437,282,o), +(437,294,cs), +(437,366,o), +(364,441,o), +(258,441,c), +(107,441,o), +(6,328,o), +(6,191,c), +(6,77,o), +(94,-14,o), +(242,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(193,115,o), +(160,152,o), +(160,207,c), +(160,262,o), +(202,316,o), +(288,316,c), +(355,316,o), +(397,279,o), +(397,228,c), +(397,163,o), +(336,115,o), +(258,115,c) +); +} +); +width = 636; +} +); +unicode = 8706; +}, +{ +color = 6; +glyphname = percent; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(135,0,l), +(720,690,l), +(607,690,l), +(22,0,l) +); +}, +{ +closed = 1; +nodes = ( +(327,374,o), +(404,457,o), +(404,568,cs), +(404,640,o), +(351,700,o), +(263,700,cs), +(158,700,o), +(81,617,o), +(81,506,cs), +(81,434,o), +(134,374,o), +(222,374,cs) +); +}, +{ +closed = 1; +nodes = ( +(191,450,o), +(168,472,o), +(168,514,cs), +(168,568,o), +(208,624,o), +(257,624,cs), +(294,624,o), +(317,602,o), +(317,560,cs), +(317,506,o), +(277,450,o), +(228,450,cs) +); +}, +{ +closed = 1; +nodes = ( +(584,-10,o), +(661,73,o), +(661,184,cs), +(661,256,o), +(608,316,o), +(520,316,cs), +(415,316,o), +(338,233,o), +(338,122,cs), +(338,50,o), +(391,-10,o), +(479,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(448,66,o), +(425,88,o), +(425,130,cs), +(425,184,o), +(465,240,o), +(514,240,cs), +(551,240,o), +(574,218,o), +(574,176,cs), +(574,122,o), +(534,66,o), +(485,66,cs) +); +} +); +width = 739; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(359,633,o), +(294,700,o), +(199,700,cs), +(105,700,o), +(40,633,o), +(40,537,c), +(40,441,o), +(105,374,o), +(199,374,cs), +(294,374,o), +(359,441,o), +(359,537,c) +); +}, +{ +closed = 1; +nodes = ( +(127,592,o), +(158,624,o), +(199,624,cs), +(241,624,o), +(272,592,o), +(272,537,c), +(272,482,o), +(241,450,o), +(199,450,cs), +(158,450,o), +(127,482,o), +(127,537,c) +); +}, +{ +closed = 1; +nodes = ( +(699,249,o), +(634,316,o), +(539,316,cs), +(445,316,o), +(380,249,o), +(380,153,c), +(380,57,o), +(445,-10,o), +(539,-10,cs), +(634,-10,o), +(699,57,o), +(699,153,c) +); +}, +{ +closed = 1; +nodes = ( +(467,208,o), +(498,240,o), +(539,240,cs), +(581,240,o), +(612,208,o), +(612,153,c), +(612,98,o), +(581,66,o), +(539,66,cs), +(498,66,o), +(467,98,o), +(467,153,c) +); +}, +{ +closed = 1; +nodes = ( +(203,0,l), +(639,690,l), +(536,690,l), +(100,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(186,0,l), +(759,690,l), +(609,690,l), +(36,0,l) +); +}, +{ +closed = 1; +nodes = ( +(334,370,o), +(407,458,o), +(407,564,cs), +(407,645,o), +(345,704,o), +(261,704,cs), +(143,704,o), +(70,616,o), +(70,510,cs), +(70,429,o), +(132,370,o), +(216,370,cs) +); +}, +{ +closed = 1; +nodes = ( +(203,475,o), +(184,491,o), +(184,523,cs), +(184,562,o), +(211,599,o), +(247,599,cs), +(274,599,o), +(293,583,o), +(293,551,cs), +(293,512,o), +(266,475,o), +(230,475,cs) +); +}, +{ +closed = 1; +nodes = ( +(651,-14,o), +(724,74,o), +(724,180,cs), +(724,261,o), +(662,320,o), +(578,320,cs), +(460,320,o), +(387,232,o), +(387,126,cs), +(387,45,o), +(449,-14,o), +(533,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(520,91,o), +(501,107,o), +(501,139,cs), +(501,178,o), +(528,215,o), +(564,215,cs), +(591,215,o), +(610,199,o), +(610,167,cs), +(610,128,o), +(583,91,o), +(547,91,cs) +); +} +); +width = 794; +} +); +unicode = 37; +}, +{ +color = 6; +glyphname = perthousand; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(135,0,l), +(720,690,l), +(607,690,l), +(22,0,l) +); +}, +{ +closed = 1; +nodes = ( +(327,374,o), +(404,457,o), +(404,568,cs), +(404,640,o), +(351,700,o), +(263,700,cs), +(158,700,o), +(81,617,o), +(81,506,cs), +(81,434,o), +(134,374,o), +(222,374,cs) +); +}, +{ +closed = 1; +nodes = ( +(191,450,o), +(168,472,o), +(168,514,cs), +(168,568,o), +(208,624,o), +(257,624,cs), +(294,624,o), +(317,602,o), +(317,560,cs), +(317,506,o), +(277,450,o), +(228,450,cs) +); +}, +{ +closed = 1; +nodes = ( +(584,-10,o), +(661,73,o), +(661,184,cs), +(661,256,o), +(608,316,o), +(520,316,cs), +(415,316,o), +(338,233,o), +(338,122,cs), +(338,50,o), +(391,-10,o), +(479,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(448,66,o), +(425,88,o), +(425,130,cs), +(425,184,o), +(465,240,o), +(514,240,cs), +(551,240,o), +(574,218,o), +(574,176,cs), +(574,122,o), +(534,66,o), +(485,66,cs) +); +}, +{ +closed = 1; +nodes = ( +(934,-10,o), +(1011,73,o), +(1011,184,cs), +(1011,256,o), +(958,316,o), +(870,316,cs), +(765,316,o), +(688,233,o), +(688,122,cs), +(688,50,o), +(741,-10,o), +(829,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(798,66,o), +(775,88,o), +(775,130,cs), +(775,184,o), +(815,240,o), +(864,240,cs), +(901,240,o), +(924,218,o), +(924,176,cs), +(924,122,o), +(884,66,o), +(835,66,cs) +); +} +); +width = 1089; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(359,633,o), +(294,700,o), +(199,700,cs), +(105,700,o), +(40,633,o), +(40,537,c), +(40,441,o), +(105,374,o), +(199,374,cs), +(294,374,o), +(359,441,o), +(359,537,c) +); +}, +{ +closed = 1; +nodes = ( +(127,592,o), +(158,624,o), +(199,624,cs), +(241,624,o), +(272,592,o), +(272,537,c), +(272,482,o), +(241,450,o), +(199,450,cs), +(158,450,o), +(127,482,o), +(127,537,c) +); +}, +{ +closed = 1; +nodes = ( +(699,249,o), +(634,316,o), +(539,316,cs), +(445,316,o), +(380,249,o), +(380,153,c), +(380,57,o), +(445,-10,o), +(539,-10,cs), +(634,-10,o), +(699,57,o), +(699,153,c) +); +}, +{ +closed = 1; +nodes = ( +(467,208,o), +(498,240,o), +(539,240,cs), +(581,240,o), +(612,208,o), +(612,153,c), +(612,98,o), +(581,66,o), +(539,66,cs), +(498,66,o), +(467,98,o), +(467,153,c) +); +}, +{ +closed = 1; +nodes = ( +(203,0,l), +(639,690,l), +(536,690,l), +(100,0,l) +); +}, +{ +closed = 1; +nodes = ( +(1049,249,o), +(984,316,o), +(889,316,cs), +(795,316,o), +(730,249,o), +(730,153,c), +(730,57,o), +(795,-10,o), +(889,-10,cs), +(984,-10,o), +(1049,57,o), +(1049,153,c) +); +}, +{ +closed = 1; +nodes = ( +(817,208,o), +(848,240,o), +(889,240,cs), +(931,240,o), +(962,208,o), +(962,153,c), +(962,98,o), +(931,66,o), +(889,66,cs), +(848,66,o), +(817,98,o), +(817,153,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(186,0,l), +(759,690,l), +(609,690,l), +(36,0,l) +); +}, +{ +closed = 1; +nodes = ( +(334,370,o), +(407,458,o), +(407,564,cs), +(407,645,o), +(345,704,o), +(261,704,cs), +(143,704,o), +(70,616,o), +(70,510,cs), +(70,429,o), +(132,370,o), +(216,370,cs) +); +}, +{ +closed = 1; +nodes = ( +(203,475,o), +(184,491,o), +(184,523,cs), +(184,562,o), +(211,599,o), +(247,599,cs), +(274,599,o), +(293,583,o), +(293,551,cs), +(293,512,o), +(266,475,o), +(230,475,cs) +); +}, +{ +closed = 1; +nodes = ( +(651,-14,o), +(724,74,o), +(724,180,cs), +(724,261,o), +(662,320,o), +(578,320,cs), +(460,320,o), +(387,232,o), +(387,126,cs), +(387,45,o), +(449,-14,o), +(533,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(520,91,o), +(501,107,o), +(501,139,cs), +(501,178,o), +(528,215,o), +(564,215,cs), +(591,215,o), +(610,199,o), +(610,167,cs), +(610,128,o), +(583,91,o), +(547,91,cs) +); +}, +{ +closed = 1; +nodes = ( +(1019,-14,o), +(1092,74,o), +(1092,180,cs), +(1092,261,o), +(1030,320,o), +(946,320,cs), +(828,320,o), +(755,232,o), +(755,126,cs), +(755,45,o), +(817,-14,o), +(901,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(888,91,o), +(869,107,o), +(869,139,cs), +(869,178,o), +(896,215,o), +(932,215,cs), +(959,215,o), +(978,199,o), +(978,167,cs), +(978,128,o), +(951,91,o), +(915,91,cs) +); +} +); +width = 1162; +} +); +unicode = 8240; +}, +{ +color = 6; +glyphname = lozenge; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(322,690,l), +(220,690,l), +(367,250,l), +(228,-175,l), +(322,-175,l), +(472,257,l) +); +}, +{ +closed = 1; +nodes = ( +(170,-175,l), +(272,-175,l), +(125,265,l), +(264,690,l), +(170,690,l), +(20,257,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(212,-175,l), +(453,255,l), +(396,690,l), +(300,690,l), +(347,256,l), +(112,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(156,-175,l), +(108,259,l), +(344,690,l), +(244,690,l), +(3,259,l), +(60,-175,l) +); +} +); +width = 492; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(387,690,l), +(232,690,l), +(366,249,l), +(241,-175,l), +(387,-175,l), +(526,258,l) +); +}, +{ +closed = 1; +nodes = ( +(300,690,l), +(154,690,l), +(15,257,l), +(154,-175,l), +(309,-175,l), +(175,266,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(277,-175,l), +(506,255,l), +(461,690,l), +(314,690,l), +(346,259,l), +(123,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(191,-175,l), +(159,256,l), +(382,690,l), +(228,690,l), +(-1,260,l), +(44,-175,l) +); +} +); +width = 541; +} +); +unicode = 9674; +}, +{ +color = 6; +glyphname = dieresiscomb; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (290,530); +}, +{ +name = top; +pos = (329,715); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(438,602,o), +(464,627,o), +(464,662,c), +(464,694,o), +(443,715,o), +(412,715,c), +(377,715,o), +(352,690,o), +(352,653,c), +(352,623,o), +(373,602,o), +(403,602,c) +); +}, +{ +closed = 1; +nodes = ( +(256,602,o), +(282,627,o), +(282,662,c), +(282,694,o), +(261,715,o), +(230,715,c), +(195,715,o), +(170,690,o), +(170,653,c), +(170,623,o), +(191,602,o), +(221,602,c) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (290,530); +}, +{ +name = top; +pos = (332,728); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(452,588,o), +(486,618,o), +(486,664,c), +(486,703,o), +(461,728,o), +(420,728,c), +(378,728,o), +(344,698,o), +(344,652,c), +(344,613,o), +(369,588,o), +(410,588,c) +); +}, +{ +closed = 1; +nodes = ( +(256,588,o), +(290,618,o), +(290,664,c), +(290,703,o), +(265,728,o), +(224,728,c), +(182,728,o), +(148,698,o), +(148,652,c), +(148,613,o), +(173,588,o), +(214,588,c) +); +} +); +width = 500; +} +); +unicode = 776; +}, +{ +color = 6; +glyphname = dotaccentcomb; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (290,530); +}, +{ +name = top; +pos = (331,725); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(285,602,o), +(312,627,o), +(312,663,cs), +(312,700,o), +(285,725,o), +(250,725,cs), +(215,725,o), +(188,700,o), +(188,663,cs), +(188,627,o), +(215,602,o), +(250,602,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(351,602,o), +(379,629,o), +(379,667,c), +(379,702,o), +(356,725,o), +(322,725,c), +(284,725,o), +(257,698,o), +(257,657,c), +(257,625,o), +(280,602,o), +(313,602,c) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (290,530); +}, +{ +name = top; +pos = (334,738); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(418,588,o), +(458,619,o), +(467,664,cs), +(477,710,o), +(450,738,o), +(407,738,cs), +(363,738,o), +(325,710,o), +(315,664,cs), +(306,619,o), +(331,588,o), +(375,588,cs) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(358,588,o), +(394,620,o), +(394,669,c), +(394,711,o), +(367,738,o), +(323,738,c), +(278,738,o), +(242,706,o), +(242,656,c), +(242,615,o), +(269,588,o), +(313,588,c) +); +} +); +width = 500; +} +); +unicode = 775; +}, +{ +color = 6; +glyphname = gravecomb; +lastChange = "2024-03-22 10:55:36 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (290,530); +}, +{ +name = top; +pos = (284,725); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(235,725,l), +(105,725,l), +(215,585,l), +(305,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(350,585,l), +(310,725,l), +(189,725,l), +(269,585,l) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (236,530); +}, +{ +name = top; +pos = (279,730); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(238,730,l), +(81,730,l), +(206,585,l), +(318,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(318,585,l), +(238,730,l), +(81,730,l), +(206,585,l) +); +} +); +width = 499; +} +); +unicode = 768; +}, +{ +color = 6; +glyphname = acutecomb; +lastChange = "2024-03-21 14:49:53 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (301,530); +}, +{ +name = top; +pos = (373,725); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(285,585,l), +(395,725,l), +(265,725,l), +(195,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(334,585,l), +(471,725,l), +(345,725,l), +(245,585,l) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (278,530); +}, +{ +name = top; +pos = (321,730); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(294,585,l), +(419,730,l), +(262,730,l), +(182,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(334,585,l), +(459,730,l), +(302,730,l), +(222,585,l) +); +} +); +width = 499; +} +); +unicode = 769; +}, +{ +color = 6; +glyphname = hungarumlautcomb; +lastChange = "2024-03-21 14:48:20 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (289,530); +}, +{ +name = top; +pos = (382,725); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(230,585,l), +(300,725,l), +(195,725,l), +(145,585,l) +); +}, +{ +closed = 1; +nodes = ( +(360,585,l), +(460,725,l), +(345,725,l), +(275,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(410,585,l), +(540,725,l), +(427,725,l), +(327,585,l) +); +}, +{ +closed = 1; +nodes = ( +(278,585,l), +(378,725,l), +(275,725,l), +(195,585,l) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (288,530); +}, +{ +name = top; +pos = (396,730); +} +); +background = { +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(238,585,l), +(322,730,l), +(182,730,l), +(131,585,l) +); +}, +{ +closed = 1; +nodes = ( +(375,585,l), +(500,730,l), +(353,730,l), +(269,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(425,585,l), +(581,730,l), +(434,730,l), +(319,585,l) +); +}, +{ +closed = 1; +nodes = ( +(288,585,l), +(403,730,l), +(263,730,l), +(181,585,l) +); +} +); +width = 499; +} +); +unicode = 779; +}, +{ +color = 6; +glyphname = caroncomb.alt; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _topright; +pos = (262,715); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(284,442,l), +(386,715,l), +(282,715,l), +(224,442,l) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _topright; +pos = (248,715); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(291,408,l), +(418,715,l), +(268,715,l), +(203,408,l) +); +} +); +width = 499; +} +); +}, +{ +color = 6; +glyphname = circumflexcomb; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (288,530); +}, +{ +name = top; +pos = (330,725); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(306,725,l), +(198,725,l), +(316,585,l), +(406,585,l) +); +}, +{ +closed = 1; +nodes = ( +(184,585,l), +(302,725,l), +(194,725,l), +(94,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(238,585,l), +(342,685,l), +(349,725,l), +(274,725,l), +(144,585,l) +); +}, +{ +closed = 1; +nodes = ( +(456,585,l), +(386,725,l), +(311,725,l), +(312,685,l), +(374,585,l) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (288,530); +}, +{ +name = top; +pos = (331,730); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(320,730,l), +(184,730,l), +(312,585,l), +(422,585,l) +); +}, +{ +closed = 1; +nodes = ( +(188,585,l), +(316,730,l), +(180,730,l), +(78,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(244,585,l), +(355,686,l), +(367,730,l), +(261,730,l), +(128,585,l) +); +}, +{ +closed = 1; +nodes = ( +(472,585,l), +(401,730,l), +(295,730,l), +(300,686,l), +(368,585,l) +); +} +); +width = 499; +} +); +unicode = 770; +}, +{ +color = 6; +glyphname = caroncomb; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (289,530); +}, +{ +name = top; +pos = (330,725); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(356,585,l), +(486,725,l), +(392,725,l), +(288,625,l), +(281,585,l) +); +}, +{ +closed = 1; +nodes = ( +(319,585,l), +(318,625,l), +(256,725,l), +(174,725,l), +(244,585,l) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (288,530); +}, +{ +name = top; +pos = (331,730); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(370,585,l), +(503,730,l), +(387,730,l), +(276,629,l), +(264,585,l) +); +}, +{ +closed = 1; +nodes = ( +(336,585,l), +(331,629,l), +(263,730,l), +(159,730,l), +(230,585,l) +); +} +); +width = 499; +} +); +unicode = 780; +}, +{ +color = 6; +glyphname = brevecomb; +lastChange = "2024-03-22 12:29:02 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (289,530); +}, +{ +name = top; +pos = (330,725); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(205,660,o), +(181,684,o), +(180,725,c), +(110,725,l), +(112,639,o), +(157,585,o), +(250,585,c), +(343,585,o), +(388,639,o), +(390,725,c), +(320,725,l), +(319,684,o), +(295,660,o), +(250,660,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(405,585,o), +(452,639,o), +(470,725,c), +(400,725,l), +(392,684,o), +(361,660,o), +(314,660,c), +(276,660,o), +(258,677,o), +(258,707,cs), +(258,712,o), +(259,719,o), +(260,725,c), +(190,725,l), +(188,713,o), +(187,702,o), +(187,692,cs), +(187,629,o), +(233,585,o), +(310,585,c) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (288,530); +}, +{ +name = top; +pos = (331,730); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(213,671,o), +(193,693,o), +(192,730,c), +(101,730,l), +(103,639,o), +(151,585,o), +(250,585,c), +(349,585,o), +(397,639,o), +(399,730,c), +(308,730,l), +(307,693,o), +(287,671,o), +(250,671,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(415,584,o), +(461,638,o), +(480,729,c), +(389,729,l), +(382,692,o), +(354,670,o), +(317,670,c), +(286,670,o), +(271,685,o), +(271,712,cs), +(271,717,o), +(272,723,o), +(273,729,c), +(182,729,l), +(180,717,o), +(179,707,o), +(179,696,cs), +(179,625,o), +(229,584,o), +(310,584,c) +); +} +); +width = 499; +} +); +unicode = 774; +}, +{ +color = 6; +glyphname = ringcomb; +lastChange = "2024-03-21 14:16:43 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (288,530); +}, +{ +name = top; +pos = (323,728); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(229,630,o), +(216,646,o), +(216,666,cs), +(216,687,o), +(229,703,o), +(250,703,cs), +(271,703,o), +(284,687,o), +(284,666,cs), +(284,646,o), +(271,630,o), +(250,630,cs) +); +}, +{ +closed = 1; +nodes = ( +(305.88,575,o), +(347,610.977,o), +(347,666,cs), +(347,722.046,o), +(305.88,758,o), +(250,758,cs), +(194.12,758,o), +(153,722.046,o), +(153,666,cs), +(153,610.977,o), +(194.12,575,o), +(250,575,cs) +); +}, +{ +closed = 1; +nodes = ( +(363,630,o), +(353,646,o), +(358,666,cs), +(362,687,o), +(378,703,o), +(399,703,cs), +(420,703,o), +(430,687,o), +(426,666,cs), +(421,646,o), +(405,630,o), +(384,630,cs) +); +}, +{ +closed = 1; +nodes = ( +(428,575,o), +(477,611,o), +(489,666,cs), +(500,722,o), +(467,758,o), +(411,758,cs), +(355,758,o), +(306,722,o), +(295,666,cs), +(283,611,o), +(316,575,o), +(372,575,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(370,575,o), +(414,622,o), +(414,680,cs), +(414,728,o), +(380,758,o), +(330,758,cs), +(265,758,o), +(221,711,o), +(221,653,cs), +(221,605,o), +(255,575,o), +(305,575,cs) +); +}, +{ +closed = 1; +nodes = ( +(292,630,o), +(283,641,o), +(283,658,cs), +(283,681,o), +(300,703,o), +(324,703,cs), +(343,703,o), +(352,692,o), +(352,675,cs), +(352,652,o), +(335,630,o), +(311,630,cs) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (289,530); +}, +{ +name = top; +pos = (340,738); +} +); +background = { +anchors = ( +{ +name = _top; +pos = (363,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(368,640,o), +(359,653,o), +(362,670,cs), +(366,689,o), +(381,702,o), +(399,702,cs), +(417,702,o), +(426,689,o), +(422,670,cs), +(419,653,o), +(404,640,o), +(386,640,cs) +); +}, +{ +closed = 1; +nodes = ( +(435,575,o), +(484,614,o), +(495,670,cs), +(508,728,o), +(476,767,o), +(413,767,cs), +(350,767,o), +(302,728,o), +(289,670,cs), +(278,614,o), +(309,575,o), +(372,575,cs) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(379,575,o), +(426,624,o), +(426,682,cs), +(426,733,o), +(389,768,o), +(330,768,cs), +(260,768,o), +(213,719,o), +(213,661,cs), +(213,610,o), +(250,575,o), +(309,575,cs) +); +}, +{ +closed = 1; +nodes = ( +(296,640,o), +(288,651,o), +(288,666,cs), +(288,685,o), +(302,703,o), +(324,703,cs), +(343,703,o), +(351,692,o), +(351,677,cs), +(351,658,o), +(337,640,o), +(315,640,cs) +); +} +); +width = 499; +} +); +unicode = 778; +}, +{ +color = 6; +glyphname = tildecomb; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (289,530); +}, +{ +name = top; +pos = (330,725); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(361,585,o), +(394,639,o), +(400,725,c), +(332,725,l), +(331,686,o), +(322,668,o), +(303,668,c), +(272,668,o), +(251,725,o), +(192,725,c), +(139,725,o), +(106,671,o), +(100,585,c), +(168,585,l), +(169,624,o), +(178,642,o), +(197,642,c), +(229,642,o), +(249,585,o), +(308,585,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(221,585,l), +(225,624,o), +(234,642,o), +(259,642,c), +(291,642,o), +(307,585,o), +(368,585,c), +(431,585,o), +(465,639,o), +(477,725,c), +(409,725,l), +(406,686,o), +(396,668,o), +(371,668,c), +(340,668,o), +(323,725,o), +(262,725,c), +(199,725,o), +(166,671,o), +(153,585,c) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (289,530); +}, +{ +name = top; +pos = (332,730); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(366,585,o), +(406,641,o), +(409,730,c), +(325,730,l), +(322,702,o), +(310,690,o), +(295,690,c), +(267,690,o), +(246,730,o), +(188,730,c), +(133,730,o), +(93,674,o), +(91,585,c), +(175,585,l), +(178,612,o), +(190,624,o), +(205,624,c), +(235,624,o), +(254,585,o), +(312,585,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(226,585,l), +(227,612,o), +(242,624,o), +(261,624,c), +(295,624,o), +(310,585,o), +(368,585,c), +(430,585,o), +(477,641,o), +(491,730,c), +(407,730,l), +(406,702,o), +(392,690,o), +(373,690,c), +(341,690,o), +(323,730,o), +(265,730,c), +(202,730,o), +(155,674,o), +(142,585,c) +); +} +); +width = 499; +} +); +unicode = 771; +}, +{ +color = 6; +glyphname = macroncomb; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (290,530); +}, +{ +name = top; +pos = (327,705); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(447,621,l), +(465,705,l), +(189,705,l), +(171,621,l) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (289,530); +}, +{ +name = top; +pos = (329,718); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(451,603,l), +(476,718,l), +(182,718,l), +(157,603,l) +); +} +); +width = 498; +} +); +unicode = 772; +}, +{ +color = 6; +glyphname = commaaccentcomb; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (177,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(215,-72,o), +(188,-97,o), +(188,-133,cs), +(188,-170,o), +(215,-195,o), +(250,-195,cs), +(285,-195,o), +(312,-170,o), +(312,-133,cs), +(312,-97,o), +(285,-72,o), +(250,-72,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(135,-275,l), +(219,-72,l), +(115,-72,l), +(72,-275,l) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (177,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(326,-73,o), +(292,-43,o), +(249,-43,cs), +(206,-43,o), +(174,-73,o), +(174,-119,cs), +(174,-164,o), +(206,-193,o), +(249,-193,c), +(231,-175,l), +(193,-270,l), +(266,-270,l), +(298,-215,ls), +(318,-181,o), +(326,-156,o), +(326,-124,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(148,-270,l), +(236,-54,l), +(104,-54,l), +(58,-270,l) +); +} +); +width = 499; +} +); +unicode = 806; +}, +{ +color = 6; +glyphname = cedillacomb; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (179,0); +}, +{ +name = bottom; +pos = (139,-185); +} +); +background = { +anchors = ( +{ +name = _bottom; +pos = (250,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(264,-43,l), +(270,9,l), +(214,11,l), +(201,-73,l), +(212,-71,o), +(219,-70,o), +(230,-70,c), +(254,-70,o), +(268,-79,o), +(268,-96,c), +(268,-110,o), +(255,-119,o), +(234,-119,c), +(214,-119,o), +(198,-114,o), +(180,-105,c), +(167,-169,l), +(192,-180,o), +(217,-185,o), +(243,-185,c), +(301,-185,o), +(337,-151,o), +(337,-106,cs), +(337,-57,o), +(300,-29,o), +(252,-29,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(198.235,-185,o), +(242,-144,o), +(242,-96,c), +(242,-55,o), +(213,-29,o), +(172,-29,c), +(181,-43,l), +(198,9,l), +(142,11,l), +(111,-73,l), +(123,-71,o), +(130,-70,o), +(141,-70,c), +(163,-70,o), +(174,-79,o), +(174,-94,c), +(174,-108,o), +(159.706,-119,o), +(135,-119,c), +(115,-119,o), +(100,-114,o), +(84,-105,c), +(57,-169,l), +(80,-180,o), +(104,-185,o), +(130,-185,c) +); +} +); +width = 498; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (180,0); +}, +{ +name = bottom; +pos = (139,-190); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(270,-43,l), +(276,9,l), +(208,11,l), +(194,-80,l), +(205,-76,o), +(215,-74,o), +(227,-74,c), +(250,-74,o), +(260,-82,o), +(260,-92,c), +(260,-103,o), +(250,-109,o), +(230,-109,c), +(210,-109,o), +(187,-105,o), +(166,-94,c), +(154,-174,l), +(181,-185,o), +(212,-190,o), +(240,-190,c), +(318,-190,o), +(352,-154,o), +(352,-106,cs), +(352,-57,o), +(316,-29,o), +(258,-29,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(217.765,-190,o), +(257,-146,o), +(257,-97,c), +(257,-57,o), +(228,-29,o), +(178,-29,c), +(187,-43,l), +(204,9,l), +(136,11,l), +(103,-80,l), +(115,-76,o), +(125,-74,o), +(137,-74,c), +(157,-74,o), +(167,-80,o), +(167,-91,c), +(167,-103,o), +(156,-109,o), +(133,-109,c), +(113,-109,o), +(91,-105,o), +(72,-94,c), +(43,-174,l), +(68,-185,o), +(98,-190,o), +(126,-190,c) +); +} +); +width = 499; +} +); +unicode = 807; +}, +{ +color = 6; +glyphname = ogonekcomb; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _ogonek; +pos = (230,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(136,-37,o), +(113,-69,o), +(113,-111,c), +(113,-153,o), +(147,-185,o), +(212,-185,cs), +(241,-185,o), +(276,-176,o), +(304,-165,c), +(295,-84,l), +(272,-94,o), +(238,-106,o), +(218,-106,c), +(205,-106,o), +(197,-101,o), +(197,-89,c), +(197,-65,o), +(234,-34,o), +(304,0,c), +(204,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(136,-185,o), +(173,-176,o), +(195,-165,c), +(203,-84,l), +(178,-96,o), +(147,-106,o), +(121,-106,c), +(110,-106,o), +(104,-101,o), +(104,-93,cs), +(104,-72,o), +(141,-38,o), +(230,0,c), +(130,0,l), +(45,-35,o), +(16,-74,o), +(16,-118,c), +(16,-155,o), +(42,-185,o), +(104,-185,c) +); +} +); +width = 498; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (266,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(159,-37,o), +(131,-69,o), +(131,-111,c), +(131,-156,o), +(170,-190,o), +(242,-190,cs), +(273,-190,o), +(309,-183,o), +(339,-170,c), +(330,-75,l), +(310,-87,o), +(284,-96,o), +(265,-96,c), +(250,-96,o), +(242,-89,o), +(242,-79,c), +(242,-60,o), +(270,-31,o), +(339,0,c), +(234,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(164,-190,o), +(199,-183,o), +(230,-170,c), +(241,-75,l), +(219,-87,o), +(191,-96,o), +(172,-96,c), +(159,-96,o), +(152,-90,o), +(152,-82,cs), +(152,-65,o), +(176.588,-36.471,o), +(266,0,c), +(161,0,l), +(68,-36,o), +(37,-82,o), +(37,-121,c), +(37,-158,o), +(67,-190,o), +(136,-190,c) +); +} +); +width = 499; +} +); +unicode = 808; +}, +{ +color = 6; +glyphname = commaaccentcomb.alt; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (290,530); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(352,602,l), +(395,805,l), +(332,805,l), +(248,602,l) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (288,530); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(174,603,o), +(207,573,o), +(250,573,cs), +(293,573,o), +(326,603,o), +(326,649,cs), +(326,694,o), +(293,723,o), +(250,723,c), +(268,705,l), +(306,800,l), +(233,800,l), +(201,745,ls), +(181,711,o), +(174,686,o), +(174,654,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(361,584,l), +(407,800,l), +(317,800,l), +(229,584,l) +); +} +); +width = 499; +} +); +}, +{ +color = 6; +glyphname = dieresiscomb.case; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (322.664,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(477,742,o), +(503,767,o), +(503,802,c), +(503,834,o), +(482,855,o), +(451,855,c), +(416,855,o), +(391,830,o), +(391,793,c), +(391,763,o), +(412,742,o), +(442,742,c) +); +}, +{ +closed = 1; +nodes = ( +(274,742,o), +(300,767,o), +(300,802,c), +(300,834,o), +(279,855,o), +(248,855,c), +(213,855,o), +(188,830,o), +(188,793,c), +(188,763,o), +(209,742,o), +(239,742,c) +); +} +); +width = 498; +}, +{ +anchors = ( +{ +name = _top; +pos = (323.664,690); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(496,742,o), +(528,770,o), +(528,813,c), +(528,850,o), +(504,873,o), +(463,873,c), +(421,873,o), +(389,845,o), +(389,802,c), +(389,765,o), +(412,742,o), +(454,742,c) +); +}, +{ +closed = 1; +nodes = ( +(276,742,o), +(308,770,o), +(308,813,c), +(308,850,o), +(284,873,o), +(243,873,c), +(201,873,o), +(169,845,o), +(169,802,c), +(169,765,o), +(192,742,o), +(234,742,c) +); +} +); +width = 499; +} +); +}, +{ +color = 6; +glyphname = dotaccentcomb.case; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (323.664,690); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(441,735,o), +(474,760,o), +(481,796,cs), +(489,833,o), +(467,858,o), +(432,858,cs), +(397,858,o), +(365,833,o), +(357,796,cs), +(350,760,o), +(371,735,o), +(406,735,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(379,735,o), +(407,759.923,o), +(407,795,cs), +(407,826.983,o), +(384,848,o), +(350,848,cs), +(312,848,o), +(285,822.985,o), +(285,785,cs), +(285,755.909,o), +(308,735,o), +(341,735,cs) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (323.664,690); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(451,741,o), +(490,770,o), +(499,812,cs), +(508,855,o), +(480,882,o), +(437,882,cs), +(393,882,o), +(356,855,o), +(347,812,cs), +(338,770,o), +(364,741,o), +(408,741,cs) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(390,741,o), +(426,771.025,o), +(426,817,cs), +(426,855.957,o), +(399,881,o), +(355,881,cs), +(310,881,o), +(274,850.951,o), +(274,804,cs), +(274,766.015,o), +(301,741,o), +(345,741,cs) +); +} +); +width = 499; +} +); +}, +{ +color = 6; +glyphname = gravecomb.case; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (323.664,690); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(213,845,l), +(78,845,l), +(215,735,l), +(313,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(392,735,l), +(316,845,l), +(191,845,l), +(304,735,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (324.664,690); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(218,850,l), +(49,850,l), +(200,735,l), +(321,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(400,735,l), +(322,850,l), +(161,850,l), +(290,735,l) +); +} +); +width = 501; +} +); +}, +{ +color = 6; +glyphname = acutecomb.case; +lastChange = "2024-03-21 14:21:18 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (323,690); +}, +{ +name = top; +pos = (408,845); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(285,735,l), +(422,845,l), +(287,845,l), +(187,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(368,735,l), +(526,845,l), +(391,845,l), +(267,735,l) +); +} +); +width = 498; +}, +{ +anchors = ( +{ +name = _top; +pos = (322,690); +}, +{ +name = top; +pos = (422,850); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(300,735,l), +(451,850,l), +(282,850,l), +(179,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(384,735,l), +(560,850,l), +(387,850,l), +(259,735,l) +); +} +); +width = 498; +} +); +}, +{ +color = 6; +glyphname = hungarumlautcomb.case; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (323,690); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(373,735,l), +(510,845,l), +(381,845,l), +(281,735,l) +); +}, +{ +closed = 1; +nodes = ( +(227,735,l), +(324,845,l), +(206,845,l), +(135,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(454,735,l), +(613,845,l), +(489,845,l), +(365,735,l) +); +}, +{ +closed = 1; +nodes = ( +(307,735,l), +(428,845,l), +(312,845,l), +(219,735,l) +); +} +); +width = 498; +}, +{ +anchors = ( +{ +name = _top; +pos = (323,690); +} +); +background = { +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(386,735,l), +(537,850,l), +(384,850,l), +(275,735,l) +); +}, +{ +closed = 1; +nodes = ( +(235,735,l), +(343,850,l), +(200,850,l), +(129,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(470,735,l), +(646,850,l), +(491,850,l), +(357,735,l) +); +}, +{ +closed = 1; +nodes = ( +(317,735,l), +(450,850,l), +(305,850,l), +(209,735,l) +); +} +); +width = 498; +} +); +}, +{ +color = 6; +glyphname = circumflexcomb.case; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (323.664,690); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(167,735,l), +(316,845,l), +(181,845,l), +(67,735,l) +); +}, +{ +closed = 1; +nodes = ( +(319,845,l), +(184,845,l), +(333,735,l), +(433,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(257,735,l), +(378,814,l), +(393,845,l), +(288,845,l), +(150,735,l) +); +}, +{ +closed = 1; +nodes = ( +(516,735,l), +(426,845,l), +(321,845,l), +(335,814,l), +(423,735,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (323.664,690); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(178,735,l), +(325,850,l), +(166,850,l), +(56,735,l) +); +}, +{ +closed = 1; +nodes = ( +(334,850,l), +(175,850,l), +(322,735,l), +(444,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(266,735,l), +(381,812,l), +(403,850,l), +(274,850,l), +(139,735,l) +); +}, +{ +closed = 1; +nodes = ( +(527,735,l), +(442,850,l), +(313,850,l), +(329,812,l), +(410,735,l) +); +} +); +width = 500; +} +); +}, +{ +color = 6; +glyphname = caroncomb.case; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (324.664,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(403,735,l), +(541,845,l), +(434,845,l), +(313,766,l), +(298,735,l) +); +}, +{ +closed = 1; +nodes = ( +(370,735,l), +(356,766,l), +(268,845,l), +(175,845,l), +(265,735,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (324.664,690); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(418,735,l), +(553,850,l), +(426,850,l), +(311,773,l), +(289,735,l) +); +}, +{ +closed = 1; +nodes = ( +(379,735,l), +(363,773,l), +(282,850,l), +(165,850,l), +(250,735,l) +); +} +); +width = 500; +} +); +}, +{ +color = 6; +glyphname = brevecomb.case; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (324,690); +}, +{ +name = top; +pos = (357,845); +} +); +background = { +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(195,805,o), +(174,820,o), +(170,845,c), +(100,845,l), +(105,777,o), +(153,735,o), +(250,735,c), +(347,735,o), +(395,777,o), +(400,845,c), +(330,845,l), +(326,820,o), +(305,805,o), +(250,805,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(442,735,o), +(489,777,o), +(507,845,c), +(437,845,l), +(429,820,o), +(402,805,o), +(345,805,cs), +(332,805,o), +(288,809,o), +(277,845,c), +(207,845,l), +(206,838,o), +(206,833,o), +(206,828,cs), +(206,773,o), +(254,735,o), +(342,735,cs) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (324,690); +}, +{ +name = top; +pos = (358,850); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(448,730,o), +(501,779,o), +(517,850,c), +(420,850,l), +(412,827,o), +(390,814,o), +(349,814,c), +(308,814,o), +(296,827,o), +(296,850,c), +(199,850,l), +(198,843,o), +(197,837,o), +(197,831,cs), +(197,770,o), +(250,730,o), +(344,730,c) +); +} +); +width = 499; +} +); +}, +{ +color = 6; +glyphname = ringcomb.case; +lastChange = "2024-03-21 14:17:05 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (323,690); +}, +{ +name = top; +pos = (369,878); +} +); +background = { +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(229,790,o), +(216,803.778,o), +(216,821,cs), +(216,839.162,o), +(229,853,o), +(250,853,cs), +(271,853,o), +(284,839.162,o), +(284,821,cs), +(284,803.778,o), +(271,790,o), +(250,790,cs) +); +}, +{ +closed = 1; +nodes = ( +(306,735,o), +(347,769.022,o), +(347,821,cs), +(347,873.957,o), +(306,908,o), +(250,908,cs), +(194,908,o), +(153,873.957,o), +(153,821,cs), +(153,769.022,o), +(194,735,o), +(250,735,cs) +); +}, +{ +closed = 1; +nodes = ( +(229,790,o), +(216,803.778,o), +(216,821,cs), +(216,839.162,o), +(229,853,o), +(250,853,cs), +(271,853,o), +(284,839.162,o), +(284,821,cs), +(284,803.778,o), +(271,790,o), +(250,790,cs) +); +}, +{ +closed = 1; +nodes = ( +(306,735,o), +(347,769.022,o), +(347,821,cs), +(347,873.957,o), +(306,908,o), +(250,908,cs), +(194,908,o), +(153,873.957,o), +(153,821,cs), +(153,769.022,o), +(194,735,o), +(250,735,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(404,735,o), +(448,779,o), +(448,833,cs), +(448,878,o), +(413,908,o), +(362,908,cs), +(297,908,o), +(253,864,o), +(253,810,cs), +(253,765,o), +(288,735,o), +(339,735,cs) +); +}, +{ +closed = 1; +nodes = ( +(326,790,o), +(316,800,o), +(316,815,cs), +(316,836,o), +(332.294,853,o), +(357,853,cs), +(375,853,o), +(385,843,o), +(385,828,cs), +(385,807,o), +(369,790,o), +(344,790,cs) +); +} +); +width = 498; +}, +{ +anchors = ( +{ +name = _top; +pos = (323,690); +}, +{ +name = top; +pos = (371,890); +} +); +background = { +anchors = ( +{ +name = _top; +pos = (397,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(232,800,o), +(220,811,o), +(220,826,cs), +(220,841,o), +(232,852,o), +(250,852,cs), +(268,852,o), +(280,841,o), +(280,826,cs), +(280,811,o), +(268,800,o), +(250,800,cs) +); +}, +{ +closed = 1; +nodes = ( +(313,735,o), +(353,772,o), +(353,826,cs), +(353,880,o), +(313,917,o), +(250,917,cs), +(187,917,o), +(147,880,o), +(147,826,cs), +(147,772,o), +(187,735,o), +(250,735,cs) +); +}, +{ +closed = 1; +nodes = ( +(402,800,o), +(392,811,o), +(396,826,cs), +(399,841,o), +(413,852,o), +(431,852,cs), +(449,852,o), +(459,841,o), +(456,826,cs), +(452,811,o), +(438,800,o), +(420,800,cs) +); +}, +{ +closed = 1; +nodes = ( +(469,735,o), +(517,772,o), +(529,826,cs), +(540,880,o), +(508,917,o), +(445,917,cs), +(382,917,o), +(334,880,o), +(323,826,cs), +(311,772,o), +(343,735,o), +(406,735,cs) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(412,735,o), +(455,784,o), +(455,837,cs), +(455,883,o), +(421,917,o), +(361,917,cs), +(291,917,o), +(248,868,o), +(248,815,cs), +(248,769,o), +(282,735,o), +(342,735,cs) +); +}, +{ +closed = 1; +nodes = ( +(331,800,o), +(321,808,o), +(321,823,cs), +(321,839,o), +(334,852,o), +(354,852,cs), +(372,852,o), +(382,844,o), +(382,829,cs), +(382,813,o), +(369,800,o), +(349,800,cs) +); +} +); +width = 498; +} +); +}, +{ +color = 6; +glyphname = tildecomb.case; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (323,690); +} +); +background = { +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(367,735,o), +(403.348,777.429,o), +(410,845,c), +(342,845,l), +(340.655,823.105,o), +(329,807,o), +(308,807,c), +(278,807,o), +(247,845,o), +(190,845,c), +(133,845,o), +(96.652,802.571,o), +(90,735,c), +(158,735,l), +(159.345,756.895,o), +(171,773,o), +(192,773,c), +(223,773,o), +(253,735,o), +(310,735,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(242,735,l), +(244,757,o), +(257,773,o), +(280,773,c), +(316,773,o), +(343,735,o), +(400,735,c), +(463,735,o), +(502,777,o), +(514,845,c), +(446,845,l), +(444,823,o), +(431,807,o), +(408,807,c), +(373,807,o), +(345,845,o), +(288,845,c), +(225,845,o), +(186,803,o), +(174,735,c) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (324,690); +} +); +background = { +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(372,735,o), +(415,781,o), +(419,854,c), +(335,854,l), +(332,828,o), +(320,817,o), +(304,817,c), +(276,817,o), +(252,854,o), +(187,854,c), +(127,854,o), +(84,808,o), +(81,735,c), +(165,735,l), +(168,761,o), +(180,772,o), +(196,772,c), +(226,772,o), +(248,735,o), +(313,735,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(250,735,l), +(251,761,o), +(267,772,o), +(284,772,c), +(317,772,o), +(339,735,o), +(404,735,c), +(467,735,o), +(514,781,o), +(526,854,c), +(442,854,l), +(441,828,o), +(425,817,o), +(408,817,c), +(377,817,o), +(353,854,o), +(288,854,c), +(224,854,o), +(177,808,o), +(166,735,c) +); +} +); +width = 500; +} +); +}, +{ +color = 6; +glyphname = macroncomb.case; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (322.664,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(494,753,l), +(512,837,l), +(196,837,l), +(178,753,l) +); +} +); +width = 498; +}, +{ +anchors = ( +{ +name = _top; +pos = (322.664,690); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(497,735,l), +(522,850,l), +(192,850,l), +(167,735,l) +); +} +); +width = 498; +} +); +}, +{ +color = 10; +glyphname = dieresis; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (289.655,530); +} +); +layerId = m001; +shapes = ( +{ +ref = dieresiscomb; +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (289.655,530); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = dieresiscomb; +} +); +width = 500; +} +); +unicode = 168; +}, +{ +color = 10; +glyphname = dotaccent; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (289.655,530); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(285,602,o), +(312,627,o), +(312,663,cs), +(312,700,o), +(285,725,o), +(250,725,cs), +(215,725,o), +(188,700,o), +(188,663,cs), +(188,627,o), +(215,602,o), +(250,602,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = dotaccentcomb; +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (289.655,530); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(418,588,o), +(458,619,o), +(467,664,cs), +(477,710,o), +(450,738,o), +(407,738,cs), +(363,738,o), +(325,710,o), +(315,664,cs), +(306,619,o), +(331,588,o), +(375,588,cs) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = dotaccentcomb; +} +); +width = 500; +} +); +unicode = 729; +}, +{ +color = 10; +glyphname = grave; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (288.655,530); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(235,725,l), +(105,725,l), +(215,585,l), +(305,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = gravecomb; +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (288.655,530); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(238,730,l), +(81,730,l), +(206,585,l), +(318,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = gravecomb; +} +); +width = 499; +} +); +unicode = 96; +}, +{ +color = 10; +glyphname = acute; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (288.655,530); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(285,585,l), +(395,725,l), +(265,725,l), +(195,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = acutecomb; +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (288.655,530); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(294,585,l), +(419,730,l), +(262,730,l), +(182,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = acutecomb; +} +); +width = 499; +} +); +unicode = 180; +}, +{ +color = 10; +glyphname = hungarumlaut; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (289,530); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(230,585,l), +(300,725,l), +(195,725,l), +(145,585,l) +); +}, +{ +closed = 1; +nodes = ( +(360,585,l), +(460,725,l), +(345,725,l), +(275,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = hungarumlautcomb; +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (289,530); +} +); +background = { +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(238,585,l), +(322,730,l), +(182,730,l), +(131,585,l) +); +}, +{ +closed = 1; +nodes = ( +(375,585,l), +(500,730,l), +(353,730,l), +(269,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = hungarumlautcomb; +} +); +width = 499; +} +); +unicode = 733; +}, +{ +color = 10; +glyphname = circumflex; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (288.655,530); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(306,725,l), +(198,725,l), +(316,585,l), +(406,585,l) +); +}, +{ +closed = 1; +nodes = ( +(184,585,l), +(302,725,l), +(194,725,l), +(94,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = circumflexcomb; +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (288.655,530); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(320,730,l), +(184,730,l), +(312,585,l), +(422,585,l) +); +}, +{ +closed = 1; +nodes = ( +(188,585,l), +(316,730,l), +(180,730,l), +(78,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = circumflexcomb; +} +); +width = 499; +} +); +unicode = 710; +}, +{ +color = 6; +glyphname = firsttonechinese; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (289.655,530); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(447,621,l), +(465,705,l), +(189,705,l), +(171,621,l) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (288.655,530); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(451,603,l), +(476,718,l), +(182,718,l), +(157,603,l) +); +} +); +width = 498; +} +); +unicode = 713; +}, +{ +color = 10; +glyphname = caron; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (288.655,530); +} +); +layerId = m001; +shapes = ( +{ +ref = caroncomb; +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (288.655,530); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = caroncomb; +} +); +width = 499; +} +); +unicode = 711; +}, +{ +color = 10; +glyphname = breve; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (289,530); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(205,660,o), +(181,684,o), +(180,725,c), +(110,725,l), +(112,639,o), +(157,585,o), +(250,585,c), +(343,585,o), +(388,639,o), +(390,725,c), +(320,725,l), +(319,684,o), +(295,660,o), +(250,660,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = brevecomb; +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (289,530); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(213,671,o), +(193,693,o), +(192,730,c), +(101,730,l), +(103,639,o), +(151,585,o), +(250,585,c), +(349,585,o), +(397,639,o), +(399,730,c), +(308,730,l), +(307,693,o), +(287,671,o), +(250,671,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = brevecomb; +} +); +width = 499; +} +); +unicode = 728; +}, +{ +color = 10; +glyphname = ring; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(229,630,o), +(216,646,o), +(216,666,cs), +(216,687,o), +(229,703,o), +(250,703,cs), +(271,703,o), +(284,687,o), +(284,666,cs), +(284,646,o), +(271,630,o), +(250,630,cs) +); +}, +{ +closed = 1; +nodes = ( +(305.88,575,o), +(347,610.977,o), +(347,666,cs), +(347,722.046,o), +(305.88,758,o), +(250,758,cs), +(194.12,758,o), +(153,722.046,o), +(153,666,cs), +(153,610.977,o), +(194.12,575,o), +(250,575,cs) +); +}, +{ +closed = 1; +nodes = ( +(363,630,o), +(353,646,o), +(358,666,cs), +(362,687,o), +(378,703,o), +(399,703,cs), +(420,703,o), +(430,687,o), +(426,666,cs), +(421,646,o), +(405,630,o), +(384,630,cs) +); +}, +{ +closed = 1; +nodes = ( +(428,575,o), +(477,611,o), +(489,666,cs), +(500,722,o), +(467,758,o), +(411,758,cs), +(355,758,o), +(306,722,o), +(295,666,cs), +(283,611,o), +(316,575,o), +(372,575,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = ringcomb; +} +); +width = 499; +}, +{ +background = { +anchors = ( +{ +name = _top; +pos = (363,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(368,640,o), +(359,653,o), +(362,670,cs), +(366,689,o), +(381,702,o), +(399,702,cs), +(417,702,o), +(426,689,o), +(422,670,cs), +(419,653,o), +(404,640,o), +(386,640,cs) +); +}, +{ +closed = 1; +nodes = ( +(435,575,o), +(484,614,o), +(495,670,cs), +(508,728,o), +(476,767,o), +(413,767,cs), +(350,767,o), +(302,728,o), +(289,670,cs), +(278,614,o), +(309,575,o), +(372,575,cs) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = ringcomb; +} +); +width = 499; +} +); +unicode = 730; +}, +{ +color = 10; +glyphname = tilde; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (289,530); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(361,585,o), +(394,639,o), +(400,725,c), +(332,725,l), +(331,686,o), +(322,668,o), +(303,668,c), +(272,668,o), +(251,725,o), +(192,725,c), +(139,725,o), +(106,671,o), +(100,585,c), +(168,585,l), +(169,624,o), +(178,642,o), +(197,642,c), +(229,642,o), +(249,585,o), +(308,585,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = tildecomb; +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (290,530); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(366,585,o), +(406,641,o), +(409,730,c), +(325,730,l), +(322,702,o), +(310,690,o), +(295,690,c), +(267,690,o), +(246,730,o), +(188,730,c), +(133,730,o), +(93,674,o), +(91,585,c), +(175,585,l), +(178,612,o), +(190,624,o), +(205,624,c), +(235,624,o), +(254,585,o), +(312,585,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = tildecomb; +} +); +width = 499; +} +); +unicode = 732; +}, +{ +color = 10; +glyphname = macron; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (289.655,530); +} +); +layerId = m001; +shapes = ( +{ +ref = macroncomb; +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (288.655,530); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = macroncomb; +} +); +width = 498; +} +); +unicode = 175; +}, +{ +color = 10; +glyphname = cedilla; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (176,0); +} +); +background = { +anchors = ( +{ +name = _bottom; +pos = (250,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(264,-43,l), +(270,9,l), +(214,11,l), +(201,-73,l), +(212,-71,o), +(219,-70,o), +(230,-70,c), +(254,-70,o), +(268,-79,o), +(268,-96,c), +(268,-110,o), +(255,-119,o), +(234,-119,c), +(214,-119,o), +(198,-114,o), +(180,-105,c), +(167,-169,l), +(192,-180,o), +(217,-185,o), +(243,-185,c), +(301,-185,o), +(337,-151,o), +(337,-106,cs), +(337,-57,o), +(300,-29,o), +(252,-29,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = cedillacomb; +} +); +width = 498; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (176,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(270,-43,l), +(276,9,l), +(208,11,l), +(194,-80,l), +(205,-76,o), +(215,-74,o), +(227,-74,c), +(250,-74,o), +(260,-82,o), +(260,-92,c), +(260,-103,o), +(250,-109,o), +(230,-109,c), +(210,-109,o), +(187,-105,o), +(166,-94,c), +(154,-174,l), +(181,-185,o), +(212,-190,o), +(240,-190,c), +(318,-190,o), +(352,-154,o), +(352,-106,cs), +(352,-57,o), +(316,-29,o), +(258,-29,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = cedillacomb; +} +); +width = 499; +} +); +unicode = 184; +}, +{ +color = 10; +glyphname = ogonek; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (176,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(136,-37,o), +(113,-69,o), +(113,-111,c), +(113,-153,o), +(147,-185,o), +(212,-185,cs), +(241,-185,o), +(276,-176,o), +(304,-165,c), +(295,-84,l), +(272,-94,o), +(238,-106,o), +(218,-106,c), +(205,-106,o), +(197,-101,o), +(197,-89,c), +(197,-65,o), +(234,-34,o), +(304,0,c), +(204,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = ogonekcomb; +} +); +width = 498; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (177,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(159,-37,o), +(131,-69,o), +(131,-111,c), +(131,-156,o), +(170,-190,o), +(242,-190,cs), +(273,-190,o), +(309,-183,o), +(339,-170,c), +(330,-75,l), +(310,-87,o), +(284,-96,o), +(265,-96,c), +(250,-96,o), +(242,-89,o), +(242,-79,c), +(242,-60,o), +(270,-31,o), +(339,0,c), +(234,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = ogonekcomb; +} +); +width = 499; +} +); +unicode = 731; +}, +{ +color = 6; +glyphname = caron.alt; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(284,442,l), +(386,715,l), +(282,715,l), +(224,442,l) +); +} +); +width = 499; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(291,408,l), +(418,715,l), +(268,715,l), +(203,408,l) +); +} +); +width = 499; +} +); +}, +{ +color = 6; +glyphname = IJacute; +kernLeft = H; +kernRight = U; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(586,-10,o), +(679,74,o), +(714,237,cs), +(811,690,l), +(706,690,l), +(611,244,ls), +(588,138,o), +(538,87,o), +(456,87,c), +(378,87,o), +(340,136,o), +(347,226,c), +(248,214,l), +(244,67,o), +(327,-10,o), +(448,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(247,735,l), +(405,845,l), +(270,845,l), +(146,735,l) +); +}, +{ +closed = 1; +nodes = ( +(804,735,l), +(962,845,l), +(827,845,l), +(703,735,l) +); +} +); +width = 806; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(657,-14,o), +(751,76,o), +(789,253,cs), +(882,690,l), +(727,690,l), +(635,261,ls), +(618,180,o), +(570,132,o), +(503,132,c), +(443,132,o), +(411,173,o), +(406,241,c), +(261,202,l), +(270,66,o), +(362,-14,o), +(493,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(274,735,l), +(450,850,l), +(277,850,l), +(149,735,l) +); +}, +{ +closed = 1; +nodes = ( +(865,735,l), +(1041,850,l), +(868,850,l), +(740,735,l) +); +} +); +width = 862; +} +); +}, +{ +color = 6; +glyphname = dotbelow; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (176,0); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(180,-195,o), +(208,-168,o), +(208,-130,c), +(208,-95,o), +(185,-72,o), +(151,-72,c), +(113,-72,o), +(86,-99,o), +(86,-140,c), +(86,-172,o), +(109,-195,o), +(142,-195,c) +); +} +); +width = 498; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (177,0); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(191,-198,o), +(227,-166,o), +(227,-117,c), +(227,-75,o), +(200,-48,o), +(156,-48,c), +(111,-48,o), +(75,-80,o), +(75,-130,c), +(75,-171,o), +(102,-198,o), +(146,-198,c) +); +} +); +width = 500; +} +); +}, +{ +color = 6; +glyphname = firsttonechinesecomb; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (289.655,530); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(447,621,l), +(465,705,l), +(189,705,l), +(171,621,l) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (288.655,530); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(451,603,l), +(476,718,l), +(182,718,l), +(157,603,l) +); +} +); +width = 498; +} +); +}, +{ +color = 6; +glyphname = gem; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(40,256,o), +(76,198,o), +(127,167,c), +(127,473,l), +(76,442,o), +(40,384,o), +(40,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(156,221,o), +(236,141,o), +(334,141,c), +(334,499,l), +(236,499,o), +(156,419,o), +(156,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(164,20,o), +(240,-56,o), +(334,-56,c), +(334,114,l), +(164,114,l) +); +}, +{ +closed = 1; +nodes = ( +(334,526,l), +(334,696,l), +(240,696,o), +(164,620,o), +(164,526,c) +); +}, +{ +closed = 1; +nodes = ( +(361,16,o), +(441,-64,o), +(540,-64,cs), +(639,-64,o), +(719,16,o), +(719,114,c), +(361,114,l) +); +}, +{ +closed = 1; +nodes = ( +(361,221,o), +(441,141,o), +(540,141,cs), +(639,141,o), +(719,221,o), +(719,320,cs), +(719,419,o), +(639,499,o), +(540,499,cs), +(441,499,o), +(361,419,o), +(361,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(719,526,l), +(719,624,o), +(639,704,o), +(540,704,cs), +(441,704,o), +(361,624,o), +(361,526,c) +); +}, +{ +closed = 1; +nodes = ( +(418,-144,o), +(476,-180,o), +(540,-180,cs), +(604,-180,o), +(662,-144,o), +(693,-93,c), +(387,-93,l) +); +}, +{ +closed = 1; +nodes = ( +(693,733,l), +(662,784,o), +(604,820,o), +(540,820,cs), +(476,820,o), +(418,784,o), +(387,733,c) +); +}, +{ +closed = 1; +nodes = ( +(840,-56,o), +(916,20,o), +(916,114,c), +(746,114,l), +(746,-56,l) +); +}, +{ +closed = 1; +nodes = ( +(844,141,o), +(924,221,o), +(924,320,cs), +(924,419,o), +(844,499,o), +(746,499,c), +(746,141,l) +); +}, +{ +closed = 1; +nodes = ( +(916,526,l), +(916,620,o), +(840,696,o), +(746,696,c), +(746,526,l) +); +}, +{ +closed = 1; +nodes = ( +(1004,198,o), +(1040,256,o), +(1040,320,cs), +(1040,384,o), +(1004,442,o), +(953,473,c), +(953,167,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(644,141,o), +(724,221,o), +(724,320,cs), +(724,419,o), +(644,499,o), +(545,499,cs), +(446,499,o), +(366,419,o), +(366,320,cs), +(366,221,o), +(446,141,o), +(545,141,cs) +); +}, +{ +closed = 1; +nodes = ( +(339,114,l), +(169,114,l), +(169,20,o), +(245,-56,o), +(339,-56,c) +); +}, +{ +closed = 1; +nodes = ( +(132,473,l), +(81,442,o), +(45,384,o), +(45,320,cs), +(45,256,o), +(81,198,o), +(132,167,c) +); +}, +{ +closed = 1; +nodes = ( +(609,-180,o), +(667,-144,o), +(698,-93,c), +(392,-93,l), +(423,-144,o), +(481,-180,o), +(545,-180,cs) +); +}, +{ +closed = 1; +nodes = ( +(339,499,l), +(241,499,o), +(161,419,o), +(161,320,cs), +(161,221,o), +(241,141,o), +(339,141,c) +); +}, +{ +closed = 1; +nodes = ( +(644,-64,o), +(724,16,o), +(724,114,c), +(366,114,l), +(366,16,o), +(446,-64,o), +(545,-64,cs) +); +}, +{ +closed = 1; +nodes = ( +(339,526,l), +(339,696,l), +(245,696,o), +(169,620,o), +(169,526,c) +); +}, +{ +closed = 1; +nodes = ( +(845,-56,o), +(921,20,o), +(921,114,c), +(751,114,l), +(751,-56,l) +); +}, +{ +closed = 1; +nodes = ( +(724,526,l), +(724,624,o), +(644,704,o), +(545,704,cs), +(446,704,o), +(366,624,o), +(366,526,c) +); +}, +{ +closed = 1; +nodes = ( +(849,141,o), +(929,221,o), +(929,320,cs), +(929,419,o), +(849,499,o), +(751,499,c), +(751,141,l) +); +}, +{ +closed = 1; +nodes = ( +(698,733,l), +(667,784,o), +(609,820,o), +(545,820,cs), +(481,820,o), +(423,784,o), +(392,733,c) +); +}, +{ +closed = 1; +nodes = ( +(1009,198,o), +(1045,256,o), +(1045,320,cs), +(1045,384,o), +(1009,442,o), +(958,473,c), +(958,167,l) +); +}, +{ +closed = 1; +nodes = ( +(921,526,l), +(921,620,o), +(845,696,o), +(751,696,c), +(751,526,l) +); +} +); +width = 1099; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(40,256,o), +(76,198,o), +(127,167,c), +(127,473,l), +(76,442,o), +(40,384,o), +(40,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(156,221,o), +(236,141,o), +(334,141,c), +(334,499,l), +(236,499,o), +(156,419,o), +(156,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(164,20,o), +(240,-56,o), +(334,-56,c), +(334,114,l), +(164,114,l) +); +}, +{ +closed = 1; +nodes = ( +(334,526,l), +(334,696,l), +(240,696,o), +(164,620,o), +(164,526,c) +); +}, +{ +closed = 1; +nodes = ( +(361,16,o), +(441,-64,o), +(540,-64,cs), +(639,-64,o), +(719,16,o), +(719,114,c), +(361,114,l) +); +}, +{ +closed = 1; +nodes = ( +(361,221,o), +(441,141,o), +(540,141,cs), +(639,141,o), +(719,221,o), +(719,320,cs), +(719,419,o), +(639,499,o), +(540,499,cs), +(441,499,o), +(361,419,o), +(361,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(719,526,l), +(719,624,o), +(639,704,o), +(540,704,cs), +(441,704,o), +(361,624,o), +(361,526,c) +); +}, +{ +closed = 1; +nodes = ( +(418,-144,o), +(476,-180,o), +(540,-180,cs), +(604,-180,o), +(662,-144,o), +(693,-93,c), +(387,-93,l) +); +}, +{ +closed = 1; +nodes = ( +(693,733,l), +(662,784,o), +(604,820,o), +(540,820,cs), +(476,820,o), +(418,784,o), +(387,733,c) +); +}, +{ +closed = 1; +nodes = ( +(840,-56,o), +(916,20,o), +(916,114,c), +(746,114,l), +(746,-56,l) +); +}, +{ +closed = 1; +nodes = ( +(844,141,o), +(924,221,o), +(924,320,cs), +(924,419,o), +(844,499,o), +(746,499,c), +(746,141,l) +); +}, +{ +closed = 1; +nodes = ( +(916,526,l), +(916,620,o), +(840,696,o), +(746,696,c), +(746,526,l) +); +}, +{ +closed = 1; +nodes = ( +(1004,198,o), +(1040,256,o), +(1040,320,cs), +(1040,384,o), +(1004,442,o), +(953,473,c), +(953,167,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(639,141,o), +(719,221,o), +(719,320,cs), +(719,419,o), +(639,499,o), +(540,499,cs), +(441,499,o), +(361,419,o), +(361,320,cs), +(361,221,o), +(441,141,o), +(540,141,cs) +); +}, +{ +closed = 1; +nodes = ( +(334,114,l), +(164,114,l), +(164,20,o), +(240,-56,o), +(334,-56,c) +); +}, +{ +closed = 1; +nodes = ( +(127,473,l), +(76,442,o), +(40,384,o), +(40,320,cs), +(40,256,o), +(76,198,o), +(127,167,c) +); +}, +{ +closed = 1; +nodes = ( +(604,-180,o), +(662,-144,o), +(693,-93,c), +(387,-93,l), +(418,-144,o), +(476,-180,o), +(540,-180,cs) +); +}, +{ +closed = 1; +nodes = ( +(334,499,l), +(236,499,o), +(156,419,o), +(156,320,cs), +(156,221,o), +(236,141,o), +(334,141,c) +); +}, +{ +closed = 1; +nodes = ( +(639,-64,o), +(719,16,o), +(719,114,c), +(361,114,l), +(361,16,o), +(441,-64,o), +(540,-64,cs) +); +}, +{ +closed = 1; +nodes = ( +(334,526,l), +(334,696,l), +(240,696,o), +(164,620,o), +(164,526,c) +); +}, +{ +closed = 1; +nodes = ( +(840,-56,o), +(916,20,o), +(916,114,c), +(746,114,l), +(746,-56,l) +); +}, +{ +closed = 1; +nodes = ( +(719,526,l), +(719,624,o), +(639,704,o), +(540,704,cs), +(441,704,o), +(361,624,o), +(361,526,c) +); +}, +{ +closed = 1; +nodes = ( +(844,141,o), +(924,221,o), +(924,320,cs), +(924,419,o), +(844,499,o), +(746,499,c), +(746,141,l) +); +}, +{ +closed = 1; +nodes = ( +(693,733,l), +(662,784,o), +(604,820,o), +(540,820,cs), +(476,820,o), +(418,784,o), +(387,733,c) +); +}, +{ +closed = 1; +nodes = ( +(1004,198,o), +(1040,256,o), +(1040,320,cs), +(1040,384,o), +(1004,442,o), +(953,473,c), +(953,167,l) +); +}, +{ +closed = 1; +nodes = ( +(916,526,l), +(916,620,o), +(840,696,o), +(746,696,c), +(746,526,l) +); +} +); +width = 1089; +} +); +}, +{ +color = 6; +glyphname = ijacute; +kernLeft = n; +kernRight = q; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(227,-185,o), +(293,-138,o), +(318,-21,cs), +(435,530,l), +(335,530,l), +(218,-17,ls), +(207,-70,o), +(174,-94,o), +(129,-94,c), +(106,-94,o), +(86,-88,o), +(66,-79,c), +(47,-168,l), +(73,-178,o), +(101,-185,o), +(133,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(92,0,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(199,585,l), +(336,725,l), +(210,725,l), +(110,585,l) +); +}, +{ +closed = 1; +nodes = ( +(429,585,l), +(566,725,l), +(440,725,l), +(340,585,l) +); +} +); +width = 460; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(278,-189,o), +(357,-143,o), +(384,-14,cs), +(500,530,l), +(351,530,l), +(240,9,ls), +(231,-32,o), +(207,-54,o), +(166,-54,c), +(141,-54,o), +(119,-49,o), +(99,-41,c), +(71,-172,l), +(96,-183,o), +(135,-189,o), +(175,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(130,0,l), +(243,530,l), +(94,530,l), +(-19,0,l) +); +}, +{ +closed = 1; +nodes = ( +(224,585,l), +(380,730,l), +(219,730,l), +(109,585,l) +); +}, +{ +closed = 1; +nodes = ( +(482,585,l), +(638,730,l), +(477,730,l), +(367,585,l) +); +} +); +width = 514; +} +); +} +); +instances = ( +{ +axesValues = ( +400 +); +instanceInterpolations = { +m001 = 1; +}; +isItalic = 1; +name = Italic; +}, +{ +axesValues = ( +500 +); +instanceInterpolations = { +"935096DB-18C6-4F5A-A149-9E36F9702B37" = 0.33333; +m001 = 0.66667; +}; +isItalic = 1; +name = "Medium Italic"; +weightClass = 500; +}, +{ +axesValues = ( +600 +); +instanceInterpolations = { +"935096DB-18C6-4F5A-A149-9E36F9702B37" = 0.66667; +m001 = 0.33333; +}; +isItalic = 1; +name = "SemiBold Italic"; +weightClass = 600; +}, +{ +axesValues = ( +700 +); +instanceInterpolations = { +"935096DB-18C6-4F5A-A149-9E36F9702B37" = 1; +}; +isBold = 1; +isItalic = 1; +name = "Bold Italic"; +weightClass = 700; +} +); +kerningLTR = { +m001 = { +"@MMK_L_A" = { +"@MMK_R_I" = -80; +"@MMK_R_K" = 10; +"@MMK_R_L" = -20; +"@MMK_R_M" = -80; +"@MMK_R_O" = -20; +"@MMK_R_T" = -50; +"@MMK_R_U" = -10; +"@MMK_R_V" = -50; +"@MMK_R_W" = -20; +"@MMK_R_Y" = -50; +"@MMK_R_a" = -10; +"@MMK_R_f" = -10; +"@MMK_R_o" = -10; +"@MMK_R_s" = -5; +"@MMK_R_t" = -10; +"@MMK_R_u" = -5; +"@MMK_R_v" = -20; +"@MMK_R_w" = -10; +"@MMK_R_x" = -10; +backslash = -40; +question = -60; +}; +"@MMK_L_B" = { +"@MMK_R_B" = -20; +"@MMK_R_I" = -10; +"@MMK_R_M" = -20; +"@MMK_R_T" = -10; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_Y" = -30; +"@MMK_R_v" = -5; +"@MMK_R_x" = -10; +backslash = -10; +}; +"@MMK_L_C" = { +"@MMK_R_A" = -10; +"@MMK_R_B" = -30; +"@MMK_R_T" = -10; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -20; +"@MMK_R_Y" = -20; +}; +"@MMK_L_D" = { +"@MMK_R_A" = -20; +"@MMK_R_B" = -40; +}; +"@MMK_L_E" = { +"@MMK_R_o" = -10; +"@MMK_R_v" = -10; +"@MMK_R_x" = -10; +}; +"@MMK_L_F" = { +"@MMK_R_A" = -50; +"@MMK_R_B" = -90; +"@MMK_R_E" = -20; +"@MMK_R_J" = -60; +"@MMK_R_K" = -80; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -20; +"@MMK_R_Y" = -20; +"@MMK_R_Z" = -10; +"@MMK_R_a" = -10; +"@MMK_R_n" = -10; +"@MMK_R_o" = -20; +"@MMK_R_p" = -10; +"@MMK_R_s" = -20; +"@MMK_R_u" = -10; +"@MMK_R_v" = -10; +"@MMK_R_w" = -5; +"@MMK_R_x" = -30; +"@MMK_R_z" = -20; +ibreve = 10; +icircumflex = 30; +idieresis = 20; +igrave = 0; +imacron = 20; +itilde = 20; +slash = -20; +}; +"@MMK_L_G" = { +"@MMK_R_T" = -10; +"@MMK_R_V" = -10; +"@MMK_R_Y" = -10; +}; +"@MMK_L_I" = { +"@MMK_R_V" = -20; +"@MMK_R_Y" = -20; +}; +"@MMK_L_J" = { +"@MMK_R_B" = -50; +"@MMK_R_T" = -40; +"@MMK_R_V" = -30; +"@MMK_R_W" = -10; +"@MMK_R_X" = -20; +"@MMK_R_Y" = -40; +"@MMK_R_Z" = -20; +"@MMK_R_o" = 10; +}; +"@MMK_L_K" = { +"@MMK_R_T" = -40; +"@MMK_R_f" = 10; +"@MMK_R_t" = 10; +}; +"@MMK_L_L" = { +"@MMK_R_F" = -20; +"@MMK_R_I" = -90; +"@MMK_R_K" = 10; +"@MMK_R_L" = -60; +"@MMK_R_M" = -110; +"@MMK_R_O" = -20; +"@MMK_R_T" = -70; +"@MMK_R_U" = -10; +"@MMK_R_V" = -50; +"@MMK_R_W" = -30; +"@MMK_R_X" = -10; +"@MMK_R_Y" = -90; +"@MMK_R_a" = -10; +"@MMK_R_o" = -10; +"@MMK_R_t" = -10; +"@MMK_R_u" = -10; +"@MMK_R_v" = -20; +"@MMK_R_w" = -10; +backslash = -60; +periodcentered.loclCAT.case = -180; +question = -40; +}; +"@MMK_L_N" = { +"@MMK_R_A" = -80; +"@MMK_R_B" = -100; +"@MMK_R_J" = -100; +"@MMK_R_K" = -80; +"@MMK_R_O" = -10; +"@MMK_R_T" = 20; +"@MMK_R_V" = 10; +"@MMK_R_W" = 10; +"@MMK_R_X" = 10; +"@MMK_R_Y" = 10; +"@MMK_R_a" = -10; +"@MMK_R_f" = 20; +"@MMK_R_o" = -10; +"@MMK_R_t" = 10; +"@MMK_R_v" = 10; +"@MMK_R_w" = 10; +eth = -30; +}; +"@MMK_L_O" = { +"@MMK_R_A" = -20; +"@MMK_R_B" = -50; +"@MMK_R_I" = -10; +"@MMK_R_K" = -10; +"@MMK_R_T" = -20; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -20; +"@MMK_R_Y" = -30; +"@MMK_R_Z" = -10; +backslash = -10; +slash = -10; +}; +"@MMK_L_P" = { +"@MMK_R_A" = -50; +"@MMK_R_B" = -80; +"@MMK_R_J" = -70; +"@MMK_R_K" = -80; +"@MMK_R_T" = -10; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -30; +"@MMK_R_Y" = -30; +"@MMK_R_a" = -10; +"@MMK_R_o" = -10; +"@MMK_R_s" = -10; +"@MMK_R_x" = -10; +slash = -40; +}; +"@MMK_L_Q" = { +"@MMK_R_A" = 10; +"@MMK_R_B" = 20; +"@MMK_R_I" = -80; +"@MMK_R_J" = 10; +"@MMK_R_O" = -10; +"@MMK_R_T" = -80; +"@MMK_R_V" = -60; +"@MMK_R_W" = -30; +"@MMK_R_X" = 10; +"@MMK_R_Y" = -50; +"@MMK_R_f" = -20; +"@MMK_R_j" = 50; +"@MMK_R_t" = -20; +"@MMK_R_v" = -30; +"@MMK_R_w" = -20; +"@MMK_R_x" = 10; +}; +"@MMK_L_R" = { +"@MMK_R_B" = -20; +"@MMK_R_J" = -20; +"@MMK_R_L" = -10; +"@MMK_R_T" = -10; +"@MMK_R_V" = -10; +"@MMK_R_W" = -5; +"@MMK_R_Y" = -15; +"@MMK_R_o" = -10; +"@MMK_R_s" = -5; +"@MMK_R_v" = -5; +}; +"@MMK_L_S" = { +"@MMK_R_B" = -20; +"@MMK_R_T" = -10; +"@MMK_R_V" = -10; +"@MMK_R_Y" = -20; +}; +"@MMK_L_T" = { +"@MMK_R_A" = -50; +"@MMK_R_B" = -100; +"@MMK_R_C" = -20; +"@MMK_R_E" = -40; +"@MMK_R_F" = -40; +"@MMK_R_I" = 20; +"@MMK_R_J" = -60; +"@MMK_R_K" = -80; +"@MMK_R_L" = -60; +"@MMK_R_O" = -20; +"@MMK_R_T" = -10; +"@MMK_R_V" = -10; +"@MMK_R_W" = -5; +"@MMK_R_X" = -10; +"@MMK_R_Z" = -10; +"@MMK_R_a" = -40; +"@MMK_R_n" = -20; +"@MMK_R_o" = -40; +"@MMK_R_p" = -20; +"@MMK_R_s" = -40; +"@MMK_R_u" = -20; +"@MMK_R_v" = -30; +"@MMK_R_w" = -20; +"@MMK_R_x" = -30; +"@MMK_R_z" = -20; +Germandbls = -10; +ibreve = 30; +icircumflex = 50; +idieresis = 50; +igrave = 20; +imacron = 40; +itilde = 50; +slash = -30; +}; +"@MMK_L_U" = { +"@MMK_R_A" = -10; +"@MMK_R_B" = -40; +}; +"@MMK_L_V" = { +"@MMK_R_A" = -50; +"@MMK_R_B" = -90; +"@MMK_R_C" = -20; +"@MMK_R_D" = -20; +"@MMK_R_F" = -30; +"@MMK_R_I" = 10; +"@MMK_R_J" = -50; +"@MMK_R_K" = -60; +"@MMK_R_L" = -20; +"@MMK_R_O" = -20; +"@MMK_R_S" = -5; +"@MMK_R_T" = -10; +"@MMK_R_Z" = -10; +"@MMK_R_a" = -30; +"@MMK_R_n" = -20; +"@MMK_R_o" = -30; +"@MMK_R_p" = -20; +"@MMK_R_s" = -20; +"@MMK_R_u" = -20; +"@MMK_R_v" = -20; +"@MMK_R_w" = -10; +"@MMK_R_x" = -25; +"@MMK_R_z" = -20; +Germandbls = -20; +ibreve = 30; +icircumflex = 20; +idieresis = 30; +igrave = 20; +imacron = 30; +itilde = 40; +slash = -40; +}; +"@MMK_L_W" = { +"@MMK_R_A" = -20; +"@MMK_R_B" = -60; +"@MMK_R_C" = -10; +"@MMK_R_F" = -10; +"@MMK_R_I" = 10; +"@MMK_R_J" = -30; +"@MMK_R_K" = -30; +"@MMK_R_L" = -10; +"@MMK_R_O" = -10; +"@MMK_R_T" = -5; +"@MMK_R_a" = -15; +"@MMK_R_n" = -10; +"@MMK_R_o" = -15; +"@MMK_R_p" = -10; +"@MMK_R_s" = -15; +"@MMK_R_u" = -10; +"@MMK_R_v" = -5; +"@MMK_R_x" = -10; +"@MMK_R_z" = -10; +Germandbls = -10; +ibreve = 30; +icircumflex = 30; +idieresis = 40; +igrave = 20; +imacron = 40; +itilde = 40; +slash = -30; +}; +"@MMK_L_X" = { +"@MMK_R_B" = -20; +"@MMK_R_F" = -20; +"@MMK_R_I" = 10; +"@MMK_R_J" = -20; +"@MMK_R_K" = 10; +"@MMK_R_L" = -40; +"@MMK_R_O" = -30; +"@MMK_R_T" = -10; +"@MMK_R_a" = -10; +"@MMK_R_n" = 30; +"@MMK_R_o" = -15; +"@MMK_R_s" = -10; +"@MMK_R_u" = -10; +"@MMK_R_v" = -10; +"@MMK_R_w" = -5; +ibreve = 20; +idieresis = 30; +imacron = 20; +}; +"@MMK_L_Y" = { +"@MMK_R_A" = -50; +"@MMK_R_B" = -80; +"@MMK_R_C" = -30; +"@MMK_R_D" = -20; +"@MMK_R_F" = -40; +"@MMK_R_I" = 10; +"@MMK_R_J" = -80; +"@MMK_R_K" = -50; +"@MMK_R_L" = -40; +"@MMK_R_O" = -30; +"@MMK_R_S" = -20; +"@MMK_R_a" = -30; +"@MMK_R_n" = -20; +"@MMK_R_o" = -30; +"@MMK_R_p" = -20; +"@MMK_R_s" = -25; +"@MMK_R_u" = -20; +"@MMK_R_v" = -10; +"@MMK_R_x" = -25; +"@MMK_R_z" = -20; +Germandbls = -20; +ibreve = 40; +icircumflex = 10; +idieresis = 50; +igrave = 20; +imacron = 40; +itilde = 40; +slash = -30; +}; +"@MMK_L_Z" = { +"@MMK_R_F" = -30; +"@MMK_R_L" = -30; +"@MMK_R_O" = -10; +"@MMK_R_T" = -10; +"@MMK_R_V" = -10; +"@MMK_R_o" = -10; +"@MMK_R_v" = -10; +"@MMK_R_w" = -5; +}; +"@MMK_L_a" = { +"@MMK_R_A" = -20; +"@MMK_R_B" = -80; +"@MMK_R_J" = -20; +"@MMK_R_T" = -60; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -30; +"@MMK_R_Y" = -40; +"@MMK_R_Z" = -30; +"@MMK_R_f" = -10; +"@MMK_R_x" = -30; +"@MMK_R_z" = -20; +Dcroat = 20; +eth = 10; +}; +"@MMK_L_b" = { +"@MMK_R_A" = -80; +"@MMK_R_B" = -100; +"@MMK_R_J" = -100; +"@MMK_R_t" = 10; +"@MMK_R_v" = 10; +"@MMK_R_w" = 10; +eth = -20; +}; +"@MMK_L_c" = { +"@MMK_R_I" = -10; +}; +"@MMK_L_f" = { +"@MMK_R_F" = -10; +"@MMK_R_I" = 30; +"@MMK_R_K" = -40; +"@MMK_R_L" = -40; +"@MMK_R_M" = 10; +"@MMK_R_n" = 0; +ibreve = 30; +icircumflex = 30; +idieresis = 50; +igrave = 30; +imacron = 40; +itilde = 40; +slash = -30; +}; +"@MMK_L_i" = { +"@MMK_R_T" = 0; +"@MMK_R_V" = 0; +"@MMK_R_W" = 0; +"@MMK_R_X" = 0; +"@MMK_R_Y" = 0; +}; +"@MMK_L_n" = { +"@MMK_R_I" = -10; +backslash = -10; +}; +"@MMK_L_o" = { +"@MMK_R_F" = 10; +"@MMK_R_I" = -10; +"@MMK_R_x" = -10; +}; +"@MMK_L_q" = { +"@MMK_R_j" = 20; +}; +"@MMK_L_r" = { +"@MMK_R_I" = 10; +"@MMK_R_K" = -40; +"@MMK_R_L" = -20; +"@MMK_R_M" = 10; +slash = -10; +}; +"@MMK_L_s" = { +"@MMK_R_I" = -10; +}; +"@MMK_L_t" = { +"@MMK_R_L" = -10; +"@MMK_R_M" = 10; +}; +"@MMK_L_tcaron" = { +"@MMK_R_H" = 100; +"@MMK_R_l" = 100; +"@MMK_R_n" = 80; +"@MMK_R_o" = 60; +}; +"@MMK_L_v" = { +"@MMK_R_I" = 10; +"@MMK_R_K" = -30; +"@MMK_R_M" = 10; +slash = -10; +}; +"@MMK_L_w" = { +"@MMK_R_I" = 10; +"@MMK_R_K" = -20; +"@MMK_R_M" = 10; +}; +"@MMK_L_x" = { +"@MMK_R_K" = 10; +"@MMK_R_L" = -30; +"@MMK_R_o" = -10; +backslash = -20; +}; +"@MMK_L_z" = { +"@MMK_R_L" = -20; +backslash = -20; +}; +Germandbls = { +"@MMK_R_I" = -20; +"@MMK_R_M" = -20; +"@MMK_R_T" = -20; +"@MMK_R_U" = -10; +"@MMK_R_V" = -40; +"@MMK_R_W" = -20; +"@MMK_R_Y" = -40; +"@MMK_R_v" = -10; +"@MMK_R_w" = -5; +"@MMK_R_x" = -10; +backslash = -30; +question = -20; +}; +Thorn = { +"@MMK_R_A" = -40; +"@MMK_R_B" = -80; +"@MMK_R_J" = -10; +"@MMK_R_K" = -50; +"@MMK_R_L" = 10; +"@MMK_R_S" = -10; +"@MMK_R_T" = -20; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -40; +"@MMK_R_Y" = -30; +"@MMK_R_Z" = -20; +}; +backslash = { +"@MMK_R_O" = -10; +"@MMK_R_T" = -30; +"@MMK_R_V" = -40; +"@MMK_R_W" = -30; +"@MMK_R_Y" = -30; +"@MMK_R_j" = 90; +"@MMK_R_v" = -10; +}; +dcaron = { +"@MMK_R_E" = 10; +"@MMK_R_H" = 60; +"@MMK_R_K" = -20; +"@MMK_R_L" = -30; +"@MMK_R_M" = 30; +"@MMK_R_l" = 80; +"@MMK_R_n" = 40; +"@MMK_R_o" = 40; +backslash = 30; +}; +eth = { +"@MMK_R_I" = -20; +"@MMK_R_L" = 10; +backslash = -20; +}; +four = { +seven = -10; +}; +germandbls = { +"@MMK_R_I" = -40; +"@MMK_R_M" = -40; +backslash = -30; +question = -40; +}; +iacute = { +"@MMK_R_Y" = 10; +}; +ibreve = { +"@MMK_R_T" = 30; +"@MMK_R_V" = 30; +"@MMK_R_W" = 30; +"@MMK_R_X" = 20; +"@MMK_R_Y" = 40; +}; +icircumflex = { +"@MMK_R_T" = 40; +"@MMK_R_V" = 20; +"@MMK_R_W" = 20; +"@MMK_R_Y" = 10; +}; +idieresis = { +"@MMK_R_T" = 50; +"@MMK_R_V" = 30; +"@MMK_R_W" = 40; +"@MMK_R_X" = 30; +"@MMK_R_Y" = 50; +}; +imacron = { +"@MMK_R_T" = 40; +"@MMK_R_V" = 30; +"@MMK_R_W" = 40; +"@MMK_R_X" = 20; +"@MMK_R_Y" = 40; +}; +itilde = { +"@MMK_R_T" = 50; +"@MMK_R_V" = 40; +"@MMK_R_W" = 40; +"@MMK_R_X" = 30; +"@MMK_R_Y" = 40; +}; +lcaron = { +"@MMK_R_H" = 80; +"@MMK_R_l" = 80; +"@MMK_R_n" = 60; +"@MMK_R_o" = 60; +}; +questiondown = { +"@MMK_R_J" = -50; +"@MMK_R_O" = -60; +"@MMK_R_T" = -100; +"@MMK_R_U" = -70; +"@MMK_R_V" = -80; +"@MMK_R_W" = -50; +"@MMK_R_Y" = -100; +"@MMK_R_j" = 30; +}; +seven = { +eight = -10; +four = -40; +seven = -10; +six = -10; +three = -10; +two = -10; +zero = -10; +}; +slash = { +"@MMK_R_A" = -40; +"@MMK_R_B" = -80; +"@MMK_R_J" = -40; +"@MMK_R_O" = -10; +"@MMK_R_x" = -20; +"@MMK_R_z" = -20; +eth = -30; +}; +two = { +four = -20; +seven = -10; +}; +}; +"935096DB-18C6-4F5A-A149-9E36F9702B37" = { +"@MMK_L_A" = { +"@MMK_R_I" = -80; +"@MMK_R_K" = 10; +"@MMK_R_L" = -20; +"@MMK_R_M" = -80; +"@MMK_R_O" = -20; +"@MMK_R_T" = -50; +"@MMK_R_U" = -10; +"@MMK_R_V" = -40; +"@MMK_R_W" = -20; +"@MMK_R_Y" = -50; +"@MMK_R_f" = -10; +"@MMK_R_o" = -10; +"@MMK_R_s" = -5; +"@MMK_R_t" = -10; +"@MMK_R_u" = -5; +"@MMK_R_v" = -20; +"@MMK_R_w" = -10; +"@MMK_R_x" = -10; +backslash = -40; +question = -60; +}; +"@MMK_L_B" = { +"@MMK_R_B" = -20; +"@MMK_R_I" = -10; +"@MMK_R_M" = -20; +"@MMK_R_T" = -10; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_Y" = -30; +"@MMK_R_v" = -5; +"@MMK_R_x" = -10; +backslash = -10; +}; +"@MMK_L_C" = { +"@MMK_R_A" = -10; +"@MMK_R_B" = -30; +"@MMK_R_T" = -10; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -20; +"@MMK_R_Y" = -20; +}; +"@MMK_L_D" = { +"@MMK_R_A" = -20; +"@MMK_R_B" = -40; +}; +"@MMK_L_E" = { +"@MMK_R_n" = 0; +"@MMK_R_o" = -10; +"@MMK_R_v" = -10; +"@MMK_R_x" = -10; +icircumflex = 20; +idieresis = 20; +itilde = 10; +}; +"@MMK_L_F" = { +"@MMK_R_A" = -50; +"@MMK_R_B" = -90; +"@MMK_R_E" = -20; +"@MMK_R_J" = -60; +"@MMK_R_K" = -80; +"@MMK_R_W" = -10; +"@MMK_R_X" = -20; +"@MMK_R_Y" = -10; +"@MMK_R_Z" = -10; +"@MMK_R_a" = -20; +"@MMK_R_n" = -10; +"@MMK_R_o" = -20; +"@MMK_R_p" = -10; +"@MMK_R_s" = -20; +"@MMK_R_u" = -10; +"@MMK_R_v" = -10; +"@MMK_R_w" = -5; +"@MMK_R_x" = -30; +"@MMK_R_z" = -20; +ibreve = 10; +icircumflex = 30; +idieresis = 40; +igrave = 10; +imacron = 20; +itilde = 30; +slash = -20; +}; +"@MMK_L_G" = { +"@MMK_R_T" = -10; +"@MMK_R_V" = -10; +"@MMK_R_Y" = -20; +}; +"@MMK_L_I" = { +"@MMK_R_V" = -20; +"@MMK_R_Y" = -20; +}; +"@MMK_L_J" = { +"@MMK_R_B" = -50; +"@MMK_R_T" = -40; +"@MMK_R_V" = -30; +"@MMK_R_W" = -10; +"@MMK_R_X" = -20; +"@MMK_R_Y" = -40; +"@MMK_R_Z" = -20; +"@MMK_R_o" = 10; +}; +"@MMK_L_K" = { +"@MMK_R_T" = -40; +"@MMK_R_f" = 20; +"@MMK_R_t" = 20; +}; +"@MMK_L_L" = { +"@MMK_R_F" = -20; +"@MMK_R_I" = -100; +"@MMK_R_K" = 10; +"@MMK_R_L" = -60; +"@MMK_R_M" = -120; +"@MMK_R_O" = -20; +"@MMK_R_T" = -80; +"@MMK_R_U" = -10; +"@MMK_R_V" = -50; +"@MMK_R_W" = -30; +"@MMK_R_X" = -10; +"@MMK_R_Y" = -90; +"@MMK_R_a" = -10; +"@MMK_R_o" = -10; +"@MMK_R_t" = -10; +"@MMK_R_u" = -10; +"@MMK_R_v" = -30; +"@MMK_R_w" = -10; +backslash = -50; +periodcentered.loclCAT.case = -200; +question = -40; +}; +"@MMK_L_N" = { +"@MMK_R_A" = -80; +"@MMK_R_B" = -100; +"@MMK_R_J" = -100; +"@MMK_R_K" = -100; +"@MMK_R_O" = -10; +"@MMK_R_T" = 20; +"@MMK_R_V" = 10; +"@MMK_R_W" = 10; +"@MMK_R_X" = 10; +"@MMK_R_Y" = 10; +"@MMK_R_a" = -10; +"@MMK_R_f" = 20; +"@MMK_R_o" = -10; +"@MMK_R_t" = 10; +"@MMK_R_v" = 10; +"@MMK_R_w" = 10; +eth = -30; +}; +"@MMK_L_O" = { +"@MMK_R_A" = -20; +"@MMK_R_B" = -50; +"@MMK_R_I" = -10; +"@MMK_R_K" = -10; +"@MMK_R_T" = -20; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -20; +"@MMK_R_Y" = -30; +"@MMK_R_Z" = -10; +backslash = -10; +slash = -10; +}; +"@MMK_L_P" = { +"@MMK_R_A" = -50; +"@MMK_R_B" = -90; +"@MMK_R_J" = -70; +"@MMK_R_K" = -80; +"@MMK_R_T" = -10; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -30; +"@MMK_R_Y" = -40; +"@MMK_R_a" = -10; +"@MMK_R_o" = -10; +"@MMK_R_s" = -10; +"@MMK_R_x" = -10; +slash = -40; +}; +"@MMK_L_Q" = { +"@MMK_R_A" = 10; +"@MMK_R_B" = 20; +"@MMK_R_I" = -100; +"@MMK_R_J" = 10; +"@MMK_R_O" = -10; +"@MMK_R_T" = -80; +"@MMK_R_V" = -60; +"@MMK_R_W" = -30; +"@MMK_R_X" = 10; +"@MMK_R_Y" = -50; +"@MMK_R_f" = -20; +"@MMK_R_j" = 50; +"@MMK_R_t" = -20; +"@MMK_R_v" = -30; +"@MMK_R_w" = -20; +"@MMK_R_x" = 10; +}; +"@MMK_L_R" = { +"@MMK_R_B" = -20; +"@MMK_R_J" = -20; +"@MMK_R_L" = -10; +"@MMK_R_T" = -10; +"@MMK_R_V" = -10; +"@MMK_R_W" = -5; +"@MMK_R_Y" = -20; +"@MMK_R_o" = -10; +"@MMK_R_s" = -5; +"@MMK_R_v" = -5; +}; +"@MMK_L_S" = { +"@MMK_R_B" = -20; +"@MMK_R_T" = -10; +"@MMK_R_V" = -10; +"@MMK_R_Y" = -20; +}; +"@MMK_L_T" = { +"@MMK_R_A" = -50; +"@MMK_R_B" = -100; +"@MMK_R_C" = -20; +"@MMK_R_E" = -40; +"@MMK_R_F" = -40; +"@MMK_R_I" = 20; +"@MMK_R_J" = -60; +"@MMK_R_K" = -80; +"@MMK_R_L" = -60; +"@MMK_R_O" = -20; +"@MMK_R_T" = -10; +"@MMK_R_W" = -5; +"@MMK_R_X" = -10; +"@MMK_R_Z" = -10; +"@MMK_R_a" = -35; +"@MMK_R_n" = -20; +"@MMK_R_o" = -40; +"@MMK_R_p" = -20; +"@MMK_R_s" = -40; +"@MMK_R_u" = -20; +"@MMK_R_v" = -30; +"@MMK_R_w" = -20; +"@MMK_R_x" = -30; +"@MMK_R_z" = -20; +Germandbls = -10; +ibreve = 20; +icircumflex = 40; +idieresis = 40; +igrave = 10; +imacron = 30; +itilde = 30; +slash = -30; +}; +"@MMK_L_U" = { +"@MMK_R_A" = -10; +"@MMK_R_B" = -40; +}; +"@MMK_L_V" = { +"@MMK_R_A" = -40; +"@MMK_R_B" = -90; +"@MMK_R_C" = -20; +"@MMK_R_D" = -20; +"@MMK_R_F" = -30; +"@MMK_R_I" = 10; +"@MMK_R_J" = -50; +"@MMK_R_K" = -60; +"@MMK_R_L" = -30; +"@MMK_R_O" = -20; +"@MMK_R_S" = -5; +"@MMK_R_Z" = -10; +"@MMK_R_a" = -30; +"@MMK_R_n" = -20; +"@MMK_R_o" = -35; +"@MMK_R_p" = -20; +"@MMK_R_s" = -20; +"@MMK_R_u" = -20; +"@MMK_R_v" = -20; +"@MMK_R_w" = -10; +"@MMK_R_x" = -25; +"@MMK_R_z" = -20; +Germandbls = -20; +ibreve = 30; +icircumflex = 30; +idieresis = 50; +igrave = 30; +imacron = 30; +itilde = 30; +slash = -40; +}; +"@MMK_L_W" = { +"@MMK_R_A" = -20; +"@MMK_R_B" = -60; +"@MMK_R_C" = -10; +"@MMK_R_F" = -10; +"@MMK_R_I" = 10; +"@MMK_R_J" = -30; +"@MMK_R_K" = -30; +"@MMK_R_L" = -10; +"@MMK_R_O" = -10; +"@MMK_R_T" = -5; +"@MMK_R_a" = -15; +"@MMK_R_n" = -10; +"@MMK_R_o" = -15; +"@MMK_R_p" = -10; +"@MMK_R_s" = -15; +"@MMK_R_u" = -10; +"@MMK_R_v" = -5; +"@MMK_R_x" = -10; +"@MMK_R_z" = -10; +Germandbls = -10; +ibreve = 30; +icircumflex = 40; +idieresis = 50; +igrave = 20; +imacron = 30; +itilde = 30; +slash = -30; +}; +"@MMK_L_X" = { +"@MMK_R_B" = -20; +"@MMK_R_F" = -30; +"@MMK_R_I" = 10; +"@MMK_R_J" = -20; +"@MMK_R_K" = 10; +"@MMK_R_L" = -50; +"@MMK_R_O" = -30; +"@MMK_R_T" = -10; +"@MMK_R_a" = -10; +"@MMK_R_n" = 0; +"@MMK_R_o" = -25; +"@MMK_R_s" = -10; +"@MMK_R_u" = -10; +"@MMK_R_v" = -20; +"@MMK_R_w" = -5; +ibreve = 20; +idieresis = 40; +igrave = 20; +imacron = 20; +itilde = 10; +}; +"@MMK_L_Y" = { +"@MMK_R_A" = -50; +"@MMK_R_B" = -80; +"@MMK_R_C" = -30; +"@MMK_R_D" = -20; +"@MMK_R_F" = -40; +"@MMK_R_I" = 10; +"@MMK_R_J" = -80; +"@MMK_R_K" = -50; +"@MMK_R_L" = -70; +"@MMK_R_O" = -30; +"@MMK_R_S" = -20; +"@MMK_R_a" = -30; +"@MMK_R_n" = -20; +"@MMK_R_o" = -30; +"@MMK_R_p" = -20; +"@MMK_R_s" = -25; +"@MMK_R_u" = -20; +"@MMK_R_v" = -10; +"@MMK_R_x" = -25; +"@MMK_R_z" = -20; +Germandbls = -20; +ibreve = 30; +icircumflex = 10; +idieresis = 50; +igrave = 20; +imacron = 30; +itilde = 30; +slash = -30; +}; +"@MMK_L_Z" = { +"@MMK_R_F" = -30; +"@MMK_R_L" = -30; +"@MMK_R_O" = -10; +"@MMK_R_T" = -10; +"@MMK_R_V" = -10; +"@MMK_R_n" = 0; +"@MMK_R_o" = -10; +"@MMK_R_v" = -10; +"@MMK_R_w" = -5; +icircumflex = 20; +idieresis = 20; +imacron = 10; +itilde = 10; +}; +"@MMK_L_a" = { +"@MMK_R_A" = -20; +"@MMK_R_B" = -80; +"@MMK_R_J" = -20; +"@MMK_R_T" = -60; +"@MMK_R_V" = -30; +"@MMK_R_W" = -10; +"@MMK_R_X" = -40; +"@MMK_R_Y" = -70; +"@MMK_R_Z" = -30; +"@MMK_R_f" = -10; +"@MMK_R_x" = -40; +"@MMK_R_z" = -20; +Dcroat = 20; +eth = 10; +}; +"@MMK_L_b" = { +"@MMK_R_A" = -80; +"@MMK_R_B" = -100; +"@MMK_R_J" = -100; +"@MMK_R_t" = 10; +"@MMK_R_v" = 10; +"@MMK_R_w" = 10; +eth = -20; +}; +"@MMK_L_c" = { +"@MMK_R_I" = -10; +}; +"@MMK_L_f" = { +"@MMK_R_I" = 40; +"@MMK_R_K" = -40; +"@MMK_R_L" = -30; +"@MMK_R_M" = 20; +"@MMK_R_n" = 0; +ibreve = 40; +icircumflex = 60; +idieresis = 70; +igrave = 50; +imacron = 50; +itilde = 60; +slash = -30; +}; +"@MMK_L_i" = { +"@MMK_R_T" = 0; +"@MMK_R_V" = 0; +"@MMK_R_W" = 0; +"@MMK_R_X" = 0; +"@MMK_R_Y" = 0; +"@MMK_R_Z" = 0; +"@MMK_R_j" = 0; +}; +"@MMK_L_n" = { +"@MMK_R_I" = -10; +backslash = -10; +}; +"@MMK_L_o" = { +"@MMK_R_F" = 10; +"@MMK_R_I" = -10; +"@MMK_R_x" = -10; +}; +"@MMK_L_q" = { +"@MMK_R_j" = 30; +"@MMK_R_n" = 0; +idieresis = 20; +}; +"@MMK_L_r" = { +"@MMK_R_I" = 10; +"@MMK_R_K" = -40; +"@MMK_R_L" = -10; +"@MMK_R_M" = 10; +slash = -10; +}; +"@MMK_L_s" = { +"@MMK_R_I" = -10; +}; +"@MMK_L_t" = { +"@MMK_R_L" = -10; +"@MMK_R_M" = 10; +}; +"@MMK_L_tcaron" = { +"@MMK_R_H" = 140; +"@MMK_R_l" = 140; +"@MMK_R_n" = 120; +"@MMK_R_o" = 100; +}; +"@MMK_L_v" = { +"@MMK_R_I" = 10; +"@MMK_R_K" = -30; +"@MMK_R_M" = 10; +slash = -10; +}; +"@MMK_L_w" = { +"@MMK_R_I" = 10; +"@MMK_R_K" = -20; +"@MMK_R_M" = 10; +}; +"@MMK_L_x" = { +"@MMK_R_K" = 10; +"@MMK_R_L" = -50; +"@MMK_R_o" = -20; +backslash = -20; +}; +"@MMK_L_z" = { +"@MMK_R_L" = -20; +backslash = -20; +}; +Germandbls = { +"@MMK_R_I" = -40; +"@MMK_R_M" = -40; +"@MMK_R_T" = -40; +"@MMK_R_U" = -10; +"@MMK_R_V" = -50; +"@MMK_R_W" = -30; +"@MMK_R_Y" = -50; +"@MMK_R_v" = -10; +"@MMK_R_w" = -5; +"@MMK_R_x" = -10; +backslash = -30; +question = -30; +}; +Thorn = { +"@MMK_R_A" = -40; +"@MMK_R_B" = -80; +"@MMK_R_J" = -10; +"@MMK_R_K" = -50; +"@MMK_R_L" = 10; +"@MMK_R_S" = -10; +"@MMK_R_T" = -20; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -40; +"@MMK_R_Y" = -30; +"@MMK_R_Z" = -20; +}; +backslash = { +"@MMK_R_O" = -10; +"@MMK_R_T" = -40; +"@MMK_R_V" = -40; +"@MMK_R_W" = -30; +"@MMK_R_Y" = -40; +"@MMK_R_j" = 90; +"@MMK_R_v" = -10; +}; +dcaron = { +"@MMK_R_E" = 10; +"@MMK_R_H" = 140; +"@MMK_R_K" = -20; +"@MMK_R_L" = -30; +"@MMK_R_M" = 30; +"@MMK_R_l" = 140; +"@MMK_R_n" = 120; +"@MMK_R_o" = 100; +backslash = 30; +}; +eth = { +"@MMK_R_I" = -20; +"@MMK_R_L" = 10; +backslash = -20; +}; +four = { +seven = -10; +}; +germandbls = { +"@MMK_R_I" = -50; +"@MMK_R_M" = -50; +backslash = -30; +question = -40; +}; +iacute = { +"@MMK_R_T" = 10; +"@MMK_R_V" = 20; +"@MMK_R_W" = 20; +"@MMK_R_X" = 10; +"@MMK_R_Y" = 20; +}; +ibreve = { +"@MMK_R_T" = 20; +"@MMK_R_V" = 30; +"@MMK_R_W" = 30; +"@MMK_R_X" = 20; +"@MMK_R_Y" = 30; +}; +icircumflex = { +"@MMK_R_T" = 40; +"@MMK_R_V" = 30; +"@MMK_R_W" = 40; +"@MMK_R_Y" = 10; +"@MMK_R_Z" = 20; +}; +idieresis = { +"@MMK_R_T" = 40; +"@MMK_R_V" = 50; +"@MMK_R_W" = 50; +"@MMK_R_X" = 40; +"@MMK_R_Y" = 50; +"@MMK_R_Z" = 20; +"@MMK_R_j" = 20; +}; +imacron = { +"@MMK_R_T" = 30; +"@MMK_R_V" = 30; +"@MMK_R_W" = 30; +"@MMK_R_X" = 20; +"@MMK_R_Y" = 30; +"@MMK_R_Z" = 10; +}; +itilde = { +"@MMK_R_T" = 30; +"@MMK_R_V" = 40; +"@MMK_R_W" = 40; +"@MMK_R_X" = 30; +"@MMK_R_Y" = 40; +"@MMK_R_Z" = 10; +}; +lcaron = { +"@MMK_R_H" = 140; +"@MMK_R_l" = 140; +"@MMK_R_n" = 100; +"@MMK_R_o" = 100; +}; +questiondown = { +"@MMK_R_J" = -50; +"@MMK_R_O" = -60; +"@MMK_R_T" = -100; +"@MMK_R_U" = -70; +"@MMK_R_V" = -80; +"@MMK_R_W" = -50; +"@MMK_R_Y" = -100; +"@MMK_R_j" = 50; +}; +seven = { +eight = -10; +four = -40; +six = -10; +three = -10; +two = -10; +zero = -10; +}; +slash = { +"@MMK_R_A" = -40; +"@MMK_R_B" = -80; +"@MMK_R_J" = -40; +"@MMK_R_O" = -10; +"@MMK_R_x" = -20; +"@MMK_R_z" = -20; +eth = -30; +}; +two = { +four = -20; +seven = -10; +}; +}; +}; +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 Radio Canada Display Project Authors (https://github.com/googlefonts/radiocanadadisplay)"; +} +); +}, +{ +key = designers; +values = ( +{ +language = dflt; +value = "Étienne Aubert Bonn"; +} +); +}, +{ +key = designerURL; +value = "http://www.coppersandbrasses.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://openfontlicense.org"; +} +); +}, +{ +key = licenseURL; +value = "https://openfontlicense.org"; +}, +{ +key = manufacturers; +values = ( +{ +language = dflt; +value = "Coppers and Brasses"; +} +); +}, +{ +key = manufacturerURL; +value = "http://www.coppersandbrasses.com"; +}, +{ +key = vendorID; +value = "C&B "; +} +); +stems = ( +{ +horizontal = 1; +name = hStem0; +}, +{ +horizontal = 1; +name = hStem0; +}, +{ +horizontal = 1; +name = hStem0; +}, +{ +horizontal = 1; +name = hStem0; +}, +{ +horizontal = 1; +name = hStem0; +} +); +unitsPerEm = 1000; +userData = { +UFO.lib = { +com.defcon.sortDescriptor = ( +{ +allowPseudoUnicode = 0; +ascending = "Radio-Canada Display"; +type = characterSet; +} +); +com.typemytype.robofont.compileSettings.autohint = 1; +com.typemytype.robofont.compileSettings.checkOutlines = 1; +com.typemytype.robofont.compileSettings.createDummyDSIG = 1; +com.typemytype.robofont.compileSettings.decompose = 1; +com.typemytype.robofont.compileSettings.generateFormat = 0; +com.typemytype.robofont.compileSettings.releaseMode = 1; +com.typemytype.robofont.generateFeaturesWithFontTools = 0; +com.typemytype.robofont.italicSlantOffset = 0; +com.typemytype.robofont.shouldAddPointsInSplineConversion = 1; +com.typesupply.metricsMachine4.groupColors = { +public.kern1.A = ( +1, +0, +0, +0.25 +); +public.kern1.B = ( +1, +0.5, +0, +0.25 +); +public.kern1.C = ( +1, +1, +0, +0.25 +); +public.kern1.D = ( +0, +1, +0, +0.25 +); +public.kern1.E = ( +0, +1, +1, +0.25 +); +public.kern1.F = ( +0, +0.5, +1, +0.25 +); +public.kern1.G = ( +0, +0, +1, +0.25 +); +public.kern1.H = ( +0.5, +0, +1, +0.25 +); +public.kern1.I = ( +1, +0, +0.5, +0.25 +); +public.kern1.J = ( +1, +0.5, +0, +0.25 +); +public.kern1.K = ( +1, +0, +0, +0.25 +); +public.kern1.L = ( +1, +0, +0, +0.25 +); +public.kern1.M = ( +0, +1, +1, +0.25 +); +public.kern1.N = ( +0, +0.5, +1, +0.25 +); +public.kern1.O = ( +0, +1, +0, +0.25 +); +public.kern1.P = ( +1, +0.5, +0, +0.25 +); +public.kern1.Q = ( +0.5, +0, +1, +0.25 +); +public.kern1.R = ( +1, +1, +0, +0.25 +); +public.kern1.S = ( +0, +1, +0, +0.25 +); +public.kern1.T = ( +0, +1, +1, +0.25 +); +public.kern1.U = ( +1, +0, +1, +0.25 +); +public.kern1.V = ( +0, +0.5, +1, +0.25 +); +public.kern1.W = ( +0, +0, +1, +0.25 +); +public.kern1.X = ( +1, +0, +0.5, +0.25 +); +public.kern1.Y = ( +0.5, +0, +1, +0.25 +); +public.kern1.Z = ( +1, +0, +1, +0.25 +); +public.kern1.a = ( +0, +0, +1, +0.25 +); +public.kern1.b = ( +1, +0, +1, +0.25 +); +public.kern1.c = ( +1, +0.5, +0, +0.25 +); +public.kern1.f = ( +0, +1, +0, +0.25 +); +public.kern1.i = ( +0, +0.5, +1, +0.25 +); +public.kern1.l = ( +1, +1, +0, +0.25 +); +public.kern1.n = ( +1, +0, +0.5, +0.25 +); +public.kern1.o = ( +1, +0, +0, +0.25 +); +public.kern1.q = ( +0, +1, +1, +0.25 +); +public.kern1.r = ( +0.5, +0, +1, +0.25 +); +public.kern1.s = ( +1, +0, +1, +0.25 +); +public.kern1.t = ( +1, +0, +0.5, +0.25 +); +public.kern1.v = ( +1, +0, +0, +0.25 +); +public.kern1.w = ( +1, +0.5, +0, +0.25 +); +public.kern1.x = ( +0, +0, +1, +0.25 +); +public.kern1.z = ( +1, +1, +0, +0.25 +); +public.kern2.A = ( +1, +0, +0, +0.25 +); +public.kern2.B = ( +0, +0, +1, +0.25 +); +public.kern2.C = ( +0.5, +0, +1, +0.25 +); +public.kern2.D = ( +0, +1, +0, +0.25 +); +public.kern2.E = ( +0, +0.5, +1, +0.25 +); +public.kern2.F = ( +0, +1, +1, +0.25 +); +public.kern2.G = ( +1, +0, +1, +0.25 +); +public.kern2.H = ( +1, +0.5, +0, +0.25 +); +public.kern2.I = ( +1, +0, +0, +0.25 +); +public.kern2.J = ( +0, +1, +0, +0.25 +); +public.kern2.K = ( +1, +0.5, +0, +0.25 +); +public.kern2.L = ( +1, +1, +0, +0.25 +); +public.kern2.M = ( +1, +0, +0.5, +0.25 +); +public.kern2.O = ( +1, +1, +0, +0.25 +); +public.kern2.S = ( +0, +1, +1, +0.25 +); +public.kern2.T = ( +0, +0.5, +1, +0.25 +); +public.kern2.U = ( +0, +0, +1, +0.25 +); +public.kern2.V = ( +0.5, +0, +1, +0.25 +); +public.kern2.W = ( +1, +0, +1, +0.25 +); +public.kern2.X = ( +1, +0, +0.5, +0.25 +); +public.kern2.Y = ( +1, +0, +0, +0.25 +); +public.kern2.Z = ( +1, +0.5, +0, +0.25 +); +public.kern2.a = ( +1, +1, +0, +0.25 +); +public.kern2.f = ( +0, +0.5, +1, +0.25 +); +public.kern2.j = ( +0.5, +0, +1, +0.25 +); +public.kern2.l = ( +0, +1, +0, +0.25 +); +public.kern2.n = ( +0, +0, +1, +0.25 +); +public.kern2.o = ( +0, +1, +1, +0.25 +); +public.kern2.p = ( +1, +0, +1, +0.25 +); +public.kern2.s = ( +1, +0, +0.5, +0.25 +); +public.kern2.t = ( +1, +0, +0, +0.25 +); +public.kern2.u = ( +1, +0.5, +0, +0.25 +); +public.kern2.v = ( +1, +1, +0, +0.25 +); +public.kern2.w = ( +0, +1, +0, +0.25 +); +public.kern2.x = ( +0, +1, +1, +0.25 +); +public.kern2.z = ( +0, +0.5, +1, +0.25 +); +}; +}; +UFOFormat = 3; +UFOLayerName = foreground; +}; +versionMajor = 1; +versionMinor = 1; +} diff --git a/sources/RadioCanadaDisplay.glyphs b/sources/RadioCanadaDisplay.glyphs new file mode 100644 index 0000000..c6c0154 --- /dev/null +++ b/sources/RadioCanadaDisplay.glyphs @@ -0,0 +1,73762 @@ +{ +.appVersion = "3249"; +.formatVersion = 3; +axes = ( +{ +name = Weight; +tag = wght; +} +); +classes = ( +{ +automatic = 1; +code = "A Aacute Abreve Acircumflex Adieresis Adotbelow Agrave Amacron Aogonek Aring Aringacute Atilde AE AEacute B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Dcaron Dcroat Eth E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Edotbelow Egrave Emacron Eogonek Etilde Schwa F G Gbreve Gcaron Gcircumflex Gcommaaccent Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Idotbelow Igrave Imacron Iogonek Itilde J Jcircumflex K Kcommaaccent L Lacute Lcaron Lcommaaccent Ldot Lslash M N Nacute Ncaron Ncommaaccent Nhookleft Ntilde Eng O Oacute Obreve Ocircumflex Odieresis Odotbelow Ograve Ohungarumlaut Omacron Oogonek Oslash Oslashacute Otilde OE P Thorn Q R Racute Rcaron Rcedilla S Sacute Scaron Scedilla Scircumflex Scommaaccent Germandbls T Tbar Tcaron Tcedilla Tcommaaccent U Uacute Ubreve Ucircumflex Udieresis Udotbelow Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ygrave Ymacron Ytilde Z Zacute Zcaron Zdotaccent Delta Omega"; +name = Uppercase; +} +); +customParameters = ( +{ +name = fsType; +value = ( +); +}, +{ +name = "Use Typo Metrics"; +value = 1; +} +); +date = "2024-03-20 13:28:04 +0000"; +familyName = "Radio Canada Display"; +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; +"; +name = Languagesystems; +} +); +features = ( +{ +automatic = 1; +code = "feature locl; +feature sups; +feature frac; +feature ordn; +feature case; +feature pnum; +feature tnum; +"; +tag = aalt; +}, +{ +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; +"; +tag = locl; +}, +{ +code = "sub f f i by f_f_i; +sub f f ij by f_f_ij; +sub f f l by f_f_l; +sub f f by f_f; +sub f i by f_i; +sub f ij by f_ij; +sub f l by f_l;"; +tag = liga; +}, +{ +automatic = 1; +code = "lookup ccmp_Other_1 { + @CombiningTopAccents = [acutecomb brevecomb caroncomb circumflexcomb dieresiscomb dotaccentcomb gravecomb hungarumlautcomb macroncomb ringcomb tildecomb]; + lookupflag UseMarkFilteringSet @CombiningTopAccents; + sub i' @CombiningTopAccents by idotless; + sub j' @CombiningTopAccents by jdotless; +} ccmp_Other_1; + +lookup ccmp_Other_2 { + lookupflag 0; + @Markscomb = [dieresiscomb dotaccentcomb gravecomb acutecomb hungarumlautcomb circumflexcomb caroncomb brevecomb ringcomb tildecomb macroncomb]; + @MarkscombCase = [dieresiscomb.case dotaccentcomb.case gravecomb.case acutecomb.case hungarumlautcomb.case circumflexcomb.case caroncomb.case brevecomb.case ringcomb.case tildecomb.case macroncomb.case]; + sub @Uppercase @Markscomb' by @MarkscombCase; +} ccmp_Other_2; + +lookup ccmp_Other_3 { + lookupflag 0; + sub @MarkscombCase @Markscomb' by @MarkscombCase; +} ccmp_Other_3; + +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 = "sub one by onesuperior; +sub two by twosuperior; +sub three by threesuperior; +"; +tag = sups; +}, +{ +automatic = 1; +code = "sub one slash four by onequarter; +sub one slash two by onehalf; +sub three slash four by threequarters; +"; +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; +sub space.tf by space; +sub period.tf by period; +sub comma.tf by comma; +sub colon.tf by colon; +sub semicolon.tf by semicolon; +"; +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; +sub space by space.tf; +sub period by period.tf; +sub comma by comma.tf; +sub colon by colon.tf; +sub semicolon by semicolon.tf; +"; +tag = tnum; +}, +{ +automatic = 1; +code = "sub periodcentered.loclCAT by periodcentered.loclCAT.case; +sub dieresiscomb by dieresiscomb.case; +sub dotaccentcomb by dotaccentcomb.case; +sub gravecomb by gravecomb.case; +sub acutecomb by acutecomb.case; +sub hungarumlautcomb by hungarumlautcomb.case; +sub circumflexcomb by circumflexcomb.case; +sub caroncomb by caroncomb.case; +sub brevecomb by brevecomb.case; +sub ringcomb by ringcomb.case; +sub tildecomb by tildecomb.case; +sub macroncomb by macroncomb.case; +"; +tag = case; +}, +{ +automatic = 1; +code = "lookupflag IgnoreMarks; +sub f f ij by f_f_ij; +sub f ij by f_ij; +"; +tag = dlig; +} +); +fontMaster = ( +{ +axesValues = ( +400 +); +customParameters = ( +{ +name = typoAscender; +value = 950; +}, +{ +name = typoDescender; +value = -250; +}, +{ +name = typoLineGap; +value = 0; +}, +{ +name = hheaAscender; +value = 950; +}, +{ +name = hheaDescender; +value = -250; +}, +{ +name = hheaLineGap; +value = 0; +}, +{ +name = winAscent; +value = 1063; +}, +{ +name = winDescent; +value = 275; +} +); +id = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +metricValues = ( +{ +over = 10; +pos = 715; +}, +{ +over = 10; +pos = 690; +}, +{ +over = 10; +pos = 530; +}, +{ +over = -10; +}, +{ +over = -10; +pos = -175; +} +); +name = Regular; +stemValues = ( +85, +85, +85, +81, +81, +81, +100, +105, +87, +96 +); +userData = { +layerinfo.color = "1,0.75,0,0.7"; +}; +}, +{ +axesValues = ( +700 +); +customParameters = ( +{ +name = typoAscender; +value = 950; +}, +{ +name = typoDescender; +value = -250; +}, +{ +name = typoLineGap; +value = 0; +}, +{ +name = hheaAscender; +value = 950; +}, +{ +name = hheaDescender; +value = -250; +}, +{ +name = hheaLineGap; +value = 0; +}, +{ +name = winAscent; +value = 1063; +}, +{ +name = winDescent; +value = 275; +} +); +iconName = Bold; +id = m001; +metricValues = ( +{ +over = 15; +pos = 715; +}, +{ +over = 14; +pos = 690; +}, +{ +over = 14; +pos = 530; +}, +{ +over = -14; +}, +{ +over = -15; +pos = -175; +} +); +name = Bold; +stemValues = ( +139, +149, +155, +123, +135, +145, +0, +0, +0, +0 +); +userData = { +layerinfo.color = "1,0.75,0,0.7"; +}; +} +); +glyphs = ( +{ +color = 6; +glyphname = A; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 13:34:41 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = ogonek; +pos = (675,0); +}, +{ +name = top; +pos = (337,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(675,0,l), +(454,690,l), +(299,690,l), +(509,0,l) +); +}, +{ +closed = 1; +nodes = ( +(163,0,l), +(367,690,l), +(221,690,l), +(0,0,l) +); +}, +{ +closed = 1; +nodes = ( +(521,158,l), +(521,295,l), +(153,295,l), +(153,158,l) +); +} +); +width = 675; +}, +{ +anchors = ( +{ +name = bottom; +pos = (331,0); +}, +{ +name = ogonek; +pos = (645,0); +}, +{ +name = top; +pos = (331,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (331,0); +}, +{ +name = top; +pos = (331,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(645,0,l), +(406,690,l), +(304,690,l), +(535,0,l) +); +}, +{ +closed = 1; +nodes = ( +(122,0,l), +(348,690,l), +(254,690,l), +(15,0,l) +); +}, +{ +closed = 1; +nodes = ( +(514,191,l), +(514,287,l), +(146,287,l), +(146,191,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(645,0,l), +(406,690,l), +(304,690,l), +(535,0,l) +); +}, +{ +closed = 1; +nodes = ( +(122,0,l), +(348,690,l), +(254,690,l), +(15,0,l) +); +}, +{ +closed = 1; +nodes = ( +(514,191,l), +(514,287,l), +(146,287,l), +(146,191,l) +); +} +); +width = 660; +}, +{ +anchors = ( +{ +name = bottom; +pos = (331,0); +}, +{ +name = top; +pos = (331,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(146,191,l), +(514,191,l), +(514,287,l), +(146,287,l) +); +}, +{ +closed = 1; +nodes = ( +(304,690,l), +(535,0,l), +(645,0,l), +(406,690,l) +); +}, +{ +closed = 1; +nodes = ( +(254,690,l), +(15,0,l), +(122,0,l), +(348,690,l) +); +} +); +width = 660; +} +); +unicode = 65; +}, +{ +color = 10; +glyphname = Aacute; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (87,0); +ref = acutecomb.case; +} +); +width = 675; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (331,0); +}, +{ +name = top; +pos = (331,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(645,0,l), +(406,690,l), +(304,690,l), +(535,0,l) +); +}, +{ +closed = 1; +nodes = ( +(122,0,l), +(348,690,l), +(254,690,l), +(15,0,l) +); +}, +{ +closed = 1; +nodes = ( +(514,191,l), +(514,287,l), +(146,287,l), +(146,191,l) +); +}, +{ +closed = 1; +nodes = ( +(364,735,l), +(501,845,l), +(370,845,l), +(270,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = A; +}, +{ +pos = (81,0); +ref = acutecomb.case; +} +); +width = 660; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = A; +}, +{ +pos = (81,0); +ref = acutecomb.case; +} +); +width = 660; +} +); +unicode = 193; +}, +{ +color = 10; +glyphname = Abreve; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (87,0); +ref = brevecomb.case; +} +); +width = 675; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (331,0); +}, +{ +name = top; +pos = (331,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(645,0,l), +(406,690,l), +(304,690,l), +(535,0,l) +); +}, +{ +closed = 1; +nodes = ( +(122,0,l), +(348,690,l), +(254,690,l), +(15,0,l) +); +}, +{ +closed = 1; +nodes = ( +(514,191,l), +(514,287,l), +(146,287,l), +(146,191,l) +); +}, +{ +closed = 1; +nodes = ( +(428,735,o), +(476,777,o), +(481,845,c), +(411,845,l), +(407,820,o), +(386,805,o), +(331,805,c), +(276,805,o), +(255,820,o), +(251,845,c), +(181,845,l), +(186,777,o), +(234,735,o), +(331,735,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = A; +}, +{ +pos = (81,0); +ref = brevecomb.case; +} +); +width = 660; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = A; +}, +{ +pos = (81,0); +ref = brevecomb.case; +} +); +width = 660; +} +); +unicode = 258; +}, +{ +color = 10; +glyphname = Acircumflex; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (87,0); +ref = circumflexcomb.case; +} +); +width = 675; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (331,0); +}, +{ +name = top; +pos = (331,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(645,0,l), +(406,690,l), +(304,690,l), +(535,0,l) +); +}, +{ +closed = 1; +nodes = ( +(122,0,l), +(348,690,l), +(254,690,l), +(15,0,l) +); +}, +{ +closed = 1; +nodes = ( +(514,191,l), +(514,287,l), +(146,287,l), +(146,191,l) +); +}, +{ +closed = 1; +nodes = ( +(514,735,l), +(400,845,l), +(266,845,l), +(415,735,l) +); +}, +{ +closed = 1; +nodes = ( +(247,735,l), +(396,845,l), +(262,845,l), +(148,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = A; +}, +{ +pos = (81,0); +ref = circumflexcomb.case; +} +); +width = 660; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = A; +}, +{ +pos = (81,0); +ref = circumflexcomb.case; +} +); +width = 660; +} +); +unicode = 194; +}, +{ +color = 10; +glyphname = Adieresis; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (87,0); +ref = dieresiscomb.case; +} +); +width = 675; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (331,0); +}, +{ +name = top; +pos = (331,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(645,0,l), +(406,690,l), +(304,690,l), +(535,0,l) +); +}, +{ +closed = 1; +nodes = ( +(122,0,l), +(348,690,l), +(254,690,l), +(15,0,l) +); +}, +{ +closed = 1; +nodes = ( +(514,191,l), +(514,287,l), +(146,287,l), +(146,191,l) +); +}, +{ +closed = 1; +nodes = ( +(464,742,o), +(489,765,o), +(489,798,cs), +(489,832,o), +(464,855,o), +(432,855,cs), +(400,855,o), +(375,832,o), +(375,798,cs), +(375,765,o), +(400,742,o), +(432,742,cs) +); +}, +{ +closed = 1; +nodes = ( +(262,742,o), +(287,765,o), +(287,798,cs), +(287,832,o), +(262,855,o), +(230,855,cs), +(198,855,o), +(173,832,o), +(173,798,cs), +(173,765,o), +(198,742,o), +(230,742,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = A; +}, +{ +pos = (81,0); +ref = dieresiscomb.case; +} +); +width = 660; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = A; +}, +{ +pos = (81,0); +ref = dieresiscomb.case; +} +); +width = 660; +} +); +unicode = 196; +}, +{ +color = 10; +glyphname = Adotbelow; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (87,0); +ref = dotbelow; +} +); +width = 675; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (331,0); +}, +{ +name = top; +pos = (331,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(645,0,l), +(406,690,l), +(304,690,l), +(535,0,l) +); +}, +{ +closed = 1; +nodes = ( +(122,0,l), +(348,690,l), +(254,690,l), +(15,0,l) +); +}, +{ +closed = 1; +nodes = ( +(514,191,l), +(514,287,l), +(146,287,l), +(146,191,l) +); +}, +{ +closed = 1; +nodes = ( +(366,-195,o), +(393,-170,o), +(393,-133,cs), +(393,-97,o), +(366,-72,o), +(331,-72,cs), +(296,-72,o), +(269,-97,o), +(269,-133,cs), +(269,-170,o), +(296,-195,o), +(331,-195,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = A; +}, +{ +pos = (81,0); +ref = dotbelow; +} +); +width = 660; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = A; +}, +{ +pos = (81,0); +ref = dotbelow; +} +); +width = 660; +} +); +unicode = 7840; +}, +{ +color = 10; +glyphname = Agrave; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (87,0); +ref = gravecomb.case; +} +); +width = 675; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (331,0); +}, +{ +name = top; +pos = (331,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(645,0,l), +(406,690,l), +(304,690,l), +(535,0,l) +); +}, +{ +closed = 1; +nodes = ( +(122,0,l), +(348,690,l), +(254,690,l), +(15,0,l) +); +}, +{ +closed = 1; +nodes = ( +(514,191,l), +(514,287,l), +(146,287,l), +(146,191,l) +); +}, +{ +closed = 1; +nodes = ( +(392,735,l), +(292,845,l), +(161,845,l), +(298,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = A; +}, +{ +pos = (81,0); +ref = gravecomb.case; +} +); +width = 660; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = A; +}, +{ +pos = (81,0); +ref = gravecomb.case; +} +); +width = 660; +} +); +unicode = 192; +}, +{ +color = 10; +glyphname = Amacron; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (87,0); +ref = macroncomb.case; +} +); +width = 675; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (331,0); +}, +{ +name = top; +pos = (331,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(645,0,l), +(406,690,l), +(304,690,l), +(535,0,l) +); +}, +{ +closed = 1; +nodes = ( +(122,0,l), +(348,690,l), +(254,690,l), +(15,0,l) +); +}, +{ +closed = 1; +nodes = ( +(514,191,l), +(514,287,l), +(146,287,l), +(146,191,l) +); +}, +{ +closed = 1; +nodes = ( +(489,753,l), +(489,837,l), +(173,837,l), +(173,753,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = A; +}, +{ +pos = (81,0); +ref = macroncomb.case; +} +); +width = 660; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = A; +}, +{ +pos = (81,0); +ref = macroncomb.case; +} +); +width = 660; +} +); +unicode = 256; +}, +{ +color = 10; +glyphname = Aogonek; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 13:34:41 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (336,0); +ref = ogonekcomb; +} +); +width = 675; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(645,0,l), +(406,690,l), +(304,690,l), +(535,0,l) +); +}, +{ +closed = 1; +nodes = ( +(582,-185,o), +(617,-176,o), +(645,-165,c), +(636,-84,l), +(613,-94,o), +(579,-106,o), +(559,-106,c), +(546,-106,o), +(538,-101,o), +(538,-89,c), +(538,-65,o), +(575,-34,o), +(645,0,c), +(535,0,l), +(477,-37,o), +(454,-69,o), +(454,-111,c), +(454,-153,o), +(488,-185,o), +(553,-185,cs) +); +}, +{ +closed = 1; +nodes = ( +(122,0,l), +(348,690,l), +(254,690,l), +(15,0,l) +); +}, +{ +closed = 1; +nodes = ( +(514,191,l), +(514,287,l), +(146,287,l), +(146,191,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = A; +}, +{ +pos = (341,0); +ref = ogonekcomb; +} +); +width = 660; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(477,-37,o), +(454,-69,o), +(454,-111,c), +(454,-153,o), +(488,-185,o), +(553,-185,cs), +(582,-185,o), +(617,-176,o), +(645,-165,c), +(636,-84,l), +(613,-94,o), +(579,-106,o), +(559,-106,c), +(546,-106,o), +(538,-101,o), +(538,-89,c), +(538,-65,o), +(575,-34,o), +(645,0,c), +(535,0,l) +); +}, +{ +closed = 1; +nodes = ( +(146,191,l), +(514,191,l), +(514,287,l), +(146,287,l) +); +}, +{ +closed = 1; +nodes = ( +(304,690,l), +(535,0,l), +(645,0,l), +(406,690,l) +); +}, +{ +closed = 1; +nodes = ( +(254,690,l), +(15,0,l), +(122,0,l), +(348,690,l) +); +} +); +width = 660; +} +); +unicode = 260; +}, +{ +color = 10; +glyphname = Aring; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (87,0); +ref = ringcomb.case; +} +); +width = 675; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (331,0); +}, +{ +name = top; +pos = (331,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(645,0,l), +(406,690,l), +(304,690,l), +(535,0,l) +); +}, +{ +closed = 1; +nodes = ( +(122,0,l), +(348,690,l), +(254,690,l), +(15,0,l) +); +}, +{ +closed = 1; +nodes = ( +(514,191,l), +(514,287,l), +(146,287,l), +(146,191,l) +); +}, +{ +closed = 1; +nodes = ( +(387,735,o), +(428,769,o), +(428,821,cs), +(428,874,o), +(387,908,o), +(331,908,cs), +(275,908,o), +(234,874,o), +(234,821,cs), +(234,769,o), +(275,735,o), +(331,735,cs) +); +}, +{ +closed = 1; +nodes = ( +(310,790,o), +(297,804,o), +(297,821,cs), +(297,839,o), +(310,853,o), +(331,853,cs), +(352,853,o), +(365,839,o), +(365,821,cs), +(365,804,o), +(352,790,o), +(331,790,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = A; +}, +{ +pos = (81,0); +ref = ringcomb.case; +} +); +width = 660; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = A; +}, +{ +pos = (81,0); +ref = ringcomb.case; +} +); +width = 660; +} +); +unicode = 197; +}, +{ +color = 10; +glyphname = Aringacute; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 13:44:07 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (87,0); +ref = ringcomb.case; +}, +{ +pos = (87,227); +ref = acutecomb.case; +} +); +width = 675; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (331,0); +}, +{ +name = top; +pos = (331,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(645,0,l), +(406,690,l), +(304,690,l), +(535,0,l) +); +}, +{ +closed = 1; +nodes = ( +(122,0,l), +(348,690,l), +(254,690,l), +(15,0,l) +); +}, +{ +closed = 1; +nodes = ( +(514,191,l), +(514,287,l), +(146,287,l), +(146,191,l) +); +}, +{ +closed = 1; +nodes = ( +(387,735,o), +(428,769,o), +(428,821,cs), +(428,874,o), +(387,908,o), +(331,908,cs), +(275,908,o), +(234,874,o), +(234,821,cs), +(234,769,o), +(275,735,o), +(331,735,cs) +); +}, +{ +closed = 1; +nodes = ( +(310,790,o), +(297,804,o), +(297,821,cs), +(297,839,o), +(310,853,o), +(331,853,cs), +(352,853,o), +(365,839,o), +(365,821,cs), +(365,804,o), +(352,790,o), +(331,790,cs) +); +}, +{ +closed = 1; +nodes = ( +(365,925,l), +(478,1015,l), +(377,1015,l), +(287,925,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = A; +}, +{ +pos = (81,0); +ref = ringcomb.case; +}, +{ +pos = (81,190); +ref = acutecomb.case; +} +); +width = 660; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = A; +} +); +width = 660; +} +); +unicode = 506; +}, +{ +color = 10; +glyphname = Atilde; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (87,0); +ref = tildecomb.case; +} +); +width = 675; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (331,0); +}, +{ +name = top; +pos = (331,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(645,0,l), +(406,690,l), +(304,690,l), +(535,0,l) +); +}, +{ +closed = 1; +nodes = ( +(122,0,l), +(348,690,l), +(254,690,l), +(15,0,l) +); +}, +{ +closed = 1; +nodes = ( +(514,191,l), +(514,287,l), +(146,287,l), +(146,191,l) +); +}, +{ +closed = 1; +nodes = ( +(239,735,l), +(240,757,o), +(252,773,o), +(273,773,c), +(304,773,o), +(334,735,o), +(391,735,c), +(448,735,o), +(484,777,o), +(491,845,c), +(423,845,l), +(422,823,o), +(410,807,o), +(389,807,c), +(359,807,o), +(328,845,o), +(271,845,c), +(214,845,o), +(178,803,o), +(171,735,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = A; +}, +{ +pos = (81,0); +ref = tildecomb.case; +} +); +width = 660; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = A; +}, +{ +pos = (81,0); +ref = tildecomb.case; +} +); +width = 660; +} +); +unicode = 195; +}, +{ +color = 6; +glyphname = AE; +kernLeft = B; +kernRight = E; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (536,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(173,0,l), +(519,690,l), +(364,690,l), +(0,0,l) +); +}, +{ +closed = 1; +nodes = ( +(503,162,l), +(503,295,l), +(213,295,l), +(213,162,l) +); +}, +{ +closed = 1; +nodes = ( +(956,0,l), +(956,145,l), +(529,145,l), +(529,0,l) +); +}, +{ +closed = 1; +nodes = ( +(616,0,l), +(616,690,l), +(461,690,l), +(461,0,l) +); +}, +{ +closed = 1; +nodes = ( +(909,282,l), +(909,419,l), +(529,419,l), +(529,282,l) +); +}, +{ +closed = 1; +nodes = ( +(952,545,l), +(952,690,l), +(529,690,l), +(529,545,l) +); +} +); +width = 992; +}, +{ +anchors = ( +{ +name = top; +pos = (506,690); +} +); +background = { +anchors = ( +{ +name = top; +pos = (506,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(120,0,l), +(488,690,l), +(388,690,l), +(6,0,l) +); +}, +{ +closed = 1; +nodes = ( +(505,193,l), +(505,287,l), +(197,287,l), +(197,193,l) +); +}, +{ +closed = 1; +nodes = ( +(924,0,l), +(924,96,l), +(504,96,l), +(504,0,l) +); +}, +{ +closed = 1; +nodes = ( +(559,0,l), +(559,690,l), +(454,690,l), +(454,0,l) +); +}, +{ +closed = 1; +nodes = ( +(859,306,l), +(859,402,l), +(504,402,l), +(504,306,l) +); +}, +{ +closed = 1; +nodes = ( +(919,594,l), +(919,690,l), +(504,690,l), +(504,594,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(120,0,l), +(488,690,l), +(388,690,l), +(6,0,l) +); +}, +{ +closed = 1; +nodes = ( +(505,193,l), +(505,287,l), +(197,287,l), +(197,193,l) +); +}, +{ +closed = 1; +nodes = ( +(924,0,l), +(924,96,l), +(504,96,l), +(504,0,l) +); +}, +{ +closed = 1; +nodes = ( +(559,0,l), +(559,690,l), +(454,690,l), +(454,0,l) +); +}, +{ +closed = 1; +nodes = ( +(859,306,l), +(859,402,l), +(504,402,l), +(504,306,l) +); +}, +{ +closed = 1; +nodes = ( +(919,594,l), +(919,690,l), +(504,690,l), +(504,594,l) +); +} +); +width = 970; +}, +{ +anchors = ( +{ +name = top; +pos = (506,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(321,690,l), +(552,0,l), +(662,0,l), +(423,690,l) +); +}, +{ +closed = 1; +nodes = ( +(271,690,l), +(32,0,l), +(139,0,l), +(365,690,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(559,0,l), +(559,690,l), +(454,690,l), +(454,0,l) +); +}, +{ +closed = 1; +nodes = ( +(504,306,l), +(859,306,l), +(859,402,l), +(504,402,l) +); +}, +{ +closed = 1; +nodes = ( +(504,0,l), +(924,0,l), +(924,96,l), +(504,96,l) +); +}, +{ +closed = 1; +nodes = ( +(504,594,l), +(919,594,l), +(919,690,l), +(504,690,l) +); +}, +{ +closed = 1; +nodes = ( +(197,193,l), +(505,193,l), +(505,287,l), +(197,287,l) +); +}, +{ +closed = 1; +nodes = ( +(388,690,l), +(6,0,l), +(120,0,l), +(488,690,l) +); +} +); +width = 970; +} +); +unicode = 198; +}, +{ +color = 10; +glyphname = AEacute; +kernLeft = B; +kernRight = E; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = AE; +}, +{ +pos = (286,0); +ref = acutecomb.case; +} +); +width = 992; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (506,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(120,0,l), +(488,690,l), +(388,690,l), +(6,0,l) +); +}, +{ +closed = 1; +nodes = ( +(505,193,l), +(505,287,l), +(197,287,l), +(197,193,l) +); +}, +{ +closed = 1; +nodes = ( +(924,0,l), +(924,96,l), +(504,96,l), +(504,0,l) +); +}, +{ +closed = 1; +nodes = ( +(559,0,l), +(559,690,l), +(454,690,l), +(454,0,l) +); +}, +{ +closed = 1; +nodes = ( +(859,306,l), +(859,402,l), +(504,402,l), +(504,306,l) +); +}, +{ +closed = 1; +nodes = ( +(919,594,l), +(919,690,l), +(504,690,l), +(504,594,l) +); +}, +{ +closed = 1; +nodes = ( +(539,735,l), +(676,845,l), +(545,845,l), +(445,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = AE; +}, +{ +pos = (256,0); +ref = acutecomb.case; +} +); +width = 970; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = AE; +}, +{ +pos = (256,0); +ref = acutecomb.case; +} +); +width = 970; +} +); +unicode = 508; +}, +{ +color = 6; +glyphname = B; +kernLeft = H; +kernRight = B; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(370,0,l), +(525,0,o), +(608,81,o), +(608,196,c), +(608,303,o), +(531,380,o), +(387,380,c), +(130,380,l), +(130,287,l), +(360,287,l), +(424,287,o), +(450,260,o), +(450,216,c), +(450,171,o), +(424,144,o), +(360,144,c), +(130,144,l), +(130,0,l) +); +}, +{ +closed = 1; +nodes = ( +(217,0,l), +(217,690,l), +(62,690,l), +(62,0,l) +); +}, +{ +closed = 1; +nodes = ( +(346,349,l), +(501,349,o), +(583,416,o), +(583,511,cs), +(583,618,o), +(500,690,o), +(347,690,c), +(130,690,l), +(130,546,l), +(336,546,l), +(398,546,o), +(425,521,o), +(425,480,c), +(425,439,o), +(398,414,o), +(336,414,c), +(130,414,l), +(130,349,l) +); +} +); +width = 638; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(352,0,l), +(500,0,o), +(589,78,o), +(589,193,c), +(589,305,o), +(501,381,o), +(346,381,c), +(125,381,l), +(125,313,l), +(336,313,l), +(439,313,o), +(481,272,o), +(481,202,c), +(481,135,o), +(439,93,o), +(336,93,c), +(125,93,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(341,344,l), +(487,344,o), +(564,414,o), +(564,510,cs), +(564,615,o), +(477,690,o), +(346,690,c), +(125,690,l), +(125,597,l), +(331,597,l), +(418,597,o), +(459,559,o), +(459,501,c), +(459,442,o), +(417,399,o), +(331,399,c), +(125,399,l), +(125,344,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(352,0,l), +(500,0,o), +(589,78,o), +(589,193,c), +(589,305,o), +(501,381,o), +(346,381,c), +(125,381,l), +(125,313,l), +(336,313,l), +(439,313,o), +(481,272,o), +(481,202,c), +(481,135,o), +(439,93,o), +(336,93,c), +(125,93,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(341,344,l), +(487,344,o), +(564,414,o), +(564,510,cs), +(564,615,o), +(477,690,o), +(346,690,c), +(125,690,l), +(125,597,l), +(331,597,l), +(418,597,o), +(459,559,o), +(459,501,c), +(459,442,o), +(417,399,o), +(331,399,c), +(125,399,l), +(125,344,l) +); +} +); +width = 623; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(487,344,o), +(564,414,o), +(564,510,cs), +(564,615,o), +(477,690,o), +(346,690,c), +(125,690,l), +(125,597,l), +(331,597,l), +(418,597,o), +(459,559,o), +(459,501,c), +(459,442,o), +(417,399,o), +(331,399,c), +(125,399,l), +(125,344,l), +(341,344,l) +); +}, +{ +closed = 1; +nodes = ( +(500,0,o), +(589,78,o), +(589,193,c), +(589,305,o), +(501,381,o), +(346,381,c), +(125,381,l), +(125,313,l), +(336,313,l), +(439,313,o), +(481,272,o), +(481,202,c), +(481,135,o), +(439,93,o), +(336,93,c), +(125,93,l), +(125,0,l), +(352,0,l) +); +} +); +width = 623; +} +); +unicode = 66; +}, +{ +color = 6; +glyphname = C; +kernLeft = O; +kernRight = C; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (357,0); +}, +{ +name = top; +pos = (357,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(513,-14,o), +(628,77,o), +(658,226,c), +(505,268,l), +(492,182,o), +(438,132,o), +(356,132,c), +(257,132,o), +(194,213,o), +(194,345,cs), +(194,478,o), +(257,558,o), +(355,558,c), +(435,558,o), +(489,508,o), +(502,424,c), +(656,466,l), +(625,613,o), +(510,704,o), +(355,704,c), +(166,704,o), +(36,563,o), +(36,345,cs), +(36,128,o), +(166,-14,o), +(356,-14,c) +); +} +); +width = 686; +}, +{ +anchors = ( +{ +name = bottom; +pos = (345,0); +}, +{ +name = top; +pos = (345,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (345,0); +}, +{ +name = top; +pos = (345,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(486,-10,o), +(591,67,o), +(628,209,c), +(524,237,l), +(500,136.653,o), +(441,87,o), +(342,87,c), +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(342,603,c), +(438,603,o), +(500,553.424,o), +(520,455,c), +(624,483,l), +(591,623,o), +(486,700,o), +(345,700,c), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(345,-10,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(486,-10,o), +(591,67,o), +(628,209,c), +(524,237,l), +(500,137,o), +(441,87,o), +(342,87,c), +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(342,603,c), +(438,603,o), +(500,553,o), +(520,455,c), +(624,483,l), +(591,623,o), +(486,700,o), +(345,700,c), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(345,-10,c) +); +} +); +width = 667; +}, +{ +anchors = ( +{ +name = bottom; +pos = (345,0); +}, +{ +name = top; +pos = (345,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(342,603,c), +(438,603,o), +(500,553.424,o), +(520,455,c), +(624,483,l), +(591,623,o), +(486,700,o), +(345,700,c), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(345,-10,c), +(486,-10,o), +(591,67,o), +(628,209,c), +(524,237,l), +(500,136.653,o), +(441,87,o), +(342,87,c) +); +} +); +width = 667; +} +); +unicode = 67; +}, +{ +color = 10; +glyphname = Cacute; +kernLeft = O; +kernRight = C; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = C; +}, +{ +pos = (107,0); +ref = acutecomb.case; +} +); +width = 686; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (345,0); +}, +{ +name = top; +pos = (345,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(486,-10,o), +(591,67,o), +(628,209,c), +(524,237,l), +(500,136.653,o), +(441,87,o), +(342,87,c), +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(342,603,c), +(438,603,o), +(500,553.424,o), +(520,455,c), +(624,483,l), +(591,623,o), +(486,700,o), +(345,700,c), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(345,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(378,735,l), +(515,845,l), +(384,845,l), +(284,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = C; +}, +{ +pos = (95,0); +ref = acutecomb.case; +} +); +width = 667; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = C; +}, +{ +pos = (95,0); +ref = acutecomb.case; +} +); +width = 667; +} +); +unicode = 262; +}, +{ +color = 10; +glyphname = Ccaron; +kernLeft = O; +kernRight = C; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = C; +}, +{ +pos = (107,0); +ref = caroncomb.case; +} +); +width = 686; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (345,0); +}, +{ +name = top; +pos = (345,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(486,-10,o), +(591,67,o), +(628,209,c), +(524,237,l), +(500,136.653,o), +(441,87,o), +(342,87,c), +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(342,603,c), +(438,603,o), +(500,553.424,o), +(520,455,c), +(624,483,l), +(591,623,o), +(486,700,o), +(345,700,c), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(345,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(414,735,l), +(528,845,l), +(429,845,l), +(280,735,l) +); +}, +{ +closed = 1; +nodes = ( +(410,735,l), +(261,845,l), +(162,845,l), +(276,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = C; +}, +{ +pos = (95,0); +ref = caroncomb.case; +} +); +width = 667; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = C; +}, +{ +pos = (95,0); +ref = caroncomb.case; +} +); +width = 667; +} +); +unicode = 268; +}, +{ +color = 10; +glyphname = Ccedilla; +kernLeft = O; +kernRight = C; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = C; +}, +{ +pos = (104,0); +ref = cedillacomb; +} +); +width = 686; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (345,0); +}, +{ +name = top; +pos = (345,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(486,-10,o), +(591,67,o), +(628,209,c), +(524,237,l), +(500,136.653,o), +(441,87,o), +(342,87,c), +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(342,603,c), +(438,603,o), +(500,553.424,o), +(520,455,c), +(624,483,l), +(591,623,o), +(486,700,o), +(345,700,c), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(345,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(396,-185,o), +(432,-151,o), +(432,-106,cs), +(432,-57,o), +(395,-29,o), +(347,-29,c), +(359,-43,l), +(365,9,l), +(309,11,l), +(296,-73,l), +(307,-71,o), +(314,-70,o), +(325,-70,c), +(349,-70,o), +(363,-79,o), +(363,-96,c), +(363,-110,o), +(350,-119,o), +(329,-119,c), +(309,-119,o), +(293,-114,o), +(275,-105,c), +(262,-169,l), +(287,-180,o), +(312,-185,o), +(338,-185,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = C; +}, +{ +pos = (93,0); +ref = cedillacomb; +} +); +width = 667; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = C; +}, +{ +pos = (93,0); +ref = cedilla; +} +); +width = 667; +} +); +unicode = 199; +}, +{ +color = 10; +glyphname = Ccircumflex; +kernLeft = O; +kernRight = C; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = C; +}, +{ +pos = (107,0); +ref = circumflexcomb.case; +} +); +width = 686; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (345,0); +}, +{ +name = top; +pos = (345,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(486,-10,o), +(591,67,o), +(628,209,c), +(524,237,l), +(500,136.653,o), +(441,87,o), +(342,87,c), +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(342,603,c), +(438,603,o), +(500,553.424,o), +(520,455,c), +(624,483,l), +(591,623,o), +(486,700,o), +(345,700,c), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(345,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(528,735,l), +(414,845,l), +(280,845,l), +(429,735,l) +); +}, +{ +closed = 1; +nodes = ( +(261,735,l), +(410,845,l), +(276,845,l), +(162,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = C; +}, +{ +pos = (95,0); +ref = circumflexcomb.case; +} +); +width = 667; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = C; +}, +{ +pos = (95,0); +ref = circumflexcomb.case; +} +); +width = 667; +} +); +unicode = 264; +}, +{ +color = 10; +glyphname = Cdotaccent; +kernLeft = O; +kernRight = C; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = C; +}, +{ +pos = (107,0); +ref = dotaccentcomb.case; +} +); +width = 686; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (345,0); +}, +{ +name = top; +pos = (345,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(486,-10,o), +(591,67,o), +(628,209,c), +(524,237,l), +(500,136.653,o), +(441,87,o), +(342,87,c), +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(342,603,c), +(438,603,o), +(500,553.424,o), +(520,455,c), +(624,483,l), +(591,623,o), +(486,700,o), +(345,700,c), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(345,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(380,735,o), +(407,760,o), +(407,796,cs), +(407,833,o), +(380,858,o), +(345,858,cs), +(310,858,o), +(283,833,o), +(283,796,cs), +(283,760,o), +(310,735,o), +(345,735,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = C; +}, +{ +pos = (95,0); +ref = dotaccentcomb.case; +} +); +width = 667; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = C; +}, +{ +pos = (95,0); +ref = dotaccentcomb.case; +} +); +width = 667; +} +); +unicode = 266; +}, +{ +color = 6; +glyphname = D; +kernLeft = H; +kernRight = O; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (310,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(335,0,l), +(541,0,o), +(657,136,o), +(657,345,cs), +(657,555,o), +(541,690,o), +(335,690,c), +(130,690,l), +(130,545,l), +(325,545,l), +(440,545,o), +(499,470,o), +(499,345,cs), +(499,221,o), +(440,145,o), +(325,145,c), +(130,145,l), +(130,0,l) +); +}, +{ +closed = 1; +nodes = ( +(217,0,l), +(217,690,l), +(62,690,l), +(62,0,l) +); +} +); +width = 693; +}, +{ +anchors = ( +{ +name = top; +pos = (328,690); +} +); +background = { +anchors = ( +{ +name = top; +pos = (328,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(309,0,l), +(511,0,o), +(634,131,o), +(634,345,cs), +(634,560,o), +(511,690,o), +(309,690,c), +(125,690,l), +(125,594,l), +(299,594,l), +(450,594,o), +(525,513.243,o), +(525,345,cs), +(525,177.718,o), +(450,96,o), +(299,96,c), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(309,0,l), +(511,0,o), +(634,131,o), +(634,345,cs), +(634,560,o), +(511,690,o), +(309,690,c), +(125,690,l), +(125,594,l), +(299,594,l), +(450,594,o), +(525,513,o), +(525,345,cs), +(525,178,o), +(450,96,o), +(299,96,c), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +} +); +width = 678; +}, +{ +anchors = ( +{ +name = top; +pos = (328,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(511,0,o), +(634,131,o), +(634,345,cs), +(634,560,o), +(511,690,o), +(309,690,c), +(125,690,l), +(125,594,l), +(299,594,l), +(450,594,o), +(525,513.243,o), +(525,345,cs), +(525,177.718,o), +(450,96,o), +(299,96,c), +(125,96,l), +(125,0,l), +(309,0,l) +); +} +); +width = 678; +} +); +unicode = 68; +}, +{ +color = 10; +glyphname = Dcaron; +kernLeft = H; +kernRight = O; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = D; +}, +{ +pos = (60,0); +ref = caroncomb.case; +} +); +width = 693; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (328,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(309,0,l), +(511,0,o), +(634,131,o), +(634,345,cs), +(634,560,o), +(511,690,o), +(309,690,c), +(125,690,l), +(125,594,l), +(299,594,l), +(450,594,o), +(525,513.243,o), +(525,345,cs), +(525,177.718,o), +(450,96,o), +(299,96,c), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(397,735,l), +(511,845,l), +(412,845,l), +(263,735,l) +); +}, +{ +closed = 1; +nodes = ( +(393,735,l), +(244,845,l), +(145,845,l), +(259,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = D; +}, +{ +pos = (78,0); +ref = caroncomb.case; +} +); +width = 678; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = D; +}, +{ +pos = (78,0); +ref = caroncomb.case; +} +); +width = 678; +} +); +unicode = 270; +}, +{ +color = 10; +glyphname = Dcroat; +kernRight = O; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = Eth; +} +); +width = 700; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(324,0,l), +(526,0,o), +(649,131,o), +(649,345,cs), +(649,560,o), +(526,690,o), +(324,690,c), +(140,690,l), +(140,594,l), +(314,594,l), +(465,594,o), +(540,513,o), +(540,345,cs), +(540,178,o), +(465,96,o), +(314,96,c), +(140,96,l), +(140,0,l) +); +}, +{ +closed = 1; +nodes = ( +(195,0,l), +(195,690,l), +(90,690,l), +(90,0,l) +); +}, +{ +closed = 1; +nodes = ( +(365,295,l), +(365,386,l), +(20,386,l), +(20,295,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = Eth; +} +); +width = 693; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(20,295,l), +(365,295,l), +(365,386,l), +(20,386,l) +); +}, +{ +closed = 1; +nodes = ( +(195,0,l), +(195,690,l), +(90,690,l), +(90,0,l) +); +}, +{ +closed = 1; +nodes = ( +(526,0,o), +(649,131,o), +(649,345,cs), +(649,560,o), +(526,690,o), +(324,690,c), +(140,690,l), +(140,594,l), +(314,594,l), +(465,594,o), +(540,513,o), +(540,345,cs), +(540,178,o), +(465,96,o), +(314,96,c), +(140,96,l), +(140,0,l), +(324,0,l) +); +} +); +width = 693; +} +); +unicode = 272; +}, +{ +color = 6; +glyphname = Eth; +kernRight = O; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(342,0,l), +(548,0,o), +(664,136,o), +(664,345,cs), +(664,555,o), +(548,690,o), +(342,690,c), +(137,690,l), +(137,545,l), +(332,545,l), +(447,545,o), +(506,470,o), +(506,345,cs), +(506,221,o), +(447,145,o), +(332,145,c), +(137,145,l), +(137,0,l) +); +}, +{ +closed = 1; +nodes = ( +(224,0,l), +(224,690,l), +(69,690,l), +(69,0,l) +); +}, +{ +closed = 1; +nodes = ( +(368,280,l), +(368,401,l), +(10,401,l), +(10,280,l) +); +} +); +width = 700; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(324,0,l), +(526,0,o), +(649,131,o), +(649,345,cs), +(649,560,o), +(526,690,o), +(324,690,c), +(140,690,l), +(140,594,l), +(314,594,l), +(465,594,o), +(540,513,o), +(540,345,cs), +(540,178,o), +(465,96,o), +(314,96,c), +(140,96,l), +(140,0,l) +); +}, +{ +closed = 1; +nodes = ( +(195,0,l), +(195,690,l), +(90,690,l), +(90,0,l) +); +}, +{ +closed = 1; +nodes = ( +(365,295,l), +(365,386,l), +(20,386,l), +(20,295,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(324,0,l), +(526,0,o), +(649,131,o), +(649,345,cs), +(649,560,o), +(526,690,o), +(324,690,c), +(140,690,l), +(140,594,l), +(314,594,l), +(465,594,o), +(540,513,o), +(540,345,cs), +(540,178,o), +(465,96,o), +(314,96,c), +(140,96,l), +(140,0,l) +); +}, +{ +closed = 1; +nodes = ( +(195,0,l), +(195,690,l), +(90,690,l), +(90,0,l) +); +}, +{ +closed = 1; +nodes = ( +(365,295,l), +(365,386,l), +(20,386,l), +(20,295,l) +); +} +); +width = 693; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(20,295,l), +(365,295,l), +(365,386,l), +(20,386,l) +); +}, +{ +closed = 1; +nodes = ( +(195,0,l), +(195,690,l), +(90,690,l), +(90,0,l) +); +}, +{ +closed = 1; +nodes = ( +(526,0,o), +(649,131,o), +(649,345,cs), +(649,560,o), +(526,690,o), +(324,690,c), +(140,690,l), +(140,594,l), +(314,594,l), +(465,594,o), +(540,513,o), +(540,345,cs), +(540,178,o), +(465,96,o), +(314,96,c), +(140,96,l), +(140,0,l), +(324,0,l) +); +} +); +width = 693; +} +); +unicode = 208; +}, +{ +color = 6; +glyphname = E; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 13:34:49 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (327,0); +}, +{ +name = ogonek; +pos = (582,0); +}, +{ +name = top; +pos = (327,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(217,0,l), +(217,690,l), +(62,690,l), +(62,0,l) +); +}, +{ +closed = 1; +nodes = ( +(582,0,l), +(582,145,l), +(130,145,l), +(130,0,l) +); +}, +{ +closed = 1; +nodes = ( +(535,282,l), +(535,419,l), +(130,419,l), +(130,282,l) +); +}, +{ +closed = 1; +nodes = ( +(578,545,l), +(578,690,l), +(130,690,l), +(130,545,l) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (325,0); +}, +{ +name = ogonek; +pos = (565,0); +}, +{ +name = top; +pos = (325,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (325,0); +}, +{ +name = top; +pos = (325,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(565,0,l), +(565,96,l), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,306,l), +(500,402,l), +(125,402,l), +(125,306,l) +); +}, +{ +closed = 1; +nodes = ( +(560,594,l), +(560,690,l), +(125,690,l), +(125,594,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(565,0,l), +(565,96,l), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,306,l), +(500,402,l), +(125,402,l), +(125,306,l) +); +}, +{ +closed = 1; +nodes = ( +(560,594,l), +(560,690,l), +(125,690,l), +(125,594,l) +); +} +); +width = 611; +}, +{ +anchors = ( +{ +name = bottom; +pos = (325,0); +}, +{ +name = top; +pos = (325,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(125,306,l), +(500,306,l), +(500,402,l), +(125,402,l) +); +}, +{ +closed = 1; +nodes = ( +(125,0,l), +(565,0,l), +(565,96,l), +(125,96,l) +); +}, +{ +closed = 1; +nodes = ( +(125,594,l), +(560,594,l), +(560,690,l), +(125,690,l) +); +} +); +width = 611; +} +); +unicode = 69; +}, +{ +color = 10; +glyphname = Eacute; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (77,0); +ref = acutecomb.case; +} +); +width = 618; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (325,0); +}, +{ +name = top; +pos = (325,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(565,0,l), +(565,96,l), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,306,l), +(500,402,l), +(125,402,l), +(125,306,l) +); +}, +{ +closed = 1; +nodes = ( +(560,594,l), +(560,690,l), +(125,690,l), +(125,594,l) +); +}, +{ +closed = 1; +nodes = ( +(358,735,l), +(495,845,l), +(364,845,l), +(264,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = acutecomb.case; +} +); +width = 611; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = acutecomb.case; +} +); +width = 611; +} +); +unicode = 201; +}, +{ +color = 10; +glyphname = Ebreve; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (77,0); +ref = brevecomb.case; +} +); +width = 618; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (325,0); +}, +{ +name = top; +pos = (325,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(565,0,l), +(565,96,l), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,306,l), +(500,402,l), +(125,402,l), +(125,306,l) +); +}, +{ +closed = 1; +nodes = ( +(560,594,l), +(560,690,l), +(125,690,l), +(125,594,l) +); +}, +{ +closed = 1; +nodes = ( +(422,735,o), +(470,777,o), +(475,845,c), +(405,845,l), +(401,820,o), +(380,805,o), +(325,805,c), +(270,805,o), +(249,820,o), +(245,845,c), +(175,845,l), +(180,777,o), +(228,735,o), +(325,735,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = brevecomb.case; +} +); +width = 611; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = brevecomb.case; +} +); +width = 611; +} +); +unicode = 276; +}, +{ +color = 10; +glyphname = Ecaron; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (77,0); +ref = caroncomb.case; +} +); +width = 618; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (325,0); +}, +{ +name = top; +pos = (325,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(565,0,l), +(565,96,l), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,306,l), +(500,402,l), +(125,402,l), +(125,306,l) +); +}, +{ +closed = 1; +nodes = ( +(560,594,l), +(560,690,l), +(125,690,l), +(125,594,l) +); +}, +{ +closed = 1; +nodes = ( +(394,735,l), +(508,845,l), +(409,845,l), +(260,735,l) +); +}, +{ +closed = 1; +nodes = ( +(390,735,l), +(241,845,l), +(142,845,l), +(256,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = caroncomb.case; +} +); +width = 611; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = caroncomb.case; +} +); +width = 611; +} +); +unicode = 282; +}, +{ +color = 10; +glyphname = Ecircumflex; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (77,0); +ref = circumflexcomb.case; +} +); +width = 618; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (325,0); +}, +{ +name = top; +pos = (325,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(565,0,l), +(565,96,l), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,306,l), +(500,402,l), +(125,402,l), +(125,306,l) +); +}, +{ +closed = 1; +nodes = ( +(560,594,l), +(560,690,l), +(125,690,l), +(125,594,l) +); +}, +{ +closed = 1; +nodes = ( +(508,735,l), +(394,845,l), +(260,845,l), +(409,735,l) +); +}, +{ +closed = 1; +nodes = ( +(241,735,l), +(390,845,l), +(256,845,l), +(142,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = circumflexcomb.case; +} +); +width = 611; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = circumflexcomb.case; +} +); +width = 611; +} +); +unicode = 202; +}, +{ +color = 10; +glyphname = Edieresis; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (77,0); +ref = dieresiscomb.case; +} +); +width = 618; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (325,0); +}, +{ +name = top; +pos = (325,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(565,0,l), +(565,96,l), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,306,l), +(500,402,l), +(125,402,l), +(125,306,l) +); +}, +{ +closed = 1; +nodes = ( +(560,594,l), +(560,690,l), +(125,690,l), +(125,594,l) +); +}, +{ +closed = 1; +nodes = ( +(458,742,o), +(483,765,o), +(483,798,cs), +(483,832,o), +(458,855,o), +(426,855,cs), +(394,855,o), +(369,832,o), +(369,798,cs), +(369,765,o), +(394,742,o), +(426,742,cs) +); +}, +{ +closed = 1; +nodes = ( +(256,742,o), +(281,765,o), +(281,798,cs), +(281,832,o), +(256,855,o), +(224,855,cs), +(192,855,o), +(167,832,o), +(167,798,cs), +(167,765,o), +(192,742,o), +(224,742,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = dieresiscomb.case; +} +); +width = 611; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = dieresiscomb.case; +} +); +width = 611; +} +); +unicode = 203; +}, +{ +color = 10; +glyphname = Edotaccent; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (77,0); +ref = dotaccentcomb.case; +} +); +width = 618; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (325,0); +}, +{ +name = top; +pos = (325,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(565,0,l), +(565,96,l), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,306,l), +(500,402,l), +(125,402,l), +(125,306,l) +); +}, +{ +closed = 1; +nodes = ( +(560,594,l), +(560,690,l), +(125,690,l), +(125,594,l) +); +}, +{ +closed = 1; +nodes = ( +(360,735,o), +(387,760,o), +(387,796,cs), +(387,833,o), +(360,858,o), +(325,858,cs), +(290,858,o), +(263,833,o), +(263,796,cs), +(263,760,o), +(290,735,o), +(325,735,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = dotaccentcomb.case; +} +); +width = 611; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = dotaccentcomb.case; +} +); +width = 611; +} +); +unicode = 278; +}, +{ +color = 10; +glyphname = Edotbelow; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (77,0); +ref = dotbelow; +} +); +width = 618; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (325,0); +}, +{ +name = top; +pos = (325,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(565,0,l), +(565,96,l), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,306,l), +(500,402,l), +(125,402,l), +(125,306,l) +); +}, +{ +closed = 1; +nodes = ( +(560,594,l), +(560,690,l), +(125,690,l), +(125,594,l) +); +}, +{ +closed = 1; +nodes = ( +(360,-195,o), +(387,-170,o), +(387,-133,cs), +(387,-97,o), +(360,-72,o), +(325,-72,cs), +(290,-72,o), +(263,-97,o), +(263,-133,cs), +(263,-170,o), +(290,-195,o), +(325,-195,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = dotbelow; +} +); +width = 611; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = dotbelow; +} +); +width = 611; +} +); +unicode = 7864; +}, +{ +color = 10; +glyphname = Egrave; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (77,0); +ref = gravecomb.case; +} +); +width = 618; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (325,0); +}, +{ +name = top; +pos = (325,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(565,0,l), +(565,96,l), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,306,l), +(500,402,l), +(125,402,l), +(125,306,l) +); +}, +{ +closed = 1; +nodes = ( +(560,594,l), +(560,690,l), +(125,690,l), +(125,594,l) +); +}, +{ +closed = 1; +nodes = ( +(386,735,l), +(286,845,l), +(155,845,l), +(292,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = gravecomb.case; +} +); +width = 611; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = gravecomb.case; +} +); +width = 611; +} +); +unicode = 200; +}, +{ +color = 10; +glyphname = Emacron; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (77,0); +ref = macroncomb.case; +} +); +width = 618; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (325,0); +}, +{ +name = top; +pos = (325,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(565,0,l), +(565,96,l), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,306,l), +(500,402,l), +(125,402,l), +(125,306,l) +); +}, +{ +closed = 1; +nodes = ( +(560,594,l), +(560,690,l), +(125,690,l), +(125,594,l) +); +}, +{ +closed = 1; +nodes = ( +(483,753,l), +(483,837,l), +(167,837,l), +(167,753,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = macroncomb.case; +} +); +width = 611; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = macroncomb.case; +} +); +width = 611; +} +); +unicode = 274; +}, +{ +color = 10; +glyphname = Eogonek; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 13:35:19 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (243,0); +ref = ogonekcomb; +} +); +width = 618; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(502,-185,o), +(537,-176,o), +(565,-165,c), +(556,-84,l), +(533,-94,o), +(499,-106,o), +(479,-106,c), +(466,-106,o), +(458,-101,o), +(458,-89,c), +(458,-65,o), +(495,-34,o), +(565,0,c), +(465,0,l), +(397,-37,o), +(374,-69,o), +(374,-111,c), +(374,-153,o), +(408,-185,o), +(473,-185,cs) +); +}, +{ +closed = 1; +nodes = ( +(565,0,l), +(565,96,l), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,306,l), +(500,402,l), +(125,402,l), +(125,306,l) +); +}, +{ +closed = 1; +nodes = ( +(560,594,l), +(560,690,l), +(125,690,l), +(125,594,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = E; +}, +{ +pos = (261,0); +ref = ogonekcomb; +} +); +width = 611; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(397,-37,o), +(374,-69,o), +(374,-111,c), +(374,-153,o), +(408,-185,o), +(473,-185,cs), +(502,-185,o), +(537,-176,o), +(565,-165,c), +(556,-84,l), +(533,-94,o), +(499,-106,o), +(479,-106,c), +(466,-106,o), +(458,-101,o), +(458,-89,c), +(458,-65,o), +(495,-34,o), +(565,0,c), +(465,0,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(125,306,l), +(500,306,l), +(500,402,l), +(125,402,l) +); +}, +{ +closed = 1; +nodes = ( +(125,0,l), +(565,0,l), +(565,96,l), +(125,96,l) +); +}, +{ +closed = 1; +nodes = ( +(125,594,l), +(560,594,l), +(560,690,l), +(125,690,l) +); +} +); +width = 611; +} +); +unicode = 280; +}, +{ +color = 10; +glyphname = Etilde; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (77,0); +ref = tildecomb.case; +} +); +width = 618; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (325,0); +}, +{ +name = top; +pos = (325,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(565,0,l), +(565,96,l), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,306,l), +(500,402,l), +(125,402,l), +(125,306,l) +); +}, +{ +closed = 1; +nodes = ( +(560,594,l), +(560,690,l), +(125,690,l), +(125,594,l) +); +}, +{ +closed = 1; +nodes = ( +(233,735,l), +(234,757,o), +(246,773,o), +(267,773,c), +(298,773,o), +(328,735,o), +(385,735,c), +(442,735,o), +(478,777,o), +(485,845,c), +(417,845,l), +(416,823,o), +(404,807,o), +(383,807,c), +(353,807,o), +(322,845,o), +(265,845,c), +(208,845,o), +(172,803,o), +(165,735,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = tildecomb.case; +} +); +width = 611; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = tildecomb.case; +} +); +width = 611; +} +); +unicode = 7868; +}, +{ +color = 6; +glyphname = Schwa; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(36,381,o), +(35,364,o), +(35,345,c), +(35,127,o), +(170,-14,o), +(363,-14,c), +(555,-14,o), +(692,129,o), +(692,345,c), +(692,560,o), +(557,704,o), +(366,704,c), +(194,704,o), +(85,624,o), +(53,506,c), +(236,459,l), +(254,515,o), +(297,540,o), +(354,540,c), +(441,540,o), +(494,479,o), +(494,345,c), +(494,202,o), +(443,147,o), +(363,147,c), +(278,147,o), +(231,201,o), +(231,345,c), +(178,270,l), +(584,270,l), +(584,399,l), +(36,399,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(557,-14,o), +(690,120,o), +(690,345,cs), +(690,571,o), +(556,704,o), +(361,704,cs), +(223,704,o), +(107,639,o), +(59,525,c), +(215,469,l), +(240,528,o), +(295,558,o), +(361,558,cs), +(465,558,o), +(532,486,o), +(532,345,cs), +(532,205,o), +(466,132,o), +(362,132,cs), +(259,132,o), +(194,205,o), +(194,345,c), +(143,275,l), +(580,275,l), +(580,409,l), +(39,409,l), +(36,388,o), +(36,357,o), +(36,345,cs), +(36,120,o), +(168,-14,o), +(362,-14,cs) +); +} +); +width = 726; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(529,700,o), +(346,700,c), +(218,700,o), +(116,635,o), +(68,520,c), +(169,480,l), +(200,560,o), +(262,603,o), +(346,603,c), +(468,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs), +(228,87,o), +(153,179,o), +(153,345,c), +(127,283,l), +(579,283,l), +(579,379,l), +(45,379,l), +(44,368,o), +(44,356,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(529,700,o), +(346,700,c), +(218,700,o), +(116,635,o), +(68,520,c), +(169,480,l), +(200,560,o), +(262,603,o), +(346,603,c), +(468,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs), +(228,87,o), +(153,179,o), +(153,345,c), +(127,283,l), +(579,283,l), +(579,379,l), +(45,379,l), +(44,368,o), +(44,356,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +} +); +width = 697; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(38,368,o), +(38,359,o), +(38,345,c), +(38,122,o), +(162,-10,o), +(339,-10,c), +(522,-10,o), +(651,122,o), +(651,345,c), +(651,561,o), +(525,700,o), +(336,700,c), +(203,700,o), +(99,634,o), +(53,518,c), +(174,470,l), +(206,548,o), +(260,579,o), +(336,579,c), +(449,579,o), +(517,505,o), +(517,345,c), +(517,173,o), +(446,101,o), +(339,101,c), +(238,101,o), +(172,173,o), +(172,345,c), +(135,287,l), +(545,287,l), +(545,389,l), +(39,389,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(153,179,o), +(228,87,o), +(348,87,cs), +(469,87,o), +(544,179,o), +(544,345,cs), +(544,512,o), +(468,603,o), +(346,603,c), +(262,603,o), +(200,560,o), +(169,480,c), +(68,520,l), +(116,635,o), +(218,700,o), +(346,700,c), +(529,700,o), +(653,566,o), +(653,345,cs), +(653,125,o), +(530,-10,o), +(348,-10,cs), +(167,-10,o), +(44,125,o), +(44,345,cs), +(44,356,o), +(44,368,o), +(45,379,c), +(579,379,l), +(579,283,l), +(127,283,l), +(153,345,l) +); +} +); +width = 697; +} +); +unicode = 399; +}, +{ +color = 6; +glyphname = F; +kernLeft = H; +kernRight = F; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(217,0,l), +(217,690,l), +(62,690,l), +(62,0,l) +); +}, +{ +closed = 1; +nodes = ( +(517,262,l), +(517,399,l), +(130,399,l), +(130,262,l) +); +}, +{ +closed = 1; +nodes = ( +(558,545,l), +(558,690,l), +(130,690,l), +(130,545,l) +); +} +); +width = 583; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,286,l), +(500,382,l), +(125,382,l), +(125,286,l) +); +}, +{ +closed = 1; +nodes = ( +(540,594,l), +(540,690,l), +(125,690,l), +(125,594,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,286,l), +(500,382,l), +(125,382,l), +(125,286,l) +); +}, +{ +closed = 1; +nodes = ( +(540,594,l), +(540,690,l), +(125,690,l), +(125,594,l) +); +} +); +width = 576; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(125,286,l), +(500,286,l), +(500,382,l), +(125,382,l) +); +}, +{ +closed = 1; +nodes = ( +(125,594,l), +(540,594,l), +(540,690,l), +(125,690,l) +); +} +); +width = 576; +} +); +unicode = 70; +}, +{ +color = 6; +glyphname = G; +kernLeft = O; +kernRight = G; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (358,0); +}, +{ +name = top; +pos = (359,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(474,-14,o), +(572,84,o), +(575,280,c), +(516,280,l), +(516,185,o), +(451,128,o), +(360,128,c), +(257,128,o), +(194,206,o), +(194,341,c), +(194,477,o), +(261,558,o), +(360,558,c), +(441,558,o), +(493,508,o), +(504,435,c), +(658,477,l), +(629,613,o), +(516,704,o), +(360,704,c), +(169,704,o), +(36,562,o), +(36,341,c), +(36,127,o), +(159,-14,o), +(328,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(667,0,l), +(667,377,l), +(516,377,l), +(516,214,l), +(544,0,l) +); +}, +{ +closed = 1; +nodes = ( +(604,250,l), +(604,377,l), +(350,377,l), +(350,250,l) +); +} +); +width = 722; +}, +{ +anchors = ( +{ +name = bottom; +pos = (352,0); +}, +{ +name = top; +pos = (365,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (352,0); +}, +{ +name = top; +pos = (365,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(497,-10,o), +(583,125,o), +(583,275,c), +(543,275,l), +(543,169,o), +(472,87,o), +(352,87,c), +(231,87,o), +(153,179,o), +(153,345,c), +(153,517,o), +(236,603,o), +(362,603,c), +(458,603,o), +(520,554,o), +(540,465,c), +(644,493,l), +(611,623,o), +(506,700,o), +(365,700,c), +(175,700,o), +(44,566,o), +(44,345,c), +(44,125,o), +(166,-10,o), +(335,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(644,0,l), +(644,350,l), +(543,350,l), +(543,214,l), +(552,0,l) +); +}, +{ +closed = 1; +nodes = ( +(594,264,l), +(594,350,l), +(349,350,l), +(349,264,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(497,-10,o), +(583,125,o), +(583,275,c), +(543,275,l), +(543,169,o), +(472,87,o), +(352,87,c), +(231,87,o), +(153,179,o), +(153,345,c), +(153,517,o), +(236,603,o), +(362,603,c), +(458,603,o), +(520,554,o), +(540,465,c), +(644,493,l), +(611,623,o), +(506,700,o), +(365,700,c), +(175,700,o), +(44,566,o), +(44,345,c), +(44,125,o), +(166,-10,o), +(335,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(644,0,l), +(644,350,l), +(543,350,l), +(543,214,l), +(552,0,l) +); +}, +{ +closed = 1; +nodes = ( +(594,264,l), +(594,350,l), +(349,350,l), +(349,264,l) +); +} +); +width = 704; +}, +{ +anchors = ( +{ +name = bottom; +pos = (352,0); +}, +{ +name = top; +pos = (365,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(234,86,o), +(149,174.48,o), +(149,345,cs), +(149,516.545,o), +(232,603,o), +(358,603,c), +(454,603,o), +(516.117,553.839,o), +(536,465,c), +(640,493,l), +(607.176,623,o), +(502,700,o), +(361,700,c), +(171.173,700,o), +(40,566,o), +(40,345,cs), +(40,125,o), +(161,-10,o), +(363,-10,c), +(471,-10,o), +(569,36,o), +(640,124,c), +(535,152,l), +(499,111,o), +(441,86,o), +(365,86,c) +); +}, +{ +closed = 1; +nodes = ( +(535,-44,l), +(640,4,l), +(640,350,l), +(535,350,l) +); +}, +{ +closed = 1; +nodes = ( +(590,264,l), +(590,350,l), +(345,350,l), +(345,264,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(543,214,l), +(552,0,l), +(644,0,l), +(644,350,l), +(543,350,l) +); +}, +{ +closed = 1; +nodes = ( +(594,264,l), +(594,350,l), +(349,350,l), +(349,264,l) +); +}, +{ +closed = 1; +nodes = ( +(231,87,o), +(153,179,o), +(153,345,c), +(153,517,o), +(236,603,o), +(362,603,c), +(458,603,o), +(520,554,o), +(540,465,c), +(644,493,l), +(611,623,o), +(506,700,o), +(365,700,c), +(175,700,o), +(44,566,o), +(44,345,c), +(44,125,o), +(166,-10,o), +(335,-10,c), +(497,-10,o), +(583,125,o), +(583,275,c), +(543,275,l), +(543,169,o), +(472,87,o), +(352,87,c) +); +} +); +width = 704; +} +); +unicode = 71; +}, +{ +color = 10; +glyphname = Gbreve; +kernLeft = O; +kernRight = G; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = G; +}, +{ +pos = (109,0); +ref = brevecomb.case; +} +); +width = 722; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (352,0); +}, +{ +name = top; +pos = (365,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(497,-10,o), +(583,125,o), +(583,275,c), +(543,275,l), +(543,169,o), +(472,87,o), +(352,87,c), +(231,87,o), +(153,179,o), +(153,345,c), +(153,517,o), +(236,603,o), +(362,603,c), +(458,603,o), +(520,554,o), +(540,465,c), +(644,493,l), +(611,623,o), +(506,700,o), +(365,700,c), +(175,700,o), +(44,566,o), +(44,345,c), +(44,125,o), +(166,-10,o), +(335,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(644,0,l), +(644,350,l), +(543,350,l), +(543,214,l), +(552,0,l) +); +}, +{ +closed = 1; +nodes = ( +(594,264,l), +(594,350,l), +(349,350,l), +(349,264,l) +); +}, +{ +closed = 1; +nodes = ( +(462,735,o), +(510,777,o), +(515,845,c), +(445,845,l), +(441,820,o), +(420,805,o), +(365,805,c), +(310,805,o), +(289,820,o), +(285,845,c), +(215,845,l), +(220,777,o), +(268,735,o), +(365,735,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = G; +}, +{ +pos = (115,0); +ref = brevecomb.case; +} +); +width = 704; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = G; +}, +{ +pos = (115,0); +ref = brevecomb.case; +} +); +width = 704; +} +); +unicode = 286; +}, +{ +color = 10; +glyphname = Gcaron; +kernLeft = O; +kernRight = G; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = G; +}, +{ +pos = (109,0); +ref = caroncomb.case; +} +); +width = 722; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (352,0); +}, +{ +name = top; +pos = (365,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(497,-10,o), +(583,125,o), +(583,275,c), +(543,275,l), +(543,169,o), +(472,87,o), +(352,87,c), +(231,87,o), +(153,179,o), +(153,345,c), +(153,517,o), +(236,603,o), +(362,603,c), +(458,603,o), +(520,554,o), +(540,465,c), +(644,493,l), +(611,623,o), +(506,700,o), +(365,700,c), +(175,700,o), +(44,566,o), +(44,345,c), +(44,125,o), +(166,-10,o), +(335,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(644,0,l), +(644,350,l), +(543,350,l), +(543,214,l), +(552,0,l) +); +}, +{ +closed = 1; +nodes = ( +(594,264,l), +(594,350,l), +(349,350,l), +(349,264,l) +); +}, +{ +closed = 1; +nodes = ( +(434,735,l), +(548,845,l), +(449,845,l), +(300,735,l) +); +}, +{ +closed = 1; +nodes = ( +(430,735,l), +(281,845,l), +(182,845,l), +(296,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = G; +}, +{ +pos = (115,0); +ref = caroncomb.case; +} +); +width = 704; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = G; +}, +{ +pos = (115,0); +ref = caroncomb.case; +} +); +width = 704; +} +); +unicode = 486; +}, +{ +color = 10; +glyphname = Gcircumflex; +kernLeft = O; +kernRight = G; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = G; +}, +{ +pos = (109,0); +ref = circumflexcomb.case; +} +); +width = 722; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (352,0); +}, +{ +name = top; +pos = (365,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(497,-10,o), +(583,125,o), +(583,275,c), +(543,275,l), +(543,169,o), +(472,87,o), +(352,87,c), +(231,87,o), +(153,179,o), +(153,345,c), +(153,517,o), +(236,603,o), +(362,603,c), +(458,603,o), +(520,554,o), +(540,465,c), +(644,493,l), +(611,623,o), +(506,700,o), +(365,700,c), +(175,700,o), +(44,566,o), +(44,345,c), +(44,125,o), +(166,-10,o), +(335,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(644,0,l), +(644,350,l), +(543,350,l), +(543,214,l), +(552,0,l) +); +}, +{ +closed = 1; +nodes = ( +(594,264,l), +(594,350,l), +(349,350,l), +(349,264,l) +); +}, +{ +closed = 1; +nodes = ( +(548,735,l), +(434,845,l), +(300,845,l), +(449,735,l) +); +}, +{ +closed = 1; +nodes = ( +(281,735,l), +(430,845,l), +(296,845,l), +(182,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = G; +}, +{ +pos = (115,0); +ref = circumflexcomb.case; +} +); +width = 704; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = G; +}, +{ +pos = (115,0); +ref = circumflexcomb.case; +} +); +width = 704; +} +); +unicode = 284; +}, +{ +color = 10; +glyphname = Gcommaaccent; +kernLeft = O; +kernRight = G; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = G; +}, +{ +pos = (214,0); +ref = commaaccentcomb; +} +); +width = 722; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (352,0); +}, +{ +name = top; +pos = (365,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(497,-10,o), +(583,125,o), +(583,275,c), +(543,275,l), +(543,169,o), +(472,87,o), +(352,87,c), +(231,87,o), +(153,179,o), +(153,345,c), +(153,517,o), +(236,603,o), +(362,603,c), +(458,603,o), +(520,554,o), +(540,465,c), +(644,493,l), +(611,623,o), +(506,700,o), +(365,700,c), +(175,700,o), +(44,566,o), +(44,345,c), +(44,125,o), +(166,-10,o), +(335,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(644,0,l), +(644,350,l), +(543,350,l), +(543,214,l), +(552,0,l) +); +}, +{ +closed = 1; +nodes = ( +(594,264,l), +(594,350,l), +(349,350,l), +(349,264,l) +); +}, +{ +closed = 1; +nodes = ( +(368,-275,l), +(409,-72,l), +(305,-72,l), +(305,-275,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = G; +}, +{ +pos = (211,0); +ref = commaaccentcomb; +} +); +width = 704; +} +); +unicode = 290; +}, +{ +color = 10; +glyphname = Gdotaccent; +kernLeft = O; +kernRight = G; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = G; +}, +{ +pos = (109,0); +ref = dotaccentcomb.case; +} +); +width = 722; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (352,0); +}, +{ +name = top; +pos = (365,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(497,-10,o), +(583,125,o), +(583,275,c), +(543,275,l), +(543,169,o), +(472,87,o), +(352,87,c), +(231,87,o), +(153,179,o), +(153,345,c), +(153,517,o), +(236,603,o), +(362,603,c), +(458,603,o), +(520,554,o), +(540,465,c), +(644,493,l), +(611,623,o), +(506,700,o), +(365,700,c), +(175,700,o), +(44,566,o), +(44,345,c), +(44,125,o), +(166,-10,o), +(335,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(644,0,l), +(644,350,l), +(543,350,l), +(543,214,l), +(552,0,l) +); +}, +{ +closed = 1; +nodes = ( +(594,264,l), +(594,350,l), +(349,350,l), +(349,264,l) +); +}, +{ +closed = 1; +nodes = ( +(400,735,o), +(427,760,o), +(427,796,cs), +(427,833,o), +(400,858,o), +(365,858,cs), +(330,858,o), +(303,833,o), +(303,796,cs), +(303,760,o), +(330,735,o), +(365,735,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = G; +}, +{ +pos = (115,0); +ref = dotaccentcomb.case; +} +); +width = 704; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = G; +}, +{ +pos = (115,0); +ref = dotaccentcomb.case; +} +); +width = 704; +} +); +unicode = 288; +}, +{ +color = 6; +glyphname = H; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-22 12:23:55 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (358,0); +}, +{ +name = center; +pos = (358,518); +}, +{ +name = top; +pos = (358,690); +}, +{ +name = topleft; +pos = (20,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(653,0,l), +(653,690,l), +(498,690,l), +(498,0,l) +); +}, +{ +closed = 1; +nodes = ( +(217,0,l), +(217,690,l), +(62,690,l), +(62,0,l) +); +}, +{ +closed = 1; +nodes = ( +(585,278,l), +(585,423,l), +(130,423,l), +(130,278,l) +); +} +); +width = 715; +}, +{ +anchors = ( +{ +name = bottom; +pos = (353,0); +}, +{ +name = center; +pos = (353,518); +}, +{ +name = top; +pos = (353,690); +}, +{ +name = topleft; +pos = (20,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (353,0); +}, +{ +name = center; +pos = (353,518); +}, +{ +name = top; +pos = (353,690); +}, +{ +name = topleft; +pos = (20,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(630,0,l), +(630,690,l), +(525,690,l), +(525,0,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(580,306,l), +(580,402,l), +(125,402,l), +(125,306,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(630,0,l), +(630,690,l), +(525,690,l), +(525,0,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(580,306,l), +(580,402,l), +(125,402,l), +(125,306,l) +); +} +); +width = 705; +}, +{ +anchors = ( +{ +name = bottom; +pos = (353,0); +}, +{ +name = top; +pos = (353,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(630,0,l), +(630,690,l), +(525,690,l), +(525,0,l) +); +}, +{ +closed = 1; +nodes = ( +(125,306,l), +(580,306,l), +(580,402,l), +(125,402,l) +); +} +); +width = 705; +} +); +unicode = 72; +}, +{ +color = 6; +glyphname = Hbar; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(658,0,l), +(658,690,l), +(503,690,l), +(503,0,l) +); +}, +{ +closed = 1; +nodes = ( +(222,0,l), +(222,690,l), +(67,690,l), +(67,0,l) +); +}, +{ +closed = 1; +nodes = ( +(590,228,l), +(590,373,l), +(135,373,l), +(135,228,l) +); +}, +{ +closed = 1; +nodes = ( +(715,478,l), +(715,599,l), +(10,599,l), +(10,478,l) +); +} +); +width = 725; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(645,0,l), +(645,690,l), +(540,690,l), +(540,0,l) +); +}, +{ +closed = 1; +nodes = ( +(195,0,l), +(195,690,l), +(90,690,l), +(90,0,l) +); +}, +{ +closed = 1; +nodes = ( +(595,286,l), +(595,382,l), +(140,382,l), +(140,286,l) +); +}, +{ +closed = 1; +nodes = ( +(715,482,l), +(715,573,l), +(20,573,l), +(20,482,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(645,0,l), +(645,690,l), +(540,690,l), +(540,0,l) +); +}, +{ +closed = 1; +nodes = ( +(195,0,l), +(195,690,l), +(90,690,l), +(90,0,l) +); +}, +{ +closed = 1; +nodes = ( +(595,286,l), +(595,382,l), +(140,382,l), +(140,286,l) +); +}, +{ +closed = 1; +nodes = ( +(715,482,l), +(715,573,l), +(20,573,l), +(20,482,l) +); +} +); +width = 735; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(20,482,l), +(715,482,l), +(715,573,l), +(20,573,l) +); +}, +{ +closed = 1; +nodes = ( +(195,0,l), +(195,690,l), +(90,690,l), +(90,0,l) +); +}, +{ +closed = 1; +nodes = ( +(645,0,l), +(645,690,l), +(540,690,l), +(540,0,l) +); +}, +{ +closed = 1; +nodes = ( +(140,286,l), +(595,286,l), +(595,382,l), +(140,382,l) +); +} +); +width = 735; +} +); +unicode = 294; +}, +{ +color = 10; +glyphname = Hcircumflex; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = H; +}, +{ +pos = (108,0); +ref = circumflexcomb.case; +} +); +width = 715; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (353,0); +}, +{ +name = center; +pos = (353,518); +}, +{ +name = top; +pos = (353,690); +}, +{ +name = topleft; +pos = (20,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(630,0,l), +(630,690,l), +(525,690,l), +(525,0,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(580,306,l), +(580,402,l), +(125,402,l), +(125,306,l) +); +}, +{ +closed = 1; +nodes = ( +(536,735,l), +(422,845,l), +(288,845,l), +(437,735,l) +); +}, +{ +closed = 1; +nodes = ( +(269,735,l), +(418,845,l), +(284,845,l), +(170,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = H; +}, +{ +pos = (103,0); +ref = circumflexcomb.case; +} +); +width = 705; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = H; +}, +{ +pos = (103,0); +ref = circumflexcomb.case; +} +); +width = 705; +} +); +unicode = 292; +}, +{ +color = 6; +glyphname = I; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 13:35:24 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (139,0); +}, +{ +name = ogonek; +pos = (217,0); +}, +{ +name = top; +pos = (139,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(217,0,l), +(217,690,l), +(62,690,l), +(62,0,l) +); +} +); +width = 279; +}, +{ +anchors = ( +{ +name = bottom; +pos = (128,0); +}, +{ +name = ogonek; +pos = (180,0); +}, +{ +name = top; +pos = (128,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (128,0); +}, +{ +name = top; +pos = (128,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +} +); +width = 255; +}, +{ +anchors = ( +{ +name = bottom; +pos = (128,0); +}, +{ +name = top; +pos = (128,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +} +); +width = 255; +} +); +unicode = 73; +}, +{ +color = 10; +glyphname = IJ; +kernLeft = H; +kernRight = U; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (279,0); +ref = J; +} +); +width = 869; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(652,-10,o), +(745,86,o), +(745,237,c), +(745,690,l), +(640,690,l), +(640,244,l), +(640,138,o), +(589,87,o), +(511,87,c), +(436,87,o), +(392,136,o), +(379,230,c), +(276,209,l), +(296,67,o), +(383,-10,o), +(511,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = I; +}, +{ +pos = (255,0); +ref = J; +} +); +width = 815; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(296,67,o), +(383,-10,o), +(511,-10,c), +(652,-10,o), +(745,86,o), +(745,237,c), +(745,690,l), +(640,690,l), +(640,244,l), +(640,138,o), +(589,87,o), +(511,87,c), +(436,87,o), +(392,136,o), +(379,230,c), +(276,209,l) +); +} +); +width = 815; +} +); +unicode = 306; +}, +{ +color = 10; +glyphname = Iacute; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-111,0); +ref = acutecomb.case; +} +); +width = 279; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (128,0); +}, +{ +name = top; +pos = (128,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(161,735,l), +(298,845,l), +(167,845,l), +(67,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = acutecomb.case; +} +); +width = 255; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = acutecomb.case; +} +); +width = 255; +} +); +unicode = 205; +}, +{ +color = 10; +glyphname = Ibreve; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-111,0); +ref = brevecomb.case; +} +); +width = 279; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (128,0); +}, +{ +name = top; +pos = (128,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(225,735,o), +(273,777,o), +(278,845,c), +(208,845,l), +(204,820,o), +(183,805,o), +(128,805,c), +(73,805,o), +(52,820,o), +(48,845,c), +(-22,845,l), +(-17,777,o), +(31,735,o), +(128,735,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = brevecomb.case; +} +); +width = 255; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = brevecomb.case; +} +); +width = 255; +} +); +unicode = 300; +}, +{ +color = 10; +glyphname = Icircumflex; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-111,0); +ref = circumflexcomb.case; +} +); +width = 279; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (128,0); +}, +{ +name = top; +pos = (128,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(311,735,l), +(197,845,l), +(63,845,l), +(212,735,l) +); +}, +{ +closed = 1; +nodes = ( +(44,735,l), +(193,845,l), +(59,845,l), +(-55,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = circumflexcomb.case; +} +); +width = 255; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = circumflexcomb.case; +} +); +width = 255; +} +); +unicode = 206; +}, +{ +color = 10; +glyphname = Idieresis; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-111,0); +ref = dieresiscomb.case; +} +); +width = 279; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (128,0); +}, +{ +name = top; +pos = (128,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(261,742,o), +(286,765,o), +(286,798,cs), +(286,832,o), +(261,855,o), +(229,855,cs), +(197,855,o), +(172,832,o), +(172,798,cs), +(172,765,o), +(197,742,o), +(229,742,cs) +); +}, +{ +closed = 1; +nodes = ( +(59,742,o), +(84,765,o), +(84,798,cs), +(84,832,o), +(59,855,o), +(27,855,cs), +(-5,855,o), +(-30,832,o), +(-30,798,cs), +(-30,765,o), +(-5,742,o), +(27,742,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = dieresiscomb.case; +} +); +width = 255; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = dieresiscomb.case; +} +); +width = 255; +} +); +unicode = 207; +}, +{ +color = 10; +glyphname = Idotaccent; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-111,0); +ref = dotaccentcomb.case; +} +); +width = 279; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (128,0); +}, +{ +name = top; +pos = (128,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(163,735,o), +(190,760,o), +(190,796,cs), +(190,833,o), +(163,858,o), +(128,858,cs), +(93,858,o), +(66,833,o), +(66,796,cs), +(66,760,o), +(93,735,o), +(128,735,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = dotaccentcomb.case; +} +); +width = 255; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = dotaccentcomb.case; +} +); +width = 255; +} +); +unicode = 304; +}, +{ +color = 10; +glyphname = Idotbelow; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-111,0); +ref = dotbelow; +} +); +width = 279; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (128,0); +}, +{ +name = top; +pos = (128,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(163,-195,o), +(190,-170,o), +(190,-133,cs), +(190,-97,o), +(163,-72,o), +(128,-72,cs), +(93,-72,o), +(66,-97,o), +(66,-133,cs), +(66,-170,o), +(93,-195,o), +(128,-195,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = dotbelow; +} +); +width = 255; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = dotbelow; +} +); +width = 255; +} +); +unicode = 7882; +}, +{ +color = 10; +glyphname = Igrave; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-111,0); +ref = gravecomb.case; +} +); +width = 279; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (128,0); +}, +{ +name = top; +pos = (128,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(189,735,l), +(89,845,l), +(-42,845,l), +(95,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = gravecomb.case; +} +); +width = 255; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = gravecomb.case; +} +); +width = 255; +} +); +unicode = 204; +}, +{ +color = 10; +glyphname = Imacron; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-111,0); +ref = macroncomb.case; +} +); +width = 279; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (128,0); +}, +{ +name = top; +pos = (128,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(286,753,l), +(286,837,l), +(-30,837,l), +(-30,753,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = macroncomb.case; +} +); +width = 255; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = macroncomb.case; +} +); +width = 255; +} +); +unicode = 298; +}, +{ +color = 10; +glyphname = Iogonek; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 13:35:24 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = ogonekcomb; +} +); +width = 279; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(117,-185,o), +(152,-176,o), +(180,-165,c), +(171,-84,l), +(148,-94,o), +(114,-106,o), +(94,-106,c), +(81,-106,o), +(73,-101,o), +(73,-89,c), +(73,-65,o), +(110,-34,o), +(180,0,c), +(75,0,l), +(12,-37,o), +(-11,-69,o), +(-11,-111,c), +(-11,-153,o), +(23,-185,o), +(88,-185,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-124,0); +ref = ogonekcomb; +} +); +width = 255; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(12,-37,o), +(-11,-69,o), +(-11,-111,c), +(-11,-153,o), +(23,-185,o), +(88,-185,cs), +(117,-185,o), +(152,-176,o), +(180,-165,c), +(171,-84,l), +(148,-94,o), +(114,-106,o), +(94,-106,c), +(81,-106,o), +(73,-101,o), +(73,-89,c), +(73,-65,o), +(110,-34,o), +(180,0,c), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +} +); +width = 255; +} +); +unicode = 302; +}, +{ +color = 10; +glyphname = Itilde; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-111,0); +ref = tildecomb.case; +} +); +width = 279; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (128,0); +}, +{ +name = top; +pos = (128,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(36,735,l), +(37,757,o), +(49,773,o), +(70,773,c), +(101,773,o), +(131,735,o), +(188,735,c), +(245,735,o), +(281,777,o), +(288,845,c), +(220,845,l), +(219,823,o), +(207,807,o), +(186,807,c), +(156,807,o), +(125,845,o), +(68,845,c), +(11,845,o), +(-25,803,o), +(-32,735,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = tildecomb.case; +} +); +width = 255; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = tildecomb.case; +} +); +width = 255; +} +); +unicode = 296; +}, +{ +color = 6; +glyphname = J; +kernLeft = J; +kernRight = U; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (457,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(437,-14,o), +(535,91,o), +(535,253,c), +(535,690,l), +(380,690,l), +(380,261,l), +(380,180,o), +(341,132,o), +(270,132,c), +(210,132,o), +(169,169,o), +(162,240,c), +(12,202,l), +(35,66,o), +(130,-14,o), +(269,-14,c) +); +} +); +width = 590; +}, +{ +anchors = ( +{ +name = top; +pos = (436,690); +} +); +background = { +anchors = ( +{ +name = top; +pos = (436,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(396.975,-10,o), +(490,86,o), +(490,237,c), +(490,690,l), +(385,690,l), +(385,244,l), +(385,138,o), +(333.957,87,o), +(256,87,c), +(180.704,87,o), +(137.014,136.375,o), +(124,230,c), +(21,209,l), +(41.143,67,o), +(128.429,-10,o), +(256,-10,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(397,-10,o), +(490,86,o), +(490,237,c), +(490,690,l), +(385,690,l), +(385,244,l), +(385,138,o), +(334,87,o), +(256,87,c), +(181,87,o), +(137,136,o), +(124,230,c), +(21,209,l), +(41,67,o), +(128,-10,o), +(256,-10,c) +); +} +); +width = 560; +}, +{ +anchors = ( +{ +name = top; +pos = (436,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(41.143,67,o), +(128.429,-10,o), +(256,-10,c), +(396.975,-10,o), +(490,86,o), +(490,237,c), +(490,690,l), +(385,690,l), +(385,244,l), +(385,138,o), +(333.957,87,o), +(256,87,c), +(180.704,87,o), +(137.014,136.375,o), +(124,230,c), +(21,209,l) +); +} +); +width = 560; +} +); +unicode = 74; +}, +{ +color = 10; +glyphname = Jcircumflex; +kernLeft = J; +kernRight = U; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = J; +}, +{ +pos = (207,0); +ref = circumflexcomb.case; +} +); +width = 590; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (436,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(396.975,-10,o), +(490,86,o), +(490,237,c), +(490,690,l), +(385,690,l), +(385,244,l), +(385,138,o), +(333.957,87,o), +(256,87,c), +(180.704,87,o), +(137.014,136.375,o), +(124,230,c), +(21,209,l), +(41.143,67,o), +(128.429,-10,o), +(256,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(619,735,l), +(505,845,l), +(371,845,l), +(520,735,l) +); +}, +{ +closed = 1; +nodes = ( +(352,735,l), +(501,845,l), +(367,845,l), +(253,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = J; +}, +{ +pos = (186,0); +ref = circumflexcomb.case; +} +); +width = 560; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = J; +}, +{ +pos = (186,0); +ref = circumflexcomb.case; +} +); +width = 560; +} +); +unicode = 308; +}, +{ +color = 6; +glyphname = K; +kernLeft = H; +kernRight = X; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (331,0); +}, +{ +name = top; +pos = (331,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(639,690,l), +(456,690,l), +(178,357,l), +(178,153,l) +); +}, +{ +closed = 1; +nodes = ( +(217,0,l), +(217,690,l), +(62,690,l), +(62,0,l) +); +}, +{ +closed = 1; +nodes = ( +(657,0,l), +(367,421,l), +(269,301,l), +(470,0,l) +); +} +); +width = 657; +}, +{ +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = top; +pos = (337,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = top; +pos = (337,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(609,690,l), +(485,690,l), +(153,309,l), +(153,173,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(628,0,l), +(343,403,l), +(275,329,l), +(501,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(609,690,l), +(485,690,l), +(153,309,l), +(153,173,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(628,0,l), +(343,403,l), +(275,329,l), +(501,0,l) +); +} +); +width = 641; +}, +{ +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = top; +pos = (337,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(275,329,l), +(501,0,l), +(628,0,l), +(343,403,l) +); +}, +{ +closed = 1; +nodes = ( +(153,173,l), +(609,690,l), +(485,690,l), +(153,309,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +} +); +width = 641; +} +); +unicode = 75; +}, +{ +color = 10; +glyphname = Kcommaaccent; +kernLeft = H; +kernRight = X; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = K; +}, +{ +pos = (187,0); +ref = commaaccentcomb; +} +); +width = 657; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = top; +pos = (337,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(609,690,l), +(485,690,l), +(153,309,l), +(153,173,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(628,0,l), +(343,403,l), +(275,329,l), +(501,0,l) +); +}, +{ +closed = 1; +nodes = ( +(353,-275,l), +(394,-72,l), +(290,-72,l), +(290,-275,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = K; +}, +{ +pos = (196,0); +ref = commaaccentcomb; +} +); +width = 641; +} +); +unicode = 310; +}, +{ +color = 6; +glyphname = L; +kernLeft = H; +kernRight = L; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (282,0); +}, +{ +name = top; +pos = (139,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(217,0,l), +(217,690,l), +(62,690,l), +(62,0,l) +); +}, +{ +closed = 1; +nodes = ( +(515,0,l), +(515,145,l), +(130,145,l), +(130,0,l) +); +} +); +width = 545; +}, +{ +anchors = ( +{ +name = bottom; +pos = (302,0); +}, +{ +name = top; +pos = (128,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (302,0); +}, +{ +name = top; +pos = (128,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(510,0,l), +(510,96,l), +(125,96,l), +(125,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(510,0,l), +(510,96,l), +(125,96,l), +(125,0,l) +); +} +); +width = 539; +}, +{ +anchors = ( +{ +name = bottom; +pos = (302,0); +}, +{ +name = top; +pos = (128,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(125,0,l), +(510,0,l), +(510,96,l), +(125,96,l) +); +} +); +width = 539; +} +); +unicode = 76; +}, +{ +color = 10; +glyphname = Lacute; +kernLeft = H; +kernRight = L; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = L; +}, +{ +pos = (-111,0); +ref = acutecomb.case; +} +); +width = 545; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (302,0); +}, +{ +name = top; +pos = (128,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(510,0,l), +(510,96,l), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(161,735,l), +(298,845,l), +(167,845,l), +(67,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = L; +}, +{ +pos = (-122,0); +ref = acutecomb.case; +} +); +width = 539; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = L; +}, +{ +pos = (-122,0); +ref = acutecomb.case; +} +); +width = 539; +} +); +unicode = 313; +}, +{ +color = 10; +glyphname = Lcaron; +kernLeft = H; +kernRight = L; +lastChange = "2024-03-21 13:43:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = L; +}, +{ +pos = (263,-26); +ref = caroncomb.alt; +} +); +width = 545; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(510,0,l), +(510,96,l), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(398,417,l), +(442,690,l), +(338,690,l), +(338,417,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = L; +}, +{ +pos = (251,-25); +ref = caroncomb.alt; +} +); +width = 539; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(338,417,l), +(398,417,l), +(442,690,l), +(338,690,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(125,0,l), +(510,0,l), +(510,96,l), +(125,96,l) +); +} +); +width = 540; +} +); +unicode = 317; +}, +{ +color = 10; +glyphname = Lcommaaccent; +kernLeft = H; +kernRight = L; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = L; +}, +{ +pos = (138,0); +ref = commaaccentcomb; +} +); +width = 545; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (302,0); +}, +{ +name = top; +pos = (128,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(510,0,l), +(510,96,l), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(318,-275,l), +(359,-72,l), +(255,-72,l), +(255,-275,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = L; +}, +{ +pos = (161,0); +ref = commaaccentcomb; +} +); +width = 539; +} +); +unicode = 315; +}, +{ +color = 10; +glyphname = Ldot; +kernLeft = H; +lastChange = "2024-03-21 13:43:13 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = L; +}, +{ +pos = (254,0); +ref = periodcentered.loclCAT.case; +} +); +width = 545; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(510,0,l), +(510,96,l), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(431,271,o), +(458,299,o), +(458,337,cs), +(458,376,o), +(431,404,o), +(393,404,cs), +(355,404,o), +(328,376,o), +(328,337,cs), +(328,299,o), +(355,271,o), +(393,271,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = L; +}, +{ +pos = (283,-10); +ref = periodcentered.loclCAT.case; +} +); +width = 539; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(125,0,l), +(510,0,l), +(510,96,l), +(125,96,l) +); +}, +{ +closed = 1; +nodes = ( +(431,271,o), +(458,299,o), +(458,337,cs), +(458,376,o), +(431,404,o), +(393,404,cs), +(355,404,o), +(328,376,o), +(328,337,cs), +(328,299,o), +(355,271,o), +(393,271,cs) +); +} +); +width = 538; +} +); +unicode = 319; +}, +{ +color = 6; +glyphname = Lslash; +kernLeft = H; +kernRight = L; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(410,383,l), +(410,517,l), +(10,314,l), +(10,180,l) +); +}, +{ +closed = 1; +nodes = ( +(525,0,l), +(525,145,l), +(140,145,l), +(140,0,l) +); +}, +{ +closed = 1; +nodes = ( +(227,0,l), +(227,690,l), +(72,690,l), +(72,0,l) +); +} +); +width = 555; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(375,392,l), +(375,493,l), +(20,313,l), +(20,212,l) +); +}, +{ +closed = 1; +nodes = ( +(525,0,l), +(525,96,l), +(140,96,l), +(140,0,l) +); +}, +{ +closed = 1; +nodes = ( +(195,0,l), +(195,690,l), +(90,690,l), +(90,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(375,392,l), +(375,493,l), +(20,313,l), +(20,212,l) +); +}, +{ +closed = 1; +nodes = ( +(525,0,l), +(525,96,l), +(140,96,l), +(140,0,l) +); +}, +{ +closed = 1; +nodes = ( +(195,0,l), +(195,690,l), +(90,690,l), +(90,0,l) +); +} +); +width = 553; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(20,212,l), +(375,392,l), +(375,493,l), +(20,313,l) +); +}, +{ +closed = 1; +nodes = ( +(195,0,l), +(195,690,l), +(90,690,l), +(90,0,l) +); +}, +{ +closed = 1; +nodes = ( +(140,0,l), +(525,0,l), +(525,96,l), +(140,96,l) +); +} +); +width = 553; +} +); +unicode = 321; +}, +{ +color = 6; +glyphname = M; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(476,0,l), +(333,690,l), +(179,690,l), +(334,0,l) +); +}, +{ +closed = 1; +nodes = ( +(209,0,l), +(209,690,l), +(62,690,l), +(62,0,l) +); +}, +{ +closed = 1; +nodes = ( +(555,0,l), +(707,690,l), +(559,690,l), +(418,0,l) +); +}, +{ +closed = 1; +nodes = ( +(832,0,l), +(832,690,l), +(677,690,l), +(677,0,l) +); +} +); +width = 894; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(471,0,l), +(241,690,l), +(139,690,l), +(368,0,l) +); +}, +{ +closed = 1; +nodes = ( +(175,0,l), +(175,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(501,0,l), +(714,690,l), +(615,690,l), +(408,0,l) +); +}, +{ +closed = 1; +nodes = ( +(787,0,l), +(787,690,l), +(682,690,l), +(682,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(471,0,l), +(241,690,l), +(139,690,l), +(368,0,l) +); +}, +{ +closed = 1; +nodes = ( +(175,0,l), +(175,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(501,0,l), +(714,690,l), +(615,690,l), +(408,0,l) +); +}, +{ +closed = 1; +nodes = ( +(787,0,l), +(787,690,l), +(682,690,l), +(682,0,l) +); +} +); +width = 862; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(139,690,l), +(368,0,l), +(471,0,l), +(241,690,l) +); +}, +{ +closed = 1; +nodes = ( +(175,0,l), +(175,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(408,0,l), +(501,0,l), +(714,690,l), +(615,690,l) +); +}, +{ +closed = 1; +nodes = ( +(787,0,l), +(787,690,l), +(682,690,l), +(682,0,l) +); +} +); +width = 862; +} +); +unicode = 77; +}, +{ +color = 6; +glyphname = N; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (358,0); +}, +{ +name = top; +pos = (358,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(559,0,l), +(319,690,l), +(161,690,l), +(401,0,l) +); +}, +{ +closed = 1; +nodes = ( +(209,0,l), +(209,690,l), +(62,690,l), +(62,0,l) +); +}, +{ +closed = 1; +nodes = ( +(658,0,l), +(658,690,l), +(511,690,l), +(511,0,l) +); +} +); +width = 720; +}, +{ +anchors = ( +{ +name = bottom; +pos = (355,0); +}, +{ +name = top; +pos = (355,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (355,0); +}, +{ +name = top; +pos = (355,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(599,0,l), +(217,690,l), +(106,690,l), +(488,0,l) +); +}, +{ +closed = 1; +nodes = ( +(175,0,l), +(175,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(630,0,l), +(630,690,l), +(530,690,l), +(530,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(599,0,l), +(217,690,l), +(106,690,l), +(488,0,l) +); +}, +{ +closed = 1; +nodes = ( +(175,0,l), +(175,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(630,0,l), +(630,690,l), +(530,690,l), +(530,0,l) +); +} +); +width = 705; +}, +{ +anchors = ( +{ +name = bottom; +pos = (355,0); +}, +{ +name = top; +pos = (355,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(106,690,l), +(488,0,l), +(599,0,l), +(217,690,l) +); +}, +{ +closed = 1; +nodes = ( +(175,0,l), +(175,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(630,0,l), +(630,690,l), +(530,690,l), +(530,0,l) +); +} +); +width = 705; +} +); +unicode = 78; +}, +{ +color = 10; +glyphname = Nacute; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = N; +}, +{ +pos = (108,0); +ref = acutecomb.case; +} +); +width = 720; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (355,0); +}, +{ +name = top; +pos = (355,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(599,0,l), +(217,690,l), +(106,690,l), +(488,0,l) +); +}, +{ +closed = 1; +nodes = ( +(175,0,l), +(175,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(630,0,l), +(630,690,l), +(530,690,l), +(530,0,l) +); +}, +{ +closed = 1; +nodes = ( +(388,735,l), +(525,845,l), +(394,845,l), +(294,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = N; +}, +{ +pos = (105,0); +ref = acutecomb.case; +} +); +width = 705; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = N; +}, +{ +pos = (105,0); +ref = acutecomb.case; +} +); +width = 705; +} +); +unicode = 323; +}, +{ +color = 10; +glyphname = Ncaron; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = N; +}, +{ +pos = (108,0); +ref = caroncomb.case; +} +); +width = 720; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (355,0); +}, +{ +name = top; +pos = (355,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(599,0,l), +(217,690,l), +(106,690,l), +(488,0,l) +); +}, +{ +closed = 1; +nodes = ( +(175,0,l), +(175,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(630,0,l), +(630,690,l), +(530,690,l), +(530,0,l) +); +}, +{ +closed = 1; +nodes = ( +(424,735,l), +(538,845,l), +(439,845,l), +(290,735,l) +); +}, +{ +closed = 1; +nodes = ( +(420,735,l), +(271,845,l), +(172,845,l), +(286,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = N; +}, +{ +pos = (105,0); +ref = caroncomb.case; +} +); +width = 705; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = N; +}, +{ +pos = (105,0); +ref = caroncomb.case; +} +); +width = 705; +} +); +unicode = 327; +}, +{ +color = 10; +glyphname = Ncommaaccent; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = N; +}, +{ +pos = (214,0); +ref = commaaccentcomb; +} +); +width = 720; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (355,0); +}, +{ +name = top; +pos = (355,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(599,0,l), +(217,690,l), +(106,690,l), +(488,0,l) +); +}, +{ +closed = 1; +nodes = ( +(175,0,l), +(175,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(630,0,l), +(630,690,l), +(530,690,l), +(530,0,l) +); +}, +{ +closed = 1; +nodes = ( +(371,-275,l), +(412,-72,l), +(308,-72,l), +(308,-275,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = N; +}, +{ +pos = (214,0); +ref = commaaccentcomb; +} +); +width = 705; +} +); +unicode = 325; +}, +{ +color = 6; +glyphname = Nhookleft; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(170,690,l), +(70,690,l), +(70,-7,l), +(70,-70,o), +(45,-94,o), +(-12,-94,c), +(-29,-94,o), +(-50,-90,o), +(-68,-83,c), +(-68,-175,l), +(-45,-182,o), +(-22,-185,o), +(6,-185,c), +(112,-185,o), +(170,-123,o), +(170,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(101,690,l), +(483,0,l), +(594,0,l), +(212,690,l) +); +}, +{ +closed = 1; +nodes = ( +(625,0,l), +(625,690,l), +(525,690,l), +(525,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(559,0,l), +(319,690,l), +(161,690,l), +(401,0,l) +); +}, +{ +closed = 1; +nodes = ( +(140,-190,o), +(209,-125,o), +(209,4,c), +(209,690,l), +(62,690,l), +(62,9,l), +(62,-33,o), +(38,-54,o), +(-8,-54,c), +(-31,-54,o), +(-51,-49,o), +(-71,-42,c), +(-71,-175,l), +(-43,-184,o), +(-15,-190,o), +(23,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(658,0,l), +(658,690,l), +(511,690,l), +(511,0,l) +); +} +); +width = 720; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(599,0,l), +(217,690,l), +(106,690,l), +(488,0,l) +); +}, +{ +closed = 1; +nodes = ( +(117,-185,o), +(175,-123,o), +(175,-10,c), +(175,690,l), +(75,690,l), +(75,-7,l), +(75,-70,o), +(50,-94,o), +(-7,-94,c), +(-24,-94,o), +(-45,-90,o), +(-63,-83,c), +(-63,-175,l), +(-40,-182,o), +(-17,-185,o), +(11,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(630,0,l), +(630,690,l), +(530,690,l), +(530,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(599,0,l), +(217,690,l), +(106,690,l), +(488,0,l) +); +}, +{ +closed = 1; +nodes = ( +(117,-185,o), +(175,-123,o), +(175,-10,c), +(175,690,l), +(75,690,l), +(75,-7,l), +(75,-70,o), +(50,-94,o), +(-7,-94,c), +(-24,-94,o), +(-45,-90,o), +(-63,-83,c), +(-63,-175,l), +(-40,-182,o), +(-17,-185,o), +(11,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(630,0,l), +(630,690,l), +(530,690,l), +(530,0,l) +); +} +); +width = 705; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(175,690,l), +(75,690,l), +(75,-7,l), +(75,-70,o), +(50,-94,o), +(-7,-94,c), +(-24,-94,o), +(-45,-90,o), +(-63,-83,c), +(-63,-175,l), +(-40,-182,o), +(-17,-185,o), +(11,-185,c), +(117,-185,o), +(175,-123,o), +(175,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(106,690,l), +(488,0,l), +(599,0,l), +(217,690,l) +); +}, +{ +closed = 1; +nodes = ( +(630,0,l), +(630,690,l), +(530,690,l), +(530,0,l) +); +} +); +width = 705; +} +); +unicode = 413; +}, +{ +color = 10; +glyphname = Ntilde; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = N; +}, +{ +pos = (108,0); +ref = tildecomb.case; +} +); +width = 720; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (355,0); +}, +{ +name = top; +pos = (355,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(599,0,l), +(217,690,l), +(106,690,l), +(488,0,l) +); +}, +{ +closed = 1; +nodes = ( +(175,0,l), +(175,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(630,0,l), +(630,690,l), +(530,690,l), +(530,0,l) +); +}, +{ +closed = 1; +nodes = ( +(263,735,l), +(264,757,o), +(276,773,o), +(297,773,c), +(328,773,o), +(358,735,o), +(415,735,c), +(472,735,o), +(508,777,o), +(515,845,c), +(447,845,l), +(446,823,o), +(434,807,o), +(413,807,c), +(383,807,o), +(352,845,o), +(295,845,c), +(238,845,o), +(202,803,o), +(195,735,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = N; +}, +{ +pos = (105,0); +ref = tildecomb.case; +} +); +width = 705; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = N; +}, +{ +pos = (105,0); +ref = tildecomb.case; +} +); +width = 705; +} +); +unicode = 209; +}, +{ +color = 6; +glyphname = Eng; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(525,-70,o), +(500,-94,o), +(443,-94,c), +(426,-94,o), +(405,-90,o), +(387,-83,c), +(387,-175,l), +(410,-182,o), +(433,-185,o), +(461,-185,c), +(567,-185,o), +(625,-123,o), +(625,-10,c), +(625,690,l), +(525,690,l), +(525,-7,l) +); +}, +{ +closed = 1; +nodes = ( +(101,690,l), +(531,-15,l), +(594,60,l), +(212,690,l) +); +}, +{ +closed = 1; +nodes = ( +(170,0,l), +(170,690,l), +(70,690,l), +(70,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(559,0,l), +(319,690,l), +(161,690,l), +(401,0,l) +); +}, +{ +closed = 1; +nodes = ( +(209,0,l), +(209,690,l), +(62,690,l), +(62,0,l) +); +}, +{ +closed = 1; +nodes = ( +(589,-190,o), +(658,-125,o), +(658,4,c), +(658,690,l), +(511,690,l), +(511,9,l), +(511,-33,o), +(487,-54,o), +(441,-54,c), +(418,-54,o), +(398,-49,o), +(378,-42,c), +(378,-175,l), +(406,-184,o), +(434,-190,o), +(472,-190,c) +); +} +); +width = 720; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(599,0,l), +(217,690,l), +(106,690,l), +(488,0,l) +); +}, +{ +closed = 1; +nodes = ( +(175,0,l), +(175,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(572,-185,o), +(630,-123,o), +(630,-10,c), +(630,690,l), +(530,690,l), +(530,-7,l), +(530,-70,o), +(505,-94,o), +(448,-94,c), +(431,-94,o), +(410,-90,o), +(392,-83,c), +(392,-175,l), +(415,-182,o), +(438,-185,o), +(466,-185,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(599,0,l), +(217,690,l), +(106,690,l), +(488,0,l) +); +}, +{ +closed = 1; +nodes = ( +(175,0,l), +(175,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(572,-185,o), +(630,-123,o), +(630,-10,c), +(630,690,l), +(530,690,l), +(530,-7,l), +(530,-70,o), +(505,-94,o), +(448,-94,c), +(431,-94,o), +(410,-90,o), +(392,-83,c), +(392,-175,l), +(415,-182,o), +(438,-185,o), +(466,-185,c) +); +} +); +width = 705; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(525,-70,o), +(500,-94,o), +(443,-94,c), +(426,-94,o), +(405,-90,o), +(387,-83,c), +(387,-175,l), +(410,-182,o), +(433,-185,o), +(461,-185,c), +(567,-185,o), +(625,-123,o), +(625,-10,c), +(625,690,l), +(525,690,l), +(525,-7,l) +); +}, +{ +closed = 1; +nodes = ( +(101,690,l), +(531,-15,l), +(594,60,l), +(212,690,l) +); +}, +{ +closed = 1; +nodes = ( +(170,0,l), +(170,690,l), +(70,690,l), +(70,0,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(530,-70,o), +(505,-94,o), +(448,-94,c), +(431,-94,o), +(410,-90,o), +(392,-83,c), +(392,-175,l), +(415,-182,o), +(438,-185,o), +(466,-185,c), +(572,-185,o), +(630,-123,o), +(630,-10,c), +(630,690,l), +(530,690,l), +(530,-7,l) +); +}, +{ +closed = 1; +nodes = ( +(106,690,l), +(488,0,l), +(599,0,l), +(217,690,l) +); +}, +{ +closed = 1; +nodes = ( +(175,0,l), +(175,690,l), +(75,690,l), +(75,0,l) +); +} +); +width = 705; +} +); +unicode = 330; +}, +{ +color = 6; +glyphname = O; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 13:35:44 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (362,0); +}, +{ +name = ogonek; +pos = (465,0); +}, +{ +name = top; +pos = (363,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(557,-14,o), +(690,119,o), +(690,345,cs), +(690,571,o), +(557,704,o), +(363,704,c), +(169,704,o), +(36,571,o), +(36,345,cs), +(36,119,o), +(169,-14,o), +(363,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(260,132,o), +(194,204,o), +(194,345,cs), +(194,486,o), +(260,558,o), +(363,558,c), +(466,558,o), +(532,486,o), +(532,345,cs), +(532,204,o), +(466,132,o), +(363,132,c) +); +} +); +width = 726; +}, +{ +anchors = ( +{ +name = bottom; +pos = (348,0); +}, +{ +name = ogonek; +pos = (429,0); +}, +{ +name = top; +pos = (348,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (348,0); +}, +{ +name = top; +pos = (348,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +} +); +width = 697; +}, +{ +anchors = ( +{ +name = bottom; +pos = (348,0); +}, +{ +name = top; +pos = (348,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(160,530,l), +(60,530,l), +(60,0,l) +); +}, +{ +closed = 1; +nodes = ( +(400,0,l), +(500,0,l), +(500,332,l), +(500,460,o), +(425,540,o), +(318,540,c), +(209,540,o), +(127,451,o), +(127,309,c), +(160,309,l), +(160,406,o), +(213,457,o), +(280,457,c), +(347,457,o), +(400,406,o), +(400,309,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +} +); +width = 697; +} +); +unicode = 79; +}, +{ +color = 10; +glyphname = Oacute; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (113,0); +ref = acutecomb.case; +} +); +width = 726; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (348,0); +}, +{ +name = top; +pos = (348,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +}, +{ +closed = 1; +nodes = ( +(381,735,l), +(518,845,l), +(387,845,l), +(287,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = acutecomb.case; +} +); +width = 697; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = acutecomb.case; +} +); +width = 697; +} +); +unicode = 211; +}, +{ +color = 10; +glyphname = Obreve; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (113,0); +ref = brevecomb.case; +} +); +width = 726; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (348,0); +}, +{ +name = top; +pos = (348,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +}, +{ +closed = 1; +nodes = ( +(445,735,o), +(493,777,o), +(498,845,c), +(428,845,l), +(424,820,o), +(403,805,o), +(348,805,c), +(293,805,o), +(272,820,o), +(268,845,c), +(198,845,l), +(203,777,o), +(251,735,o), +(348,735,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = brevecomb.case; +} +); +width = 697; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = brevecomb.case; +} +); +width = 697; +} +); +unicode = 334; +}, +{ +color = 10; +glyphname = Ocircumflex; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (113,0); +ref = circumflexcomb.case; +} +); +width = 726; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (348,0); +}, +{ +name = top; +pos = (348,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +}, +{ +closed = 1; +nodes = ( +(531,735,l), +(417,845,l), +(283,845,l), +(432,735,l) +); +}, +{ +closed = 1; +nodes = ( +(264,735,l), +(413,845,l), +(279,845,l), +(165,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = circumflexcomb.case; +} +); +width = 697; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = circumflexcomb.case; +} +); +width = 697; +} +); +unicode = 212; +}, +{ +color = 10; +glyphname = Odieresis; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (113,0); +ref = dieresiscomb.case; +} +); +width = 726; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (348,0); +}, +{ +name = top; +pos = (348,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +}, +{ +closed = 1; +nodes = ( +(481,742,o), +(506,765,o), +(506,798,cs), +(506,832,o), +(481,855,o), +(449,855,cs), +(417,855,o), +(392,832,o), +(392,798,cs), +(392,765,o), +(417,742,o), +(449,742,cs) +); +}, +{ +closed = 1; +nodes = ( +(279,742,o), +(304,765,o), +(304,798,cs), +(304,832,o), +(279,855,o), +(247,855,cs), +(215,855,o), +(190,832,o), +(190,798,cs), +(190,765,o), +(215,742,o), +(247,742,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = dieresiscomb.case; +} +); +width = 697; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = dieresiscomb.case; +} +); +width = 697; +} +); +unicode = 214; +}, +{ +color = 10; +glyphname = Odotbelow; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (112,0); +ref = dotbelow; +} +); +width = 726; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (348,0); +}, +{ +name = top; +pos = (348,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +}, +{ +closed = 1; +nodes = ( +(383,-195,o), +(410,-170,o), +(410,-133,cs), +(410,-97,o), +(383,-72,o), +(348,-72,cs), +(313,-72,o), +(286,-97,o), +(286,-133,cs), +(286,-170,o), +(313,-195,o), +(348,-195,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = dotbelow; +} +); +width = 697; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = dotbelow; +} +); +width = 697; +} +); +unicode = 7884; +}, +{ +color = 10; +glyphname = Ograve; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (113,0); +ref = gravecomb.case; +} +); +width = 726; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (348,0); +}, +{ +name = top; +pos = (348,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +}, +{ +closed = 1; +nodes = ( +(409,735,l), +(309,845,l), +(178,845,l), +(315,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = gravecomb.case; +} +); +width = 697; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = gravecomb.case; +} +); +width = 697; +} +); +unicode = 210; +}, +{ +color = 10; +glyphname = Ohungarumlaut; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (113,0); +ref = hungarumlautcomb.case; +} +); +width = 726; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (348,0); +}, +{ +name = top; +pos = (348,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +}, +{ +closed = 1; +nodes = ( +(469,735,l), +(606,845,l), +(481,845,l), +(381,735,l) +); +}, +{ +closed = 1; +nodes = ( +(323,735,l), +(420,845,l), +(306,845,l), +(235,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = hungarumlautcomb.case; +} +); +width = 697; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = hungarumlautcomb.case; +} +); +width = 697; +} +); +unicode = 336; +}, +{ +color = 10; +glyphname = Omacron; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (113,0); +ref = macroncomb.case; +} +); +width = 726; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (348,0); +}, +{ +name = top; +pos = (348,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +}, +{ +closed = 1; +nodes = ( +(506,753,l), +(506,837,l), +(190,837,l), +(190,753,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = macroncomb.case; +} +); +width = 697; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = macroncomb.case; +} +); +width = 697; +} +); +unicode = 332; +}, +{ +color = 10; +glyphname = Oogonek; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 13:35:44 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(607,46,o), +(690,166,o), +(690,345,cs), +(690,571,o), +(557,704,o), +(363,704,c), +(169,704,o), +(36,571,o), +(36,345,cs), +(36,119,o), +(169,-14,o), +(363,-14,c), +(374,-14,o), +(384,-14,o), +(394,-13,c), +(390,1,l), +(288,-32,o), +(260,-69,o), +(260,-111,c), +(260,-156,o), +(299,-190,o), +(371,-190,cs), +(402,-190,o), +(438,-183,o), +(468,-170,c), +(459,-75,l), +(439,-87,o), +(413,-96,o), +(394,-96,c), +(379,-96,o), +(371,-89,o), +(371,-79,c), +(371,-60,o), +(393,-29,o), +(476,3,c) +); +}, +{ +closed = 1; +nodes = ( +(260,132,o), +(194,204,o), +(194,345,cs), +(194,486,o), +(260,558,o), +(363,558,c), +(466,558,o), +(532,486,o), +(532,345,cs), +(532,204,o), +(466,132,o), +(363,132,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (126,0); +ref = ogonekcomb; +} +); +width = 726; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(378,-185,o), +(413,-176,o), +(441,-165,c), +(432,-84,l), +(409,-94,o), +(375,-106,o), +(355,-106,c), +(342,-106,o), +(334,-101,o), +(334,-89,c), +(334,-65,o), +(367,-27,o), +(459,9,cs), +(578,55,o), +(653,173,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs), +(355,-10,o), +(362,-10,o), +(368,-9,c), +(367,0,l), +(278,-37,o), +(250,-69,o), +(250,-111,c), +(250,-153,o), +(284,-185,o), +(349,-185,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = O; +}, +{ +pos = (125,0); +ref = ogonekcomb; +} +); +width = 697; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +}, +{ +closed = 1; +nodes = ( +(278,-37,o), +(250,-69,o), +(250,-111,c), +(250,-153,o), +(284,-185,o), +(349,-185,cs), +(378,-185,o), +(413,-176,o), +(441,-165,c), +(432,-84,l), +(409,-94,o), +(375,-106,o), +(355,-106,c), +(342,-106,o), +(334,-101,o), +(334,-89,c), +(334,-65,o), +(367,-27,o), +(459,9,cs), +(578,55,o), +(653,173,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs), +(355,-10,o), +(362,-10,o), +(368,-9,c), +(367,0,l) +); +} +); +width = 697; +} +); +unicode = 490; +}, +{ +color = 6; +glyphname = Oslash; +kernLeft = C; +kernRight = D; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (363,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(163,0,l), +(726,690,l), +(563,690,l), +(0,0,l) +); +}, +{ +closed = 1; +nodes = ( +(557,-14,o), +(690,119,o), +(690,345,cs), +(690,571,o), +(557,704,o), +(363,704,c), +(169,704,o), +(36,571,o), +(36,345,cs), +(36,119,o), +(169,-14,o), +(363,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(260,132,o), +(194,204,o), +(194,345,cs), +(194,486,o), +(260,558,o), +(363,558,c), +(466,558,o), +(532,486,o), +(532,345,cs), +(532,204,o), +(466,132,o), +(363,132,c) +); +} +); +width = 726; +}, +{ +anchors = ( +{ +name = top; +pos = (348,690); +} +); +background = { +anchors = ( +{ +name = top; +pos = (348,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(113,0,l), +(693,690,l), +(584,690,l), +(4,0,l) +); +}, +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(113,0,l), +(693,690,l), +(584,690,l), +(4,0,l) +); +}, +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +} +); +width = 697; +}, +{ +anchors = ( +{ +name = top; +pos = (348,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(113,0,l), +(693,690,l), +(584,690,l), +(4,0,l) +); +}, +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +} +); +width = 697; +} +); +unicode = 216; +}, +{ +color = 10; +glyphname = Oslashacute; +kernLeft = C; +kernRight = D; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = Oslash; +}, +{ +pos = (113,0); +ref = acutecomb.case; +} +); +width = 726; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (348,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(113,0,l), +(693,690,l), +(584,690,l), +(4,0,l) +); +}, +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +}, +{ +closed = 1; +nodes = ( +(381,735,l), +(518,845,l), +(387,845,l), +(287,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = Oslash; +}, +{ +pos = (98,0); +ref = acutecomb.case; +} +); +width = 697; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = Oslash; +}, +{ +pos = (98,0); +ref = acutecomb.case; +} +); +width = 697; +} +); +unicode = 510; +}, +{ +color = 10; +glyphname = Otilde; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (113,0); +ref = tildecomb.case; +} +); +width = 726; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (348,0); +}, +{ +name = top; +pos = (348,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +}, +{ +closed = 1; +nodes = ( +(256,735,l), +(257,757,o), +(269,773,o), +(290,773,c), +(321,773,o), +(351,735,o), +(408,735,c), +(465,735,o), +(501,777,o), +(508,845,c), +(440,845,l), +(439,823,o), +(427,807,o), +(406,807,c), +(376,807,o), +(345,845,o), +(288,845,c), +(231,845,o), +(195,803,o), +(188,735,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = tildecomb.case; +} +); +width = 697; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = tildecomb.case; +} +); +width = 697; +} +); +unicode = 213; +}, +{ +color = 6; +glyphname = OE; +kernLeft = O; +kernRight = E; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(513,0,l), +(513,145,l), +(391,145,l), +(269,145,o), +(194,215,o), +(194,345,cs), +(194,476,o), +(269,545,o), +(391,545,c), +(513,545,l), +(513,690,l), +(381,690,l), +(175,690,o), +(36,563,o), +(36,345,cs), +(36,128,o), +(175,0,o), +(381,0,c) +); +}, +{ +closed = 1; +nodes = ( +(973,0,l), +(973,145,l), +(546,145,l), +(546,0,l) +); +}, +{ +closed = 1; +nodes = ( +(633,0,l), +(633,690,l), +(478,690,l), +(478,0,l) +); +}, +{ +closed = 1; +nodes = ( +(926,282,l), +(926,419,l), +(546,419,l), +(546,282,l) +); +}, +{ +closed = 1; +nodes = ( +(969,545,l), +(969,690,l), +(546,690,l), +(546,545,l) +); +} +); +width = 1009; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(505,0,l), +(505,96,l), +(365,96,l), +(233,96,o), +(153,185,o), +(153,345,cs), +(153,506,o), +(233,594,o), +(365,594,c), +(505,594,l), +(505,690,l), +(360,690,l), +(170,690,o), +(44,560,o), +(44,345,cs), +(44,131,o), +(170,0,o), +(360,0,c) +); +}, +{ +closed = 1; +nodes = ( +(954,0,l), +(954,96,l), +(534,96,l), +(534,0,l) +); +}, +{ +closed = 1; +nodes = ( +(589,0,l), +(589,690,l), +(484,690,l), +(484,0,l) +); +}, +{ +closed = 1; +nodes = ( +(889,306,l), +(889,402,l), +(534,402,l), +(534,306,l) +); +}, +{ +closed = 1; +nodes = ( +(949,594,l), +(949,690,l), +(534,690,l), +(534,594,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(505,0,l), +(505,96,l), +(365,96,l), +(233,96,o), +(153,185,o), +(153,345,cs), +(153,506,o), +(233,594,o), +(365,594,c), +(505,594,l), +(505,690,l), +(360,690,l), +(170,690,o), +(44,560,o), +(44,345,cs), +(44,131,o), +(170,0,o), +(360,0,c) +); +}, +{ +closed = 1; +nodes = ( +(954,0,l), +(954,96,l), +(534,96,l), +(534,0,l) +); +}, +{ +closed = 1; +nodes = ( +(589,0,l), +(589,690,l), +(484,690,l), +(484,0,l) +); +}, +{ +closed = 1; +nodes = ( +(889,306,l), +(889,402,l), +(534,402,l), +(534,306,l) +); +}, +{ +closed = 1; +nodes = ( +(949,594,l), +(949,690,l), +(534,690,l), +(534,594,l) +); +} +); +width = 1000; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(589,0,l), +(589,690,l), +(484,690,l), +(484,0,l) +); +}, +{ +closed = 1; +nodes = ( +(534,306,l), +(889,306,l), +(889,402,l), +(534,402,l) +); +}, +{ +closed = 1; +nodes = ( +(534,0,l), +(954,0,l), +(954,96,l), +(534,96,l) +); +}, +{ +closed = 1; +nodes = ( +(534,594,l), +(949,594,l), +(949,690,l), +(534,690,l) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,96,l), +(365,96,l), +(233,96,o), +(153,185,o), +(153,345,cs), +(153,506,o), +(233,594,o), +(365,594,c), +(505,594,l), +(505,690,l), +(360,690,l), +(170,690,o), +(44,560,o), +(44,345,cs), +(44,131,o), +(170,0,o), +(360,0,c) +); +} +); +width = 1000; +} +); +unicode = 338; +}, +{ +color = 6; +glyphname = P; +kernLeft = H; +kernRight = P; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(341,213,l), +(519,213,o), +(612,307,o), +(612,452,cs), +(612,596,o), +(519,690,o), +(341,690,c), +(130,690,l), +(130,545,l), +(332,545,l), +(419,545,o), +(454,512,o), +(454,452,cs), +(454,391,o), +(419,358,o), +(332,358,c), +(130,358,l), +(130,213,l) +); +}, +{ +closed = 1; +nodes = ( +(217,0,l), +(217,690,l), +(62,690,l), +(62,0,l) +); +} +); +width = 632; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(329,240,l), +(483,240,o), +(584,325,o), +(584,465,cs), +(584,605,o), +(483,690,o), +(329,690,c), +(125,690,l), +(125,594,l), +(319,594,l), +(425,594,o), +(475,552.237,o), +(475,465,cs), +(475,378.691,o), +(425,336,o), +(319,336,c), +(125,336,l), +(125,240,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(329,240,l), +(483,240,o), +(584,325,o), +(584,465,cs), +(584,605,o), +(483,690,o), +(329,690,c), +(125,690,l), +(125,594,l), +(319,594,l), +(425,594,o), +(475,552,o), +(475,465,cs), +(475,379,o), +(425,336,o), +(319,336,c), +(125,336,l), +(125,240,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +} +); +width = 613; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(483,240,o), +(584,325,o), +(584,465,cs), +(584,605,o), +(483,690,o), +(329,690,c), +(125,690,l), +(125,594,l), +(319,594,l), +(425,594,o), +(475,552.237,o), +(475,465,cs), +(475,378.691,o), +(425,336,o), +(319,336,c), +(125,336,l), +(125,240,l), +(329,240,l) +); +} +); +width = 613; +} +); +unicode = 80; +}, +{ +color = 6; +glyphname = Thorn; +kernLeft = H; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(341,110,l), +(519,110,o), +(612,204,o), +(612,348,cs), +(612,493,o), +(519,587,o), +(341,587,c), +(130,587,l), +(130,442,l), +(332,442,l), +(419,442,o), +(454,409,o), +(454,348,cs), +(454,287,o), +(419,254,o), +(332,254,c), +(130,254,l), +(130,110,l) +); +}, +{ +closed = 1; +nodes = ( +(217,0,l), +(217,690,l), +(62,690,l), +(62,0,l) +); +} +); +width = 632; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(329,125,l), +(483,125,o), +(584,210,o), +(584,350,cs), +(584,490,o), +(483,575,o), +(329,575,c), +(125,575,l), +(125,479,l), +(319,479,l), +(425,479,o), +(475,437,o), +(475,350,cs), +(475,264,o), +(425,221,o), +(319,221,c), +(125,221,l), +(125,125,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(329,125,l), +(483,125,o), +(584,210,o), +(584,350,cs), +(584,490,o), +(483,575,o), +(329,575,c), +(125,575,l), +(125,479,l), +(319,479,l), +(425,479,o), +(475,437,o), +(475,350,cs), +(475,264,o), +(425,221,o), +(319,221,c), +(125,221,l), +(125,125,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +} +); +width = 614; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(483,125,o), +(584,210,o), +(584,350,cs), +(584,490,o), +(483,575,o), +(329,575,c), +(125,575,l), +(125,479,l), +(319,479,l), +(425,479,o), +(475,437,o), +(475,350,cs), +(475,264,o), +(425,221,o), +(319,221,c), +(125,221,l), +(125,125,l), +(329,125,l) +); +} +); +width = 614; +} +); +unicode = 222; +}, +{ +color = 6; +glyphname = Q; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(557,-14,o), +(690,119,o), +(690,345,cs), +(690,571,o), +(557,704,o), +(363,704,c), +(169,704,o), +(36,571,o), +(36,345,cs), +(36,119,o), +(169,-14,o), +(363,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(643,-60,l), +(518,112,l), +(446,231,l), +(290,231,l), +(408,61,l), +(477,-60,l) +); +}, +{ +closed = 1; +nodes = ( +(260,132,o), +(194,204,o), +(194,345,cs), +(194,486,o), +(260,558,o), +(363,558,c), +(466,558,o), +(532,486,o), +(532,345,cs), +(532,204,o), +(466,132,o), +(363,132,c) +); +} +); +width = 726; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(620,-55,l), +(501,90,l), +(428,195,l), +(317,195,l), +(433,49,l), +(504,-55,l) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(620,-55,l), +(501,90,l), +(428,195,l), +(317,195,l), +(433,49,l), +(504,-55,l) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +} +); +width = 697; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(293,-105,o), +(356,-160,o), +(457,-160,c), +(491,-160,o), +(515,-157,o), +(540,-150,c), +(540,-58,l), +(521,-65,o), +(499,-69,o), +(472,-69,c), +(415,-69,o), +(391,-47,o), +(396,10,c), +(301,5,l) +); +}, +{ +closed = 1; +nodes = ( +(526,-10,o), +(649,125,o), +(649,345,cs), +(649,566,o), +(526,700,o), +(344,700,cs), +(163,700,o), +(40,566,o), +(40,345,cs), +(40,125,o), +(163,-10,o), +(344,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(224,87,o), +(149,179,o), +(149,345,cs), +(149,512,o), +(224,603,o), +(344,603,cs), +(465,603,o), +(540,512,o), +(540,345,cs), +(540,179,o), +(465,87,o), +(344,87,cs) +); +}, +{ +closed = 1; +nodes = ( +(638,-85,l), +(402,225,l), +(291,225,l), +(522,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(526,-10,o), +(649,125,o), +(649,345,cs), +(649,566,o), +(526,700,o), +(344,700,cs), +(163,700,o), +(40,566,o), +(40,345,cs), +(40,125,o), +(163,-10,o), +(344,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(224,87,o), +(149,179,o), +(149,345,cs), +(149,512,o), +(224,603,o), +(344,603,cs), +(465,603,o), +(540,512,o), +(540,345,cs), +(540,179,o), +(465,87,o), +(344,87,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(620,-55,l), +(501,90,l), +(428,195,l), +(317,195,l), +(433,49,l), +(504,-55,l) +); +}, +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +} +); +width = 697; +} +); +unicode = 81; +}, +{ +color = 6; +glyphname = R; +kernLeft = H; +kernRight = R; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (329,0); +}, +{ +name = top; +pos = (329,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(345,233,l), +(512,233,o), +(602,323,o), +(602,462,cs), +(602,600,o), +(512,690,o), +(345,690,c), +(130,690,l), +(130,545,l), +(336,545,l), +(412,545,o), +(444,516,o), +(444,462,cs), +(444,407,o), +(412,378,o), +(336,378,c), +(130,378,l), +(130,233,l) +); +}, +{ +closed = 1; +nodes = ( +(217,0,l), +(217,690,l), +(62,690,l), +(62,0,l) +); +}, +{ +closed = 1; +nodes = ( +(621,0,l), +(426,299,l), +(266,299,l), +(447,0,l) +); +} +); +width = 642; +}, +{ +anchors = ( +{ +name = bottom; +pos = (324,0); +}, +{ +name = top; +pos = (324,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (324,0); +}, +{ +name = top; +pos = (324,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(329,260,l), +(476.961,260,o), +(574,341,o), +(574,475,cs), +(574,609,o), +(477,690,o), +(329,690,c), +(125,690,l), +(125,594,l), +(319,594,l), +(418.205,594,o), +(465,555.475,o), +(465,475,cs), +(465,395.381,o), +(418.205,356,o), +(319,356,c), +(125,356,l), +(125,260,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(589,0,l), +(394,299,l), +(279,299,l), +(466,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(329,260,l), +(477,260,o), +(574,341,o), +(574,475,cs), +(574,609,o), +(477,690,o), +(329,690,c), +(125,690,l), +(125,594,l), +(319,594,l), +(418,594,o), +(465,555,o), +(465,475,cs), +(465,395,o), +(418,356,o), +(319,356,c), +(125,356,l), +(125,260,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(589,0,l), +(394,299,l), +(279,299,l), +(466,0,l) +); +} +); +width = 619; +}, +{ +anchors = ( +{ +name = bottom; +pos = (324,0); +}, +{ +name = top; +pos = (324,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(589,0,l), +(394,299,l), +(279,299,l), +(466,0,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(476.961,260,o), +(574,341,o), +(574,475,cs), +(574,609,o), +(477,690,o), +(329,690,c), +(125,690,l), +(125,594,l), +(319,594,l), +(418.205,594,o), +(465,555.475,o), +(465,475,cs), +(465,395.381,o), +(418.205,356,o), +(319,356,c), +(125,356,l), +(125,260,l), +(329,260,l) +); +} +); +width = 619; +} +); +unicode = 82; +}, +{ +color = 10; +glyphname = Racute; +kernLeft = H; +kernRight = R; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = R; +}, +{ +pos = (79,0); +ref = acutecomb.case; +} +); +width = 642; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (324,0); +}, +{ +name = top; +pos = (324,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(329,260,l), +(476.961,260,o), +(574,341,o), +(574,475,cs), +(574,609,o), +(477,690,o), +(329,690,c), +(125,690,l), +(125,594,l), +(319,594,l), +(418.205,594,o), +(465,555.475,o), +(465,475,cs), +(465,395.381,o), +(418.205,356,o), +(319,356,c), +(125,356,l), +(125,260,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(589,0,l), +(394,299,l), +(279,299,l), +(466,0,l) +); +}, +{ +closed = 1; +nodes = ( +(357,735,l), +(494,845,l), +(363,845,l), +(263,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = R; +}, +{ +pos = (74,0); +ref = acutecomb.case; +} +); +width = 619; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = R; +}, +{ +pos = (74,0); +ref = acutecomb.case; +} +); +width = 619; +} +); +unicode = 340; +}, +{ +color = 10; +glyphname = Rcaron; +kernLeft = H; +kernRight = R; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = R; +}, +{ +pos = (79,0); +ref = caroncomb.case; +} +); +width = 642; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (324,0); +}, +{ +name = top; +pos = (324,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(329,260,l), +(476.961,260,o), +(574,341,o), +(574,475,cs), +(574,609,o), +(477,690,o), +(329,690,c), +(125,690,l), +(125,594,l), +(319,594,l), +(418.205,594,o), +(465,555.475,o), +(465,475,cs), +(465,395.381,o), +(418.205,356,o), +(319,356,c), +(125,356,l), +(125,260,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(589,0,l), +(394,299,l), +(279,299,l), +(466,0,l) +); +}, +{ +closed = 1; +nodes = ( +(393,735,l), +(507,845,l), +(408,845,l), +(259,735,l) +); +}, +{ +closed = 1; +nodes = ( +(389,735,l), +(240,845,l), +(141,845,l), +(255,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = R; +}, +{ +pos = (74,0); +ref = caroncomb.case; +} +); +width = 619; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = R; +}, +{ +pos = (74,0); +ref = caroncomb.case; +} +); +width = 619; +} +); +unicode = 344; +}, +{ +color = 10; +glyphname = Rcedilla; +kernLeft = H; +kernRight = R; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = R; +}, +{ +pos = (75,0); +ref = commaaccent; +} +); +width = 642; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (324,0); +}, +{ +name = top; +pos = (324,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(329,260,l), +(476.961,260,o), +(574,341,o), +(574,475,cs), +(574,609,o), +(477,690,o), +(329,690,c), +(125,690,l), +(125,594,l), +(319,594,l), +(418.205,594,o), +(465,555.475,o), +(465,475,cs), +(465,395.381,o), +(418.205,356,o), +(319,356,c), +(125,356,l), +(125,260,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(589,0,l), +(394,299,l), +(279,299,l), +(466,0,l) +); +}, +{ +closed = 1; +nodes = ( +(340,-275,l), +(381,-72,l), +(277,-72,l), +(277,-275,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = R; +}, +{ +pos = (69,0); +ref = commaaccent; +} +); +width = 619; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = R; +}, +{ +pos = (69,0); +ref = commaaccent; +} +); +width = 619; +} +); +unicode = 342; +}, +{ +color = 6; +glyphname = S; +kernLeft = S; +kernRight = S; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (317,0); +}, +{ +name = top; +pos = (315,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(485,-14,o), +(589,71,o), +(589,196,c), +(589,462,o), +(204,391,o), +(204,507,c), +(204,538,o), +(230,566,o), +(299,566,c), +(364,566,o), +(412,536,o), +(436,466,c), +(581,517,l), +(542,640,o), +(443,704,o), +(313,704,c), +(147,704,o), +(48,619,o), +(48,498,c), +(48,245,o), +(430,322,o), +(430,190,c), +(430,153,o), +(398,125,o), +(325,125,c), +(255,125,o), +(204,159,o), +(178,241,c), +(27,190,l), +(69,53,o), +(170,-14,o), +(316,-14,c) +); +} +); +width = 621; +}, +{ +anchors = ( +{ +name = bottom; +pos = (294,0); +}, +{ +name = top; +pos = (294,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (294,0); +}, +{ +name = top; +pos = (294,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(457,-10,o), +(553,74,o), +(553,184,c), +(553,456,o), +(155,362,o), +(155,520,c), +(155,568,o), +(194,607,o), +(284,607,c), +(366,607,o), +(420,572.333,o), +(446,499,c), +(546,532,l), +(511,637,o), +(422,700,o), +(293,700,c), +(136,700,o), +(50,615,o), +(50,509,c), +(50,257,o), +(447,357,o), +(447,174,c), +(447,119,o), +(391,83,o), +(302,83,c), +(211,83,o), +(156,119.64,o), +(131,196,c), +(28,163,l), +(64,55,o), +(154,-10,o), +(294,-10,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(457,-10,o), +(553,74,o), +(553,184,c), +(553,456,o), +(155,362,o), +(155,520,c), +(155,568,o), +(194,607,o), +(284,607,c), +(366,607,o), +(420,572,o), +(446,499,c), +(546,532,l), +(511,637,o), +(422,700,o), +(293,700,c), +(136,700,o), +(50,615,o), +(50,509,c), +(50,257,o), +(447,357,o), +(447,174,c), +(447,119,o), +(391,83,o), +(302,83,c), +(211,83,o), +(156,120,o), +(131,196,c), +(28,163,l), +(64,55,o), +(154,-10,o), +(294,-10,c) +); +} +); +width = 592; +}, +{ +anchors = ( +{ +name = bottom; +pos = (294,0); +}, +{ +name = top; +pos = (294,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(553,456,o), +(155,362,o), +(155,520,c), +(155,568,o), +(194,607,o), +(284,607,c), +(366,607,o), +(420,572.333,o), +(446,499,c), +(546,532,l), +(511,637,o), +(422,700,o), +(293,700,c), +(136,700,o), +(50,615,o), +(50,509,c), +(50,257,o), +(447,357,o), +(447,174,c), +(447,119,o), +(391,83,o), +(302,83,c), +(211,83,o), +(156,119.64,o), +(131,196,c), +(28,163,l), +(64,55,o), +(154,-10,o), +(294,-10,c), +(457,-10,o), +(553,74,o), +(553,184,c) +); +} +); +width = 592; +} +); +unicode = 83; +}, +{ +color = 10; +glyphname = Sacute; +kernLeft = S; +kernRight = S; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = S; +}, +{ +pos = (65,0); +ref = acutecomb.case; +} +); +width = 621; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (294,0); +}, +{ +name = top; +pos = (294,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(457,-10,o), +(553,74,o), +(553,184,c), +(553,456,o), +(155,362,o), +(155,520,c), +(155,568,o), +(194,607,o), +(284,607,c), +(366,607,o), +(420,572.333,o), +(446,499,c), +(546,532,l), +(511,637,o), +(422,700,o), +(293,700,c), +(136,700,o), +(50,615,o), +(50,509,c), +(50,257,o), +(447,357,o), +(447,174,c), +(447,119,o), +(391,83,o), +(302,83,c), +(211,83,o), +(156,119.64,o), +(131,196,c), +(28,163,l), +(64,55,o), +(154,-10,o), +(294,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(327,735,l), +(464,845,l), +(333,845,l), +(233,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = S; +}, +{ +pos = (44,0); +ref = acutecomb.case; +} +); +width = 592; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = S; +}, +{ +pos = (44,0); +ref = acutecomb.case; +} +); +width = 592; +} +); +unicode = 346; +}, +{ +color = 10; +glyphname = Scaron; +kernLeft = S; +kernRight = S; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = S; +}, +{ +pos = (65,0); +ref = caroncomb.case; +} +); +width = 621; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (294,0); +}, +{ +name = top; +pos = (294,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(457,-10,o), +(553,74,o), +(553,184,c), +(553,456,o), +(155,362,o), +(155,520,c), +(155,568,o), +(194,607,o), +(284,607,c), +(366,607,o), +(420,572.333,o), +(446,499,c), +(546,532,l), +(511,637,o), +(422,700,o), +(293,700,c), +(136,700,o), +(50,615,o), +(50,509,c), +(50,257,o), +(447,357,o), +(447,174,c), +(447,119,o), +(391,83,o), +(302,83,c), +(211,83,o), +(156,119.64,o), +(131,196,c), +(28,163,l), +(64,55,o), +(154,-10,o), +(294,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(363,735,l), +(477,845,l), +(378,845,l), +(229,735,l) +); +}, +{ +closed = 1; +nodes = ( +(359,735,l), +(210,845,l), +(111,845,l), +(225,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = S; +}, +{ +pos = (44,0); +ref = caroncomb.case; +} +); +width = 592; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = S; +}, +{ +pos = (44,0); +ref = caroncomb.case; +} +); +width = 592; +} +); +unicode = 352; +}, +{ +color = 10; +glyphname = Scedilla; +kernLeft = S; +kernRight = S; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = S; +}, +{ +pos = (64,0); +ref = cedillacomb; +} +); +width = 621; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (294,0); +}, +{ +name = top; +pos = (294,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(457,-10,o), +(553,74,o), +(553,184,c), +(553,456,o), +(155,362,o), +(155,520,c), +(155,568,o), +(194,607,o), +(284,607,c), +(366,607,o), +(420,572.333,o), +(446,499,c), +(546,532,l), +(511,637,o), +(422,700,o), +(293,700,c), +(136,700,o), +(50,615,o), +(50,509,c), +(50,257,o), +(447,357,o), +(447,174,c), +(447,119,o), +(391,83,o), +(302,83,c), +(211,83,o), +(156,119.64,o), +(131,196,c), +(28,163,l), +(64,55,o), +(154,-10,o), +(294,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(345,-185,o), +(381,-151,o), +(381,-106,cs), +(381,-57,o), +(344,-29,o), +(296,-29,c), +(308,-43,l), +(314,9,l), +(258,11,l), +(245,-73,l), +(256,-71,o), +(263,-70,o), +(274,-70,c), +(298,-70,o), +(312,-79,o), +(312,-96,c), +(312,-110,o), +(299,-119,o), +(278,-119,c), +(258,-119,o), +(242,-114,o), +(224,-105,c), +(211,-169,l), +(236,-180,o), +(261,-185,o), +(287,-185,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = S; +}, +{ +pos = (42,0); +ref = cedillacomb; +} +); +width = 592; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = S; +}, +{ +pos = (42,0); +ref = cedilla; +} +); +width = 592; +} +); +unicode = 350; +}, +{ +color = 10; +glyphname = Scircumflex; +kernLeft = S; +kernRight = S; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = S; +}, +{ +pos = (65,0); +ref = circumflexcomb.case; +} +); +width = 621; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (294,0); +}, +{ +name = top; +pos = (294,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(457,-10,o), +(553,74,o), +(553,184,c), +(553,456,o), +(155,362,o), +(155,520,c), +(155,568,o), +(194,607,o), +(284,607,c), +(366,607,o), +(420,572.333,o), +(446,499,c), +(546,532,l), +(511,637,o), +(422,700,o), +(293,700,c), +(136,700,o), +(50,615,o), +(50,509,c), +(50,257,o), +(447,357,o), +(447,174,c), +(447,119,o), +(391,83,o), +(302,83,c), +(211,83,o), +(156,119.64,o), +(131,196,c), +(28,163,l), +(64,55,o), +(154,-10,o), +(294,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(477,735,l), +(363,845,l), +(229,845,l), +(378,735,l) +); +}, +{ +closed = 1; +nodes = ( +(210,735,l), +(359,845,l), +(225,845,l), +(111,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = S; +}, +{ +pos = (44,0); +ref = circumflexcomb.case; +} +); +width = 592; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = S; +}, +{ +pos = (44,0); +ref = circumflexcomb.case; +} +); +width = 592; +} +); +unicode = 348; +}, +{ +color = 10; +glyphname = Scommaaccent; +kernLeft = S; +kernRight = S; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = S; +}, +{ +pos = (173,0); +ref = commaaccentcomb; +} +); +width = 621; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (294,0); +}, +{ +name = top; +pos = (294,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(457,-10,o), +(553,74,o), +(553,184,c), +(553,456,o), +(155,362,o), +(155,520,c), +(155,568,o), +(194,607,o), +(284,607,c), +(366,607,o), +(420,572.333,o), +(446,499,c), +(546,532,l), +(511,637,o), +(422,700,o), +(293,700,c), +(136,700,o), +(50,615,o), +(50,509,c), +(50,257,o), +(447,357,o), +(447,174,c), +(447,119,o), +(391,83,o), +(302,83,c), +(211,83,o), +(156,119.64,o), +(131,196,c), +(28,163,l), +(64,55,o), +(154,-10,o), +(294,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(310,-275,l), +(351,-72,l), +(247,-72,l), +(247,-275,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = S; +}, +{ +pos = (153,0); +ref = commaaccentcomb; +} +); +width = 592; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = S; +}, +{ +pos = (39,0); +ref = commaaccent; +} +); +width = 592; +} +); +unicode = 536; +}, +{ +color = 6; +glyphname = Germandbls; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(385,493,o), +(353,442,o), +(353,390,c), +(353,258,o), +(536,249,o), +(536,146,c), +(536,105,o), +(496.833,80,o), +(442,80,c), +(398.396,80,o), +(365.694,94.143,o), +(321,125,c), +(286,35,l), +(327.727,8,o), +(376.944,-10,o), +(439,-10,c), +(566.505,-10,o), +(635,58,o), +(635,151,c), +(635,303,o), +(446,326,o), +(446,400,c), +(446,426,o), +(476,461,o), +(583,489,c), +(561,643,o), +(457,700,o), +(337,700,cs), +(172,700,o), +(70,596,o), +(70,426,c), +(70,0,l), +(175,0,l), +(175,416,l), +(175,539,o), +(231,603,o), +(338,603,cs), +(402,603,o), +(455,578,o), +(472,529,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(584,-14,o), +(664,58,o), +(664,159,c), +(664,313,o), +(497,333,o), +(497,394,c), +(497,419,o), +(518,439,o), +(612,471,c), +(589,622,o), +(491,704,o), +(336,704,cs), +(157,704,o), +(55,594,o), +(55,425,c), +(55,0,l), +(210,0,l), +(210,417,l), +(210,506,o), +(254,562,o), +(337,562,cs), +(389,562,o), +(425,544,o), +(445,511,c), +(384,482,o), +(350,434,o), +(350,381,c), +(350,247,o), +(515,244,o), +(515,166,c), +(515,129,o), +(487,106,o), +(440,106,c), +(406,106,o), +(372,120,o), +(338,144,c), +(288,29,l), +(334,1,o), +(385,-14,o), +(450,-14,c) +); +} +); +width = 692; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(566.505,-10,o), +(635,58,o), +(635,151,c), +(635,303,o), +(446,326,o), +(446,400,c), +(446,426,o), +(476,461,o), +(583,489,c), +(561,643,o), +(457,700,o), +(337,700,cs), +(172,700,o), +(70,596,o), +(70,426,c), +(70,0,l), +(175,0,l), +(175,416,l), +(175,539,o), +(231,603,o), +(338,603,cs), +(402,603,o), +(455,578,o), +(472,529,c), +(385,493,o), +(353,442,o), +(353,390,c), +(353,258,o), +(536,249,o), +(536,146,c), +(536,105,o), +(496.833,80,o), +(442,80,c), +(398.396,80,o), +(365.694,94.143,o), +(321,125,c), +(286,35,l), +(327.727,8,o), +(376.944,-10,o), +(439,-10,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(567,-10,o), +(635,58,o), +(635,151,c), +(635,303,o), +(446,326,o), +(446,400,c), +(446,426,o), +(476,461,o), +(583,489,c), +(561,643,o), +(457,700,o), +(337,700,cs), +(172,700,o), +(70,596,o), +(70,426,c), +(70,0,l), +(175,0,l), +(175,416,l), +(175,539,o), +(231,603,o), +(338,603,cs), +(402,603,o), +(455,578,o), +(472,529,c), +(385,493,o), +(353,442,o), +(353,390,c), +(353,258,o), +(536,249,o), +(536,146,c), +(536,105,o), +(497,80,o), +(442,80,c), +(398,80,o), +(366,94,o), +(321,125,c), +(286,35,l), +(328,8,o), +(377,-10,o), +(439,-10,c) +); +} +); +width = 671; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(385,493,o), +(353,442,o), +(353,390,c), +(353,258,o), +(536,249,o), +(536,146,c), +(536,105,o), +(496.833,80,o), +(442,80,c), +(398.396,80,o), +(365.694,94.143,o), +(321,125,c), +(286,35,l), +(327.727,8,o), +(376.944,-10,o), +(439,-10,c), +(566.505,-10,o), +(635,58,o), +(635,151,c), +(635,303,o), +(446,326,o), +(446,400,c), +(446,426,o), +(476,461,o), +(583,489,c), +(561,643,o), +(457,700,o), +(337,700,cs), +(172,700,o), +(70,596,o), +(70,426,c), +(70,0,l), +(175,0,l), +(175,416,l), +(175,539,o), +(231,603,o), +(338,603,cs), +(402,603,o), +(455,578,o), +(472,529,c) +); +} +); +width = 671; +} +); +unicode = 7838; +}, +{ +color = 6; +glyphname = T; +kernLeft = T; +kernRight = T; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (297,0); +}, +{ +name = top; +pos = (297,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(374,0,l), +(374,690,l), +(220,690,l), +(220,0,l) +); +}, +{ +closed = 1; +nodes = ( +(574,545,l), +(574,690,l), +(20,690,l), +(20,545,l) +); +} +); +width = 594; +}, +{ +anchors = ( +{ +name = bottom; +pos = (291,0); +}, +{ +name = top; +pos = (291,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (291,0); +}, +{ +name = top; +pos = (291,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(343,0,l), +(343,690,l), +(238,690,l), +(238,0,l) +); +}, +{ +closed = 1; +nodes = ( +(563,594,l), +(563,690,l), +(18,690,l), +(18,594,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(343,0,l), +(343,690,l), +(238,690,l), +(238,0,l) +); +}, +{ +closed = 1; +nodes = ( +(563,594,l), +(563,690,l), +(18,690,l), +(18,594,l) +); +} +); +width = 581; +}, +{ +anchors = ( +{ +name = bottom; +pos = (291,0); +}, +{ +name = top; +pos = (291,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(343,0,l), +(343,690,l), +(238,690,l), +(238,0,l) +); +}, +{ +closed = 1; +nodes = ( +(18,594,l), +(563,594,l), +(563,690,l), +(18,690,l) +); +} +); +width = 581; +} +); +unicode = 84; +}, +{ +color = 6; +glyphname = Tbar; +kernLeft = T; +kernRight = T; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(85,261,l), +(490,261,l), +(490,352,l), +(85,352,l) +); +}, +{ +closed = 1; +nodes = ( +(340,0,l), +(340,690,l), +(235,690,l), +(235,0,l) +); +}, +{ +closed = 1; +nodes = ( +(15,594,l), +(560,594,l), +(560,690,l), +(15,690,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(374,0,l), +(374,690,l), +(220,690,l), +(220,0,l) +); +}, +{ +closed = 1; +nodes = ( +(534,246,l), +(534,367,l), +(60,367,l), +(60,246,l) +); +}, +{ +closed = 1; +nodes = ( +(574,545,l), +(574,690,l), +(20,690,l), +(20,545,l) +); +} +); +width = 594; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(343,0,l), +(343,690,l), +(238,690,l), +(238,0,l) +); +}, +{ +closed = 1; +nodes = ( +(493,261,l), +(493,352,l), +(88,352,l), +(88,261,l) +); +}, +{ +closed = 1; +nodes = ( +(563,594,l), +(563,690,l), +(18,690,l), +(18,594,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(343,0,l), +(343,690,l), +(238,690,l), +(238,0,l) +); +}, +{ +closed = 1; +nodes = ( +(493,261,l), +(493,352,l), +(88,352,l), +(88,261,l) +); +}, +{ +closed = 1; +nodes = ( +(563,594,l), +(563,690,l), +(18,690,l), +(18,594,l) +); +} +); +width = 581; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(88,261,l), +(493,261,l), +(493,352,l), +(88,352,l) +); +}, +{ +closed = 1; +nodes = ( +(343,0,l), +(343,690,l), +(238,690,l), +(238,0,l) +); +}, +{ +closed = 1; +nodes = ( +(18,594,l), +(563,594,l), +(563,690,l), +(18,690,l) +); +} +); +width = 581; +} +); +unicode = 358; +}, +{ +color = 10; +glyphname = Tcaron; +kernLeft = T; +kernRight = T; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = T; +}, +{ +pos = (47,0); +ref = caroncomb.case; +} +); +width = 594; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (291,0); +}, +{ +name = top; +pos = (291,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(343,0,l), +(343,690,l), +(238,690,l), +(238,0,l) +); +}, +{ +closed = 1; +nodes = ( +(563,594,l), +(563,690,l), +(18,690,l), +(18,594,l) +); +}, +{ +closed = 1; +nodes = ( +(360,735,l), +(474,845,l), +(375,845,l), +(226,735,l) +); +}, +{ +closed = 1; +nodes = ( +(356,735,l), +(207,845,l), +(108,845,l), +(222,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = T; +}, +{ +pos = (41,0); +ref = caroncomb.case; +} +); +width = 581; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = T; +}, +{ +pos = (41,0); +ref = caroncomb.case; +} +); +width = 581; +} +); +unicode = 356; +}, +{ +color = 10; +glyphname = Tcedilla; +kernLeft = T; +kernRight = T; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = T; +}, +{ +pos = (44,0); +ref = cedillacomb; +} +); +width = 594; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (291,0); +}, +{ +name = top; +pos = (291,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(343,0,l), +(343,690,l), +(238,690,l), +(238,0,l) +); +}, +{ +closed = 1; +nodes = ( +(563,594,l), +(563,690,l), +(18,690,l), +(18,594,l) +); +}, +{ +closed = 1; +nodes = ( +(342,-185,o), +(378,-151,o), +(378,-106,cs), +(378,-57,o), +(341,-29,o), +(293,-29,c), +(305,-43,l), +(311,9,l), +(255,11,l), +(242,-73,l), +(253,-71,o), +(260,-70,o), +(271,-70,c), +(295,-70,o), +(309,-79,o), +(309,-96,c), +(309,-110,o), +(296,-119,o), +(275,-119,c), +(255,-119,o), +(239,-114,o), +(221,-105,c), +(208,-169,l), +(233,-180,o), +(258,-185,o), +(284,-185,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = T; +}, +{ +pos = (39,0); +ref = cedillacomb; +} +); +width = 581; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = T; +}, +{ +pos = (39,0); +ref = cedilla; +} +); +width = 581; +} +); +unicode = 354; +}, +{ +color = 10; +glyphname = Tcommaaccent; +kernLeft = T; +kernRight = T; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = T; +}, +{ +pos = (153,0); +ref = commaaccentcomb; +} +); +width = 594; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (291,0); +}, +{ +name = top; +pos = (291,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(343,0,l), +(343,690,l), +(238,690,l), +(238,0,l) +); +}, +{ +closed = 1; +nodes = ( +(563,594,l), +(563,690,l), +(18,690,l), +(18,594,l) +); +}, +{ +closed = 1; +nodes = ( +(307,-275,l), +(348,-72,l), +(244,-72,l), +(244,-275,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = T; +}, +{ +pos = (150,0); +ref = commaaccentcomb; +} +); +width = 581; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = T; +}, +{ +pos = (36,0); +ref = commaaccent; +} +); +width = 581; +} +); +unicode = 538; +}, +{ +color = 6; +glyphname = U; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (346,0); +}, +{ +name = ogonek; +pos = (452,0); +}, +{ +name = top; +pos = (346,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(532,-14,o), +(638,96,o), +(638,265,c), +(638,690,l), +(486,690,l), +(486,273,l), +(486,184,o), +(437,132,o), +(347,132,cs), +(258,132,o), +(210,184,o), +(210,273,c), +(210,690,l), +(55,690,l), +(55,265,l), +(55,96,o), +(161,-14,o), +(346,-14,cs) +); +} +); +width = 693; +}, +{ +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = ogonek; +pos = (418,0); +}, +{ +name = top; +pos = (337,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = top; +pos = (337,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(503,-10,o), +(605,94,o), +(605,264,c), +(605,690,l), +(503,690,l), +(503,274,l), +(503,151,o), +(446,87,o), +(338,87,cs), +(231,87,o), +(175,150.564,o), +(175,274,c), +(175,690,l), +(70,690,l), +(70,264,l), +(70,94,o), +(172,-10,o), +(337,-10,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(503,-10,o), +(605,94,o), +(605,264,c), +(605,690,l), +(503,690,l), +(503,274,l), +(503,151,o), +(446,87,o), +(338,87,cs), +(231,87,o), +(175,151,o), +(175,274,c), +(175,690,l), +(70,690,l), +(70,264,l), +(70,94,o), +(172,-10,o), +(337,-10,cs) +); +} +); +width = 675; +}, +{ +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = top; +pos = (337,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(503,151,o), +(446,87,o), +(338,87,cs), +(231,87,o), +(175,150.564,o), +(175,274,c), +(175,690,l), +(70,690,l), +(70,264,l), +(70,94,o), +(172,-10,o), +(337,-10,cs), +(503,-10,o), +(605,94,o), +(605,264,c), +(605,690,l), +(503,690,l), +(503,274,l) +); +} +); +width = 675; +} +); +unicode = 85; +}, +{ +color = 10; +glyphname = Uacute; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (96,0); +ref = acutecomb.case; +} +); +width = 693; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = top; +pos = (337,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(503,-10,o), +(605,94,o), +(605,264,c), +(605,690,l), +(503,690,l), +(503,274,l), +(503,151,o), +(446,87,o), +(338,87,cs), +(231,87,o), +(175,150.564,o), +(175,274,c), +(175,690,l), +(70,690,l), +(70,264,l), +(70,94,o), +(172,-10,o), +(337,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(370,735,l), +(507,845,l), +(376,845,l), +(276,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = acutecomb.case; +} +); +width = 675; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = acutecomb.case; +} +); +width = 675; +} +); +unicode = 218; +}, +{ +color = 10; +glyphname = Ubreve; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (96,0); +ref = brevecomb.case; +} +); +width = 693; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = top; +pos = (337,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(503,-10,o), +(605,94,o), +(605,264,c), +(605,690,l), +(503,690,l), +(503,274,l), +(503,151,o), +(446,87,o), +(338,87,cs), +(231,87,o), +(175,150.564,o), +(175,274,c), +(175,690,l), +(70,690,l), +(70,264,l), +(70,94,o), +(172,-10,o), +(337,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(434,735,o), +(482,777,o), +(487,845,c), +(417,845,l), +(413,820,o), +(392,805,o), +(337,805,c), +(282,805,o), +(261,820,o), +(257,845,c), +(187,845,l), +(192,777,o), +(240,735,o), +(337,735,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = brevecomb.case; +} +); +width = 675; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = brevecomb.case; +} +); +width = 675; +} +); +unicode = 364; +}, +{ +color = 10; +glyphname = Ucircumflex; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (96,0); +ref = circumflexcomb.case; +} +); +width = 693; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = top; +pos = (337,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(503,-10,o), +(605,94,o), +(605,264,c), +(605,690,l), +(503,690,l), +(503,274,l), +(503,151,o), +(446,87,o), +(338,87,cs), +(231,87,o), +(175,150.564,o), +(175,274,c), +(175,690,l), +(70,690,l), +(70,264,l), +(70,94,o), +(172,-10,o), +(337,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(520,735,l), +(406,845,l), +(272,845,l), +(421,735,l) +); +}, +{ +closed = 1; +nodes = ( +(253,735,l), +(402,845,l), +(268,845,l), +(154,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = circumflexcomb.case; +} +); +width = 675; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = circumflexcomb.case; +} +); +width = 675; +} +); +unicode = 219; +}, +{ +color = 10; +glyphname = Udieresis; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (96,0); +ref = dieresiscomb.case; +} +); +width = 693; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = top; +pos = (337,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(503,-10,o), +(605,94,o), +(605,264,c), +(605,690,l), +(503,690,l), +(503,274,l), +(503,151,o), +(446,87,o), +(338,87,cs), +(231,87,o), +(175,150.564,o), +(175,274,c), +(175,690,l), +(70,690,l), +(70,264,l), +(70,94,o), +(172,-10,o), +(337,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(470,742,o), +(495,765,o), +(495,798,cs), +(495,832,o), +(470,855,o), +(438,855,cs), +(406,855,o), +(381,832,o), +(381,798,cs), +(381,765,o), +(406,742,o), +(438,742,cs) +); +}, +{ +closed = 1; +nodes = ( +(268,742,o), +(293,765,o), +(293,798,cs), +(293,832,o), +(268,855,o), +(236,855,cs), +(204,855,o), +(179,832,o), +(179,798,cs), +(179,765,o), +(204,742,o), +(236,742,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = dieresiscomb.case; +} +); +width = 675; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = dieresiscomb.case; +} +); +width = 675; +} +); +unicode = 220; +}, +{ +color = 10; +glyphname = Udotbelow; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (96,0); +ref = dotbelow; +} +); +width = 693; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = top; +pos = (337,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(503,-10,o), +(605,94,o), +(605,264,c), +(605,690,l), +(503,690,l), +(503,274,l), +(503,151,o), +(446,87,o), +(338,87,cs), +(231,87,o), +(175,150.564,o), +(175,274,c), +(175,690,l), +(70,690,l), +(70,264,l), +(70,94,o), +(172,-10,o), +(337,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(372,-195,o), +(399,-170,o), +(399,-133,cs), +(399,-97,o), +(372,-72,o), +(337,-72,cs), +(302,-72,o), +(275,-97,o), +(275,-133,cs), +(275,-170,o), +(302,-195,o), +(337,-195,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = dotbelow; +} +); +width = 675; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = dotbelow; +} +); +width = 675; +} +); +unicode = 7908; +}, +{ +color = 10; +glyphname = Ugrave; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (96,0); +ref = gravecomb.case; +} +); +width = 693; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = top; +pos = (337,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(503,-10,o), +(605,94,o), +(605,264,c), +(605,690,l), +(503,690,l), +(503,274,l), +(503,151,o), +(446,87,o), +(338,87,cs), +(231,87,o), +(175,150.564,o), +(175,274,c), +(175,690,l), +(70,690,l), +(70,264,l), +(70,94,o), +(172,-10,o), +(337,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(398,735,l), +(298,845,l), +(167,845,l), +(304,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = gravecomb.case; +} +); +width = 675; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = gravecomb.case; +} +); +width = 675; +} +); +unicode = 217; +}, +{ +color = 10; +glyphname = Uhungarumlaut; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (96,0); +ref = hungarumlautcomb.case; +} +); +width = 693; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = top; +pos = (337,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(503,-10,o), +(605,94,o), +(605,264,c), +(605,690,l), +(503,690,l), +(503,274,l), +(503,151,o), +(446,87,o), +(338,87,cs), +(231,87,o), +(175,150.564,o), +(175,274,c), +(175,690,l), +(70,690,l), +(70,264,l), +(70,94,o), +(172,-10,o), +(337,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(458,735,l), +(595,845,l), +(470,845,l), +(370,735,l) +); +}, +{ +closed = 1; +nodes = ( +(312,735,l), +(409,845,l), +(295,845,l), +(224,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = hungarumlautcomb.case; +} +); +width = 675; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = hungarumlautcomb.case; +} +); +width = 675; +} +); +unicode = 368; +}, +{ +color = 10; +glyphname = Umacron; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (96,0); +ref = macroncomb.case; +} +); +width = 693; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = top; +pos = (337,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(503,-10,o), +(605,94,o), +(605,264,c), +(605,690,l), +(503,690,l), +(503,274,l), +(503,151,o), +(446,87,o), +(338,87,cs), +(231,87,o), +(175,150.564,o), +(175,274,c), +(175,690,l), +(70,690,l), +(70,264,l), +(70,94,o), +(172,-10,o), +(337,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(495,753,l), +(495,837,l), +(179,837,l), +(179,753,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = macroncomb.case; +} +); +width = 675; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = macroncomb.case; +} +); +width = 675; +} +); +unicode = 362; +}, +{ +color = 10; +glyphname = Uogonek; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 13:35:59 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(374,-27,o), +(353,-60,o), +(353,-79,c), +(353,-89,o), +(361,-96,o), +(376,-96,c), +(395,-96,o), +(421,-87,o), +(441,-75,c), +(450,-170,l), +(420,-183,o), +(384,-190,o), +(353,-190,cs), +(281,-190,o), +(242,-156,o), +(242,-111,c), +(242,-69,o), +(270,-32,o), +(372,1,c), +(375,-13,l), +(366,-14,o), +(356,-14,o), +(346,-14,cs), +(161,-14,o), +(55,96,o), +(55,265,c), +(55,690,l), +(210,690,l), +(210,273,l), +(210,184,o), +(258,132,o), +(347,132,cs), +(437,132,o), +(486,184,o), +(486,273,c), +(486,690,l), +(638,690,l), +(638,265,l), +(638,134,o), +(574,38,o), +(458,2,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (113,0); +ref = ogonekcomb; +} +); +width = 693; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(361,-185,o), +(396,-176,o), +(424,-165,c), +(415,-84,l), +(392,-94,o), +(358,-106,o), +(338,-106,c), +(325,-106,o), +(317,-101,o), +(317,-89,c), +(317,-65,o), +(350,-27,o), +(444,7,cs), +(546,43,o), +(605,134,o), +(605,264,c), +(605,690,l), +(503,690,l), +(503,274,l), +(503,151,o), +(446,87,o), +(338,87,cs), +(231,87,o), +(175,151,o), +(175,274,c), +(175,690,l), +(70,690,l), +(70,264,l), +(70,94,o), +(172,-10,o), +(337,-10,cs), +(342,-10,o), +(346,-10,o), +(351,-10,c), +(351,-2,l), +(261,-37,o), +(233,-69,o), +(233,-111,c), +(233,-153,o), +(267,-185,o), +(332,-185,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = U; +}, +{ +pos = (114,0); +ref = ogonekcomb; +} +); +width = 675; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(350,-27,o), +(317,-65,o), +(317,-89,c), +(317,-101,o), +(325,-106,o), +(338,-106,c), +(358,-106,o), +(392,-94,o), +(415,-84,c), +(424,-165,l), +(396,-176,o), +(361,-185,o), +(332,-185,cs), +(267,-185,o), +(233,-153,o), +(233,-111,c), +(233,-69,o), +(261,-37,o), +(351,-2,c), +(351,-10,l), +(346,-10,o), +(342,-10,o), +(337,-10,cs), +(172,-10,o), +(70,94,o), +(70,264,c), +(70,690,l), +(175,690,l), +(175,274,l), +(175,151,o), +(231,87,o), +(338,87,cs), +(446,87,o), +(503,151,o), +(503,274,c), +(503,690,l), +(605,690,l), +(605,264,l), +(605,134,o), +(546,43,o), +(444,7,cs) +); +} +); +width = 675; +} +); +unicode = 370; +}, +{ +color = 10; +glyphname = Uring; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (96,0); +ref = ringcomb.case; +} +); +width = 693; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = top; +pos = (337,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(503,-10,o), +(605,94,o), +(605,264,c), +(605,690,l), +(503,690,l), +(503,274,l), +(503,151,o), +(446,87,o), +(338,87,cs), +(231,87,o), +(175,150.564,o), +(175,274,c), +(175,690,l), +(70,690,l), +(70,264,l), +(70,94,o), +(172,-10,o), +(337,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(393,735,o), +(434,769,o), +(434,821,cs), +(434,874,o), +(393,908,o), +(337,908,cs), +(281,908,o), +(240,874,o), +(240,821,cs), +(240,769,o), +(281,735,o), +(337,735,cs) +); +}, +{ +closed = 1; +nodes = ( +(316,790,o), +(303,804,o), +(303,821,cs), +(303,839,o), +(316,853,o), +(337,853,cs), +(358,853,o), +(371,839,o), +(371,821,cs), +(371,804,o), +(358,790,o), +(337,790,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = ringcomb.case; +} +); +width = 675; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = ringcomb.case; +} +); +width = 675; +} +); +unicode = 366; +}, +{ +color = 10; +glyphname = Utilde; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (96,0); +ref = tildecomb.case; +} +); +width = 693; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = top; +pos = (337,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(503,-10,o), +(605,94,o), +(605,264,c), +(605,690,l), +(503,690,l), +(503,274,l), +(503,151,o), +(446,87,o), +(338,87,cs), +(231,87,o), +(175,150.564,o), +(175,274,c), +(175,690,l), +(70,690,l), +(70,264,l), +(70,94,o), +(172,-10,o), +(337,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(245,735,l), +(246,757,o), +(258,773,o), +(279,773,c), +(310,773,o), +(340,735,o), +(397,735,c), +(454,735,o), +(490,777,o), +(497,845,c), +(429,845,l), +(428,823,o), +(416,807,o), +(395,807,c), +(365,807,o), +(334,845,o), +(277,845,c), +(220,845,o), +(184,803,o), +(177,735,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = tildecomb.case; +} +); +width = 675; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = tildecomb.case; +} +); +width = 675; +} +); +unicode = 360; +}, +{ +color = 6; +glyphname = V; +kernLeft = V; +kernRight = V; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(377,0,l), +(165,690,l), +(0,690,l), +(221,0,l) +); +}, +{ +closed = 1; +nodes = ( +(454,0,l), +(675,690,l), +(512,690,l), +(306,0,l) +); +} +); +width = 675; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(357,0,l), +(125,690,l), +(15,690,l), +(254,0,l) +); +}, +{ +closed = 1; +nodes = ( +(406,0,l), +(645,690,l), +(538,690,l), +(311,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(357,0,l), +(125,690,l), +(15,690,l), +(254,0,l) +); +}, +{ +closed = 1; +nodes = ( +(406,0,l), +(645,690,l), +(538,690,l), +(311,0,l) +); +} +); +width = 660; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(357,0,l), +(125,690,l), +(15,690,l), +(254,0,l) +); +}, +{ +closed = 1; +nodes = ( +(406,0,l), +(645,690,l), +(538,690,l), +(311,0,l) +); +} +); +width = 660; +} +); +unicode = 86; +}, +{ +color = 6; +glyphname = W; +kernLeft = W; +kernRight = W; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (493,0); +}, +{ +name = top; +pos = (493,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(296,0,l), +(164,690,l), +(4,690,l), +(146,0,l) +); +}, +{ +closed = 1; +nodes = ( +(393,0,l), +(517,690,l), +(376,690,l), +(253,0,l) +); +}, +{ +closed = 1; +nodes = ( +(740,0,l), +(613,690,l), +(469,690,l), +(593,0,l) +); +}, +{ +closed = 1; +nodes = ( +(840,0,l), +(982,690,l), +(825,690,l), +(697,0,l) +); +} +); +width = 986; +}, +{ +anchors = ( +{ +name = bottom; +pos = (461,0); +}, +{ +name = top; +pos = (461,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (461,0); +}, +{ +name = top; +pos = (461,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(271,0,l), +(124,690,l), +(18,690,l), +(172,0,l) +); +}, +{ +closed = 1; +nodes = ( +(329,0,l), +(480,690,l), +(385,690,l), +(235,0,l) +); +}, +{ +closed = 1; +nodes = ( +(692,0,l), +(540,690,l), +(442,690,l), +(594,0,l) +); +}, +{ +closed = 1; +nodes = ( +(749,0,l), +(903,690,l), +(800,690,l), +(656,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(271,0,l), +(124,690,l), +(18,690,l), +(172,0,l) +); +}, +{ +closed = 1; +nodes = ( +(329,0,l), +(480,690,l), +(385,690,l), +(235,0,l) +); +}, +{ +closed = 1; +nodes = ( +(692,0,l), +(540,690,l), +(442,690,l), +(594,0,l) +); +}, +{ +closed = 1; +nodes = ( +(749,0,l), +(903,690,l), +(800,690,l), +(656,0,l) +); +} +); +width = 921; +}, +{ +anchors = ( +{ +name = bottom; +pos = (462,0); +}, +{ +name = top; +pos = (462,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(271,0,l), +(124,690,l), +(18,690,l), +(172,0,l) +); +}, +{ +closed = 1; +nodes = ( +(329,0,l), +(480,690,l), +(385,690,l), +(235,0,l) +); +}, +{ +closed = 1; +nodes = ( +(692,0,l), +(540,690,l), +(442,690,l), +(594,0,l) +); +}, +{ +closed = 1; +nodes = ( +(749,0,l), +(903,690,l), +(800,690,l), +(656,0,l) +); +} +); +width = 921; +} +); +unicode = 87; +}, +{ +color = 10; +glyphname = Wacute; +kernLeft = W; +kernRight = W; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = W; +}, +{ +pos = (243,0); +ref = acutecomb.case; +} +); +width = 986; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (461,0); +}, +{ +name = top; +pos = (461,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(271,0,l), +(124,690,l), +(18,690,l), +(172,0,l) +); +}, +{ +closed = 1; +nodes = ( +(329,0,l), +(480,690,l), +(385,690,l), +(235,0,l) +); +}, +{ +closed = 1; +nodes = ( +(692,0,l), +(540,690,l), +(442,690,l), +(594,0,l) +); +}, +{ +closed = 1; +nodes = ( +(749,0,l), +(903,690,l), +(800,690,l), +(656,0,l) +); +}, +{ +closed = 1; +nodes = ( +(494,735,l), +(631,845,l), +(500,845,l), +(400,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = W; +}, +{ +pos = (211,0); +ref = acutecomb.case; +} +); +width = 921; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = W; +}, +{ +pos = (211,0); +ref = acutecomb.case; +} +); +width = 921; +} +); +unicode = 7810; +}, +{ +color = 10; +glyphname = Wcircumflex; +kernLeft = W; +kernRight = W; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = W; +}, +{ +pos = (243,0); +ref = circumflexcomb.case; +} +); +width = 986; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (461,0); +}, +{ +name = top; +pos = (461,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(271,0,l), +(124,690,l), +(18,690,l), +(172,0,l) +); +}, +{ +closed = 1; +nodes = ( +(329,0,l), +(480,690,l), +(385,690,l), +(235,0,l) +); +}, +{ +closed = 1; +nodes = ( +(692,0,l), +(540,690,l), +(442,690,l), +(594,0,l) +); +}, +{ +closed = 1; +nodes = ( +(749,0,l), +(903,690,l), +(800,690,l), +(656,0,l) +); +}, +{ +closed = 1; +nodes = ( +(644,735,l), +(530,845,l), +(396,845,l), +(545,735,l) +); +}, +{ +closed = 1; +nodes = ( +(377,735,l), +(526,845,l), +(392,845,l), +(278,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = W; +}, +{ +pos = (211,0); +ref = circumflexcomb.case; +} +); +width = 921; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = W; +}, +{ +pos = (211,0); +ref = circumflexcomb.case; +} +); +width = 921; +} +); +unicode = 372; +}, +{ +color = 10; +glyphname = Wdieresis; +kernLeft = W; +kernRight = W; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = W; +}, +{ +pos = (243,0); +ref = dieresiscomb.case; +} +); +width = 986; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (461,0); +}, +{ +name = top; +pos = (461,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(271,0,l), +(124,690,l), +(18,690,l), +(172,0,l) +); +}, +{ +closed = 1; +nodes = ( +(329,0,l), +(480,690,l), +(385,690,l), +(235,0,l) +); +}, +{ +closed = 1; +nodes = ( +(692,0,l), +(540,690,l), +(442,690,l), +(594,0,l) +); +}, +{ +closed = 1; +nodes = ( +(749,0,l), +(903,690,l), +(800,690,l), +(656,0,l) +); +}, +{ +closed = 1; +nodes = ( +(594,742,o), +(619,765,o), +(619,798,cs), +(619,832,o), +(594,855,o), +(562,855,cs), +(530,855,o), +(505,832,o), +(505,798,cs), +(505,765,o), +(530,742,o), +(562,742,cs) +); +}, +{ +closed = 1; +nodes = ( +(392,742,o), +(417,765,o), +(417,798,cs), +(417,832,o), +(392,855,o), +(360,855,cs), +(328,855,o), +(303,832,o), +(303,798,cs), +(303,765,o), +(328,742,o), +(360,742,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = W; +}, +{ +pos = (211,0); +ref = dieresiscomb.case; +} +); +width = 921; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = W; +}, +{ +pos = (211,0); +ref = dieresiscomb.case; +} +); +width = 921; +} +); +unicode = 7812; +}, +{ +color = 10; +glyphname = Wgrave; +kernLeft = W; +kernRight = W; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = W; +}, +{ +pos = (243,0); +ref = gravecomb.case; +} +); +width = 986; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (461,0); +}, +{ +name = top; +pos = (461,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(271,0,l), +(124,690,l), +(18,690,l), +(172,0,l) +); +}, +{ +closed = 1; +nodes = ( +(329,0,l), +(480,690,l), +(385,690,l), +(235,0,l) +); +}, +{ +closed = 1; +nodes = ( +(692,0,l), +(540,690,l), +(442,690,l), +(594,0,l) +); +}, +{ +closed = 1; +nodes = ( +(749,0,l), +(903,690,l), +(800,690,l), +(656,0,l) +); +}, +{ +closed = 1; +nodes = ( +(522,735,l), +(422,845,l), +(291,845,l), +(428,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = W; +}, +{ +pos = (211,0); +ref = gravecomb.case; +} +); +width = 921; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = W; +}, +{ +pos = (211,0); +ref = gravecomb.case; +} +); +width = 921; +} +); +unicode = 7808; +}, +{ +color = 6; +glyphname = X; +kernLeft = X; +kernRight = X; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(635,0,l), +(190,690,l), +(10,690,l), +(455,0,l) +); +}, +{ +closed = 1; +nodes = ( +(175,0,l), +(329,251,l), +(391,330,l), +(625,690,l), +(450,690,l), +(306,456,l), +(244,376,l), +(0,0,l) +); +} +); +width = 635; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(597,0,l), +(145,690,l), +(23,690,l), +(475,0,l) +); +}, +{ +closed = 1; +nodes = ( +(132,0,l), +(311,284,l), +(351,336,l), +(587,690,l), +(468,690,l), +(300,424,l), +(259,370,l), +(13,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(597,0,l), +(145,690,l), +(23,690,l), +(475,0,l) +); +}, +{ +closed = 1; +nodes = ( +(132,0,l), +(311,284,l), +(351,336,l), +(587,690,l), +(468,690,l), +(300,424,l), +(259,370,l), +(13,0,l) +); +} +); +width = 610; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(597,0,l), +(145,690,l), +(23,690,l), +(475,0,l) +); +}, +{ +closed = 1; +nodes = ( +(311,284,l), +(351,336,l), +(587,690,l), +(468,690,l), +(300,424,l), +(259,370,l), +(13,0,l), +(132,0,l) +); +} +); +width = 610; +} +); +unicode = 88; +}, +{ +color = 6; +glyphname = Y; +kernLeft = Y; +kernRight = Y; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (325,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(361,343,l), +(172,690,l), +(-2,690,l), +(261,220,l) +); +}, +{ +closed = 1; +nodes = ( +(396,0,l), +(396,381,l), +(242,381,l), +(242,0,l) +); +}, +{ +closed = 1; +nodes = ( +(642,690,l), +(474,690,l), +(289,343,l), +(378,221,l) +); +} +); +width = 640; +}, +{ +anchors = ( +{ +name = top; +pos = (305,690); +} +); +background = { +anchors = ( +{ +name = top; +pos = (305,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(332,320,l), +(123,690,l), +(3,690,l), +(265,243,l) +); +}, +{ +closed = 1; +nodes = ( +(352,0,l), +(352,350,l), +(247,350,l), +(247,0,l) +); +}, +{ +closed = 1; +nodes = ( +(597,690,l), +(480,690,l), +(274,320,l), +(335,243,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(332,320,l), +(123,690,l), +(3,690,l), +(265,243,l) +); +}, +{ +closed = 1; +nodes = ( +(352,0,l), +(352,350,l), +(247,350,l), +(247,0,l) +); +}, +{ +closed = 1; +nodes = ( +(597,690,l), +(480,690,l), +(274,320,l), +(335,243,l) +); +} +); +width = 600; +}, +{ +anchors = ( +{ +name = top; +pos = (305,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(332,320,l), +(123,690,l), +(3,690,l), +(265,243,l) +); +}, +{ +closed = 1; +nodes = ( +(335,243,l), +(597,690,l), +(480,690,l), +(274,320,l) +); +}, +{ +closed = 1; +nodes = ( +(352,0,l), +(352,350,l), +(247,350,l), +(247,0,l) +); +} +); +width = 600; +} +); +unicode = 89; +}, +{ +color = 10; +glyphname = Yacute; +kernLeft = Y; +kernRight = Y; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = Y; +}, +{ +pos = (75,0); +ref = acutecomb.case; +} +); +width = 640; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (305,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(332,320,l), +(123,690,l), +(3,690,l), +(265,243,l) +); +}, +{ +closed = 1; +nodes = ( +(352,0,l), +(352,350,l), +(247,350,l), +(247,0,l) +); +}, +{ +closed = 1; +nodes = ( +(597,690,l), +(480,690,l), +(274,320,l), +(335,243,l) +); +}, +{ +closed = 1; +nodes = ( +(338,735,l), +(475,845,l), +(344,845,l), +(244,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (55,0); +ref = acutecomb.case; +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (55,0); +ref = acutecomb.case; +} +); +width = 600; +} +); +unicode = 221; +}, +{ +color = 10; +glyphname = Ycircumflex; +kernLeft = Y; +kernRight = Y; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = Y; +}, +{ +pos = (75,0); +ref = circumflexcomb.case; +} +); +width = 640; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (305,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(332,320,l), +(123,690,l), +(3,690,l), +(265,243,l) +); +}, +{ +closed = 1; +nodes = ( +(352,0,l), +(352,350,l), +(247,350,l), +(247,0,l) +); +}, +{ +closed = 1; +nodes = ( +(597,690,l), +(480,690,l), +(274,320,l), +(335,243,l) +); +}, +{ +closed = 1; +nodes = ( +(488,735,l), +(374,845,l), +(240,845,l), +(389,735,l) +); +}, +{ +closed = 1; +nodes = ( +(221,735,l), +(370,845,l), +(236,845,l), +(122,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (55,0); +ref = circumflexcomb.case; +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (55,0); +ref = circumflexcomb.case; +} +); +width = 600; +} +); +unicode = 374; +}, +{ +color = 10; +glyphname = Ydieresis; +kernLeft = Y; +kernRight = Y; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = Y; +}, +{ +pos = (75,0); +ref = dieresiscomb.case; +} +); +width = 640; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (305,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(332,320,l), +(123,690,l), +(3,690,l), +(265,243,l) +); +}, +{ +closed = 1; +nodes = ( +(352,0,l), +(352,350,l), +(247,350,l), +(247,0,l) +); +}, +{ +closed = 1; +nodes = ( +(597,690,l), +(480,690,l), +(274,320,l), +(335,243,l) +); +}, +{ +closed = 1; +nodes = ( +(438,742,o), +(463,765,o), +(463,798,cs), +(463,832,o), +(438,855,o), +(406,855,cs), +(374,855,o), +(349,832,o), +(349,798,cs), +(349,765,o), +(374,742,o), +(406,742,cs) +); +}, +{ +closed = 1; +nodes = ( +(236,742,o), +(261,765,o), +(261,798,cs), +(261,832,o), +(236,855,o), +(204,855,cs), +(172,855,o), +(147,832,o), +(147,798,cs), +(147,765,o), +(172,742,o), +(204,742,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (55,0); +ref = dieresiscomb.case; +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (55,0); +ref = dieresiscomb.case; +} +); +width = 600; +} +); +unicode = 376; +}, +{ +color = 10; +glyphname = Ygrave; +kernLeft = Y; +kernRight = Y; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = Y; +}, +{ +pos = (75,0); +ref = gravecomb.case; +} +); +width = 640; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (305,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(332,320,l), +(123,690,l), +(3,690,l), +(265,243,l) +); +}, +{ +closed = 1; +nodes = ( +(352,0,l), +(352,350,l), +(247,350,l), +(247,0,l) +); +}, +{ +closed = 1; +nodes = ( +(597,690,l), +(480,690,l), +(274,320,l), +(335,243,l) +); +}, +{ +closed = 1; +nodes = ( +(366,735,l), +(266,845,l), +(135,845,l), +(272,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (55,0); +ref = gravecomb.case; +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (55,0); +ref = gravecomb.case; +} +); +width = 600; +} +); +unicode = 7922; +}, +{ +color = 10; +glyphname = Ymacron; +kernLeft = Y; +kernRight = Y; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = Y; +}, +{ +pos = (75,0); +ref = macroncomb.case; +} +); +width = 640; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (305,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(332,320,l), +(123,690,l), +(3,690,l), +(265,243,l) +); +}, +{ +closed = 1; +nodes = ( +(352,0,l), +(352,350,l), +(247,350,l), +(247,0,l) +); +}, +{ +closed = 1; +nodes = ( +(597,690,l), +(480,690,l), +(274,320,l), +(335,243,l) +); +}, +{ +closed = 1; +nodes = ( +(463,753,l), +(463,837,l), +(147,837,l), +(147,753,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (55,0); +ref = macroncomb.case; +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (55,0); +ref = macroncomb.case; +} +); +width = 600; +} +); +unicode = 562; +}, +{ +color = 10; +glyphname = Ytilde; +kernLeft = Y; +kernRight = Y; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = Y; +}, +{ +pos = (75,0); +ref = tildecomb.case; +} +); +width = 640; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (305,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(332,320,l), +(123,690,l), +(3,690,l), +(265,243,l) +); +}, +{ +closed = 1; +nodes = ( +(352,0,l), +(352,350,l), +(247,350,l), +(247,0,l) +); +}, +{ +closed = 1; +nodes = ( +(597,690,l), +(480,690,l), +(274,320,l), +(335,243,l) +); +}, +{ +closed = 1; +nodes = ( +(213,735,l), +(214,757,o), +(226,773,o), +(247,773,c), +(278,773,o), +(308,735,o), +(365,735,c), +(422,735,o), +(458,777,o), +(465,845,c), +(397,845,l), +(396,823,o), +(384,807,o), +(363,807,c), +(333,807,o), +(302,845,o), +(245,845,c), +(188,845,o), +(152,803,o), +(145,735,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (55,0); +ref = tildecomb.case; +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (55,0); +ref = tildecomb.case; +} +); +width = 600; +} +); +unicode = 7928; +}, +{ +color = 6; +glyphname = Z; +kernLeft = Z; +kernRight = Z; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = center; +pos = (309,345); +}, +{ +name = top; +pos = (309,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(592,0,l), +(592,140,l), +(238,140,l), +(580,587,l), +(580,690,l), +(40,690,l), +(40,550,l), +(366,550,l), +(25,103,l), +(25,0,l) +); +} +); +width = 617; +}, +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = center; +pos = (309,345); +}, +{ +name = top; +pos = (309,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = center; +pos = (309,345); +}, +{ +name = top; +pos = (309,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(161,52,l), +(572,638,l), +(445,638,l), +(34,52,l) +); +}, +{ +closed = 1; +nodes = ( +(584,0,l), +(584,96,l), +(74,96,l), +(34,52,l), +(34,0,l) +); +}, +{ +closed = 1; +nodes = ( +(532,594,l), +(572,638,l), +(572,690,l), +(49,690,l), +(49,594,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(584,0,l), +(584,96,l), +(192,96,l), +(572,638,l), +(572,690,l), +(49,690,l), +(49,594,l), +(414,594,l), +(34,52,l), +(34,0,l) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (314,0); +}, +{ +name = top; +pos = (314,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(155,0,l), +(155,530,l), +(55,530,l), +(55,0,l) +); +}, +{ +closed = 1; +nodes = ( +(395,0,l), +(495,0,l), +(495,332,l), +(495,460,o), +(420,540,o), +(313,540,c), +(204,540,o), +(122,451,o), +(122,309,c), +(155,309,l), +(155,406,o), +(208,457,o), +(275,457,c), +(342,457,o), +(395,406,o), +(395,309,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(49,594,l), +(532,594,l), +(572,638,l), +(572,690,l), +(49,690,l) +); +}, +{ +closed = 1; +nodes = ( +(34,0,l), +(584,0,l), +(584,96,l), +(74,96,l), +(34,52,l) +); +}, +{ +closed = 1; +nodes = ( +(161,52,l), +(572,638,l), +(445,638,l), +(34,52,l) +); +} +); +width = 618; +} +); +unicode = 90; +}, +{ +color = 10; +glyphname = Zacute; +kernLeft = Z; +kernRight = Z; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = Z; +}, +{ +pos = (59,0); +ref = acutecomb.case; +} +); +width = 617; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = center; +pos = (309,345); +}, +{ +name = top; +pos = (309,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(161,52,l), +(572,638,l), +(445,638,l), +(34,52,l) +); +}, +{ +closed = 1; +nodes = ( +(584,0,l), +(584,96,l), +(74,96,l), +(34,52,l), +(34,0,l) +); +}, +{ +closed = 1; +nodes = ( +(532,594,l), +(572,638,l), +(572,690,l), +(49,690,l), +(49,594,l) +); +}, +{ +closed = 1; +nodes = ( +(342,735,l), +(479,845,l), +(348,845,l), +(248,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (59,0); +ref = acutecomb.case; +} +); +width = 618; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (59,0); +ref = acutecomb.case; +} +); +width = 618; +} +); +unicode = 377; +}, +{ +color = 10; +glyphname = Zcaron; +kernLeft = Z; +kernRight = Z; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = Z; +}, +{ +pos = (59,0); +ref = caroncomb.case; +} +); +width = 617; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = center; +pos = (309,345); +}, +{ +name = top; +pos = (309,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(161,52,l), +(572,638,l), +(445,638,l), +(34,52,l) +); +}, +{ +closed = 1; +nodes = ( +(584,0,l), +(584,96,l), +(74,96,l), +(34,52,l), +(34,0,l) +); +}, +{ +closed = 1; +nodes = ( +(532,594,l), +(572,638,l), +(572,690,l), +(49,690,l), +(49,594,l) +); +}, +{ +closed = 1; +nodes = ( +(378,735,l), +(492,845,l), +(393,845,l), +(244,735,l) +); +}, +{ +closed = 1; +nodes = ( +(374,735,l), +(225,845,l), +(126,845,l), +(240,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (59,0); +ref = caroncomb.case; +} +); +width = 618; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (59,0); +ref = caroncomb.case; +} +); +width = 618; +} +); +unicode = 381; +}, +{ +color = 10; +glyphname = Zdotaccent; +kernLeft = Z; +kernRight = Z; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = Z; +}, +{ +pos = (59,0); +ref = dotaccentcomb.case; +} +); +width = 617; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = center; +pos = (309,345); +}, +{ +name = top; +pos = (309,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(161,52,l), +(572,638,l), +(445,638,l), +(34,52,l) +); +}, +{ +closed = 1; +nodes = ( +(584,0,l), +(584,96,l), +(74,96,l), +(34,52,l), +(34,0,l) +); +}, +{ +closed = 1; +nodes = ( +(532,594,l), +(572,638,l), +(572,690,l), +(49,690,l), +(49,594,l) +); +}, +{ +closed = 1; +nodes = ( +(344,735,o), +(371,760,o), +(371,796,cs), +(371,833,o), +(344,858,o), +(309,858,cs), +(274,858,o), +(247,833,o), +(247,796,cs), +(247,760,o), +(274,735,o), +(309,735,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (59,0); +ref = dotaccentcomb.case; +} +); +width = 618; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (59,0); +ref = dotaccentcomb.case; +} +); +width = 618; +} +); +unicode = 379; +}, +{ +color = 6; +glyphname = a; +kernLeft = a; +kernRight = n; +lastChange = "2024-03-22 13:29:28 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (266,0); +}, +{ +name = ogonek; +pos = (507,0); +}, +{ +name = top; +pos = (266,530); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(512,0,l), +(502,39,o), +(497,78,o), +(497,118,cs), +(497,342,l), +(497,468,o), +(412,544,o), +(276,544,cs), +(152,544,o), +(64,489,o), +(36,378,c), +(179,347,l), +(191,402,o), +(224,424,o), +(267,424,c), +(311,424,o), +(348,399,o), +(348,330,c), +(348,106,ls), +(348,71,o), +(353,35,o), +(361,0,c) +); +}, +{ +closed = 1; +nodes = ( +(299,-14,o), +(382,76,o), +(382,221,c), +(348,221,l), +(348,144,o), +(286,104,o), +(228,104,c), +(194,104,o), +(178,123,o), +(178,148,c), +(178,172,o), +(193,195,o), +(244,206,cs), +(391,237,l), +(391,331,l), +(190,298,ls), +(79,280,o), +(28,214,o), +(28,135,c), +(28,45,o), +(83,-14,o), +(187,-14,c) +); +} +); +width = 550; +}, +{ +anchors = ( +{ +name = bottom; +pos = (264,0); +}, +{ +name = ogonek; +pos = (487,0); +}, +{ +name = top; +pos = (264,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (264,0); +}, +{ +name = top; +pos = (264,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(487,0,l), +(477,39,o), +(472,78,o), +(472,118,cs), +(472,342,l), +(472,465,o), +(396.177,540,o), +(264,540,cs), +(160,540,o), +(78,486,o), +(49,389,c), +(143,358,l), +(160,420,o), +(200,452,o), +(258,452,c), +(320.752,452,o), +(372,417,o), +(372,330,c), +(372,106,ls), +(372,71,o), +(377,35,o), +(385,0,c) +); +}, +{ +closed = 1; +nodes = ( +(306,-10,o), +(405,79,o), +(405,221,c), +(372,221,l), +(372,130,o), +(292,76,o), +(219,76,c), +(163,76,o), +(139,107,o), +(139,138,c), +(139,175,o), +(167,203,o), +(238,217,cs), +(392,248,l), +(392,325,l), +(205,293,ls), +(91,273,o), +(39,211,o), +(39,131,c), +(39,49,o), +(99,-10,o), +(191,-10,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(487,0,l), +(477,39,o), +(472,78,o), +(472,118,cs), +(472,342,l), +(472,465,o), +(396,540,o), +(264,540,cs), +(160,540,o), +(78,486,o), +(49,389,c), +(143,358,l), +(160,420,o), +(200,452,o), +(258,452,c), +(321,452,o), +(372,417,o), +(372,330,c), +(372,106,ls), +(372,71,o), +(377,35,o), +(385,0,c) +); +}, +{ +closed = 1; +nodes = ( +(306,-10,o), +(405,79,o), +(405,221,c), +(372,221,l), +(372,130,o), +(292,76,o), +(219,76,c), +(163,76,o), +(139,107,o), +(139,138,c), +(139,175,o), +(167,203,o), +(238,217,cs), +(392,248,l), +(392,325,l), +(205,293,ls), +(91,273,o), +(39,211,o), +(39,131,c), +(39,49,o), +(99,-10,o), +(191,-10,c) +); +} +); +width = 537; +}, +{ +anchors = ( +{ +name = bottom; +pos = (264,0); +}, +{ +name = top; +pos = (264,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(30,42,o), +(98,-10,o), +(187,-10,c), +(300,-10,o), +(402,79,o), +(402,221,c), +(369,221,l), +(369,124,o), +(290,69,o), +(214,69,c), +(160,69,o), +(130,96,o), +(130,135,c), +(130,177,o), +(158,206,o), +(225,222,cs), +(389,260,l), +(389,320,l), +(192,284,ls), +(87,265,o), +(30,207,o), +(30,128,c) +); +}, +{ +closed = 1; +nodes = ( +(469,463,o), +(396,540,o), +(266,540,cs), +(160,540,o), +(76.435,486,o), +(45,384,c), +(139,353,l), +(158,433,o), +(199,465,o), +(260,465,c), +(326,465,o), +(369,422,o), +(369,325,c), +(369,0,l), +(469,0,l), +(469,337,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(39,49,o), +(99,-10,o), +(191,-10,c), +(306,-10,o), +(405,79,o), +(405,221,c), +(372,221,l), +(372,130,o), +(292,76,o), +(219,76,c), +(163,76,o), +(139,107,o), +(139,138,c), +(139,175,o), +(167,203,o), +(238,217,cs), +(392,248,l), +(392,325,l), +(205,293,ls), +(91,273,o), +(39,211,o), +(39,131,c) +); +}, +{ +closed = 1; +nodes = ( +(472,465,o), +(396.177,540,o), +(264,540,cs), +(160,540,o), +(78,486,o), +(49,389,c), +(143,358,l), +(160,420,o), +(200,452,o), +(258,452,c), +(320.752,452,o), +(372,417,o), +(372,330,c), +(372,106,ls), +(372,71,o), +(377,35,o), +(385,0,c), +(487,0,l), +(477,39,o), +(472,78,o), +(472,118,cs), +(472,342,l) +); +} +); +width = 537; +} +); +unicode = 97; +}, +{ +color = 10; +glyphname = aacute; +kernLeft = a; +kernRight = n; +lastChange = "2024-03-21 13:49:02 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (135,0); +ref = acutecomb; +} +); +width = 550; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (264,0); +}, +{ +name = top; +pos = (264,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(487,0,l), +(477,39,o), +(472,78,o), +(472,118,cs), +(472,342,l), +(472,465,o), +(396.177,540,o), +(264,540,cs), +(160,540,o), +(78,486,o), +(49,389,c), +(143,358,l), +(160,420,o), +(200,452,o), +(258,452,c), +(320.752,452,o), +(372,417,o), +(372,330,c), +(372,106,ls), +(372,71,o), +(377,35,o), +(385,0,c) +); +}, +{ +closed = 1; +nodes = ( +(306,-10,o), +(405,79,o), +(405,221,c), +(372,221,l), +(372,130,o), +(292,76,o), +(219,76,c), +(163,76,o), +(139,107,o), +(139,138,c), +(139,175,o), +(167,203,o), +(238,217,cs), +(392,248,l), +(392,325,l), +(205,293,ls), +(91,273,o), +(39,211,o), +(39,131,c), +(39,49,o), +(99,-10,o), +(191,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(297,585,l), +(407,725,l), +(281,725,l), +(211,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = a; +}, +{ +pos = (104,0); +ref = acutecomb; +} +); +width = 537; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = a; +}, +{ +pos = (104,0); +ref = acute; +} +); +width = 537; +} +); +unicode = 225; +}, +{ +color = 10; +glyphname = abreve; +kernLeft = a; +kernRight = n; +lastChange = "2024-03-21 13:49:02 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (16,0); +ref = brevecomb; +} +); +width = 550; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (264,0); +}, +{ +name = top; +pos = (264,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(487,0,l), +(477,39,o), +(472,78,o), +(472,118,cs), +(472,342,l), +(472,465,o), +(396.177,540,o), +(264,540,cs), +(160,540,o), +(78,486,o), +(49,389,c), +(143,358,l), +(160,420,o), +(200,452,o), +(258,452,c), +(320.752,452,o), +(372,417,o), +(372,330,c), +(372,106,ls), +(372,71,o), +(377,35,o), +(385,0,c) +); +}, +{ +closed = 1; +nodes = ( +(306,-10,o), +(405,79,o), +(405,221,c), +(372,221,l), +(372,130,o), +(292,76,o), +(219,76,c), +(163,76,o), +(139,107,o), +(139,138,c), +(139,175,o), +(167,203,o), +(238,217,cs), +(392,248,l), +(392,325,l), +(205,293,ls), +(91,273,o), +(39,211,o), +(39,131,c), +(39,49,o), +(99,-10,o), +(191,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(357,585,o), +(402,639,o), +(404,725,c), +(334,725,l), +(333,684,o), +(309,660,o), +(264,660,c), +(219,660,o), +(195,684,o), +(194,725,c), +(124,725,l), +(126,639,o), +(171,585,o), +(264,585,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = a; +}, +{ +pos = (14,0); +ref = brevecomb; +} +); +width = 537; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = a; +}, +{ +pos = (14,0); +ref = breve; +} +); +width = 537; +} +); +unicode = 259; +}, +{ +color = 10; +glyphname = acircumflex; +kernLeft = a; +kernRight = n; +lastChange = "2024-03-21 13:49:02 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (16,0); +ref = circumflexcomb; +} +); +width = 550; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (264,0); +}, +{ +name = top; +pos = (264,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(487,0,l), +(477,39,o), +(472,78,o), +(472,118,cs), +(472,342,l), +(472,465,o), +(396.177,540,o), +(264,540,cs), +(160,540,o), +(78,486,o), +(49,389,c), +(143,358,l), +(160,420,o), +(200,452,o), +(258,452,c), +(320.752,452,o), +(372,417,o), +(372,330,c), +(372,106,ls), +(372,71,o), +(377,35,o), +(385,0,c) +); +}, +{ +closed = 1; +nodes = ( +(306,-10,o), +(405,79,o), +(405,221,c), +(372,221,l), +(372,130,o), +(292,76,o), +(219,76,c), +(163,76,o), +(139,107,o), +(139,138,c), +(139,175,o), +(167,203,o), +(238,217,cs), +(392,248,l), +(392,325,l), +(205,293,ls), +(91,273,o), +(39,211,o), +(39,131,c), +(39,49,o), +(99,-10,o), +(191,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(420,585,l), +(320,725,l), +(214,725,l), +(332,585,l) +); +}, +{ +closed = 1; +nodes = ( +(196,585,l), +(314,725,l), +(208,725,l), +(108,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = a; +}, +{ +pos = (14,0); +ref = circumflexcomb; +} +); +width = 537; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = a; +}, +{ +pos = (14,0); +ref = circumflex; +} +); +width = 537; +} +); +unicode = 226; +}, +{ +color = 10; +glyphname = adieresis; +kernLeft = a; +kernRight = n; +lastChange = "2024-03-21 13:49:02 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (16,0); +ref = dieresiscomb; +} +); +width = 550; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (264,0); +}, +{ +name = top; +pos = (264,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(487,0,l), +(477,39,o), +(472,78,o), +(472,118,cs), +(472,342,l), +(472,465,o), +(396.177,540,o), +(264,540,cs), +(160,540,o), +(78,486,o), +(49,389,c), +(143,358,l), +(160,420,o), +(200,452,o), +(258,452,c), +(320.752,452,o), +(372,417,o), +(372,330,c), +(372,106,ls), +(372,71,o), +(377,35,o), +(385,0,c) +); +}, +{ +closed = 1; +nodes = ( +(306,-10,o), +(405,79,o), +(405,221,c), +(372,221,l), +(372,130,o), +(292,76,o), +(219,76,c), +(163,76,o), +(139,107,o), +(139,138,c), +(139,175,o), +(167,203,o), +(238,217,cs), +(392,248,l), +(392,325,l), +(205,293,ls), +(91,273,o), +(39,211,o), +(39,131,c), +(39,49,o), +(99,-10,o), +(191,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(387,602,o), +(412,625,o), +(412,658,cs), +(412,692,o), +(387,715,o), +(355,715,cs), +(323,715,o), +(298,692,o), +(298,658,cs), +(298,625,o), +(323,602,o), +(355,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(205,602,o), +(230,625,o), +(230,658,cs), +(230,692,o), +(205,715,o), +(173,715,cs), +(141,715,o), +(116,692,o), +(116,658,cs), +(116,625,o), +(141,602,o), +(173,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = a; +}, +{ +pos = (14,0); +ref = dieresiscomb; +} +); +width = 537; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = a; +}, +{ +pos = (14,0); +ref = dieresis; +} +); +width = 537; +} +); +unicode = 228; +}, +{ +color = 10; +glyphname = adotbelow; +kernLeft = a; +kernRight = n; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (16,0); +ref = dotbelow; +} +); +width = 550; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (264,0); +}, +{ +name = top; +pos = (264,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(487,0,l), +(477,39,o), +(472,78,o), +(472,118,cs), +(472,342,l), +(472,465,o), +(396.177,540,o), +(264,540,cs), +(160,540,o), +(78,486,o), +(49,389,c), +(143,358,l), +(160,420,o), +(200,452,o), +(258,452,c), +(320.752,452,o), +(372,417,o), +(372,330,c), +(372,106,ls), +(372,71,o), +(377,35,o), +(385,0,c) +); +}, +{ +closed = 1; +nodes = ( +(306,-10,o), +(405,79,o), +(405,221,c), +(372,221,l), +(372,130,o), +(292,76,o), +(219,76,c), +(163,76,o), +(139,107,o), +(139,138,c), +(139,175,o), +(167,203,o), +(238,217,cs), +(392,248,l), +(392,325,l), +(205,293,ls), +(91,273,o), +(39,211,o), +(39,131,c), +(39,49,o), +(99,-10,o), +(191,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(299,-195,o), +(326,-170,o), +(326,-133,cs), +(326,-97,o), +(299,-72,o), +(264,-72,cs), +(229,-72,o), +(202,-97,o), +(202,-133,cs), +(202,-170,o), +(229,-195,o), +(264,-195,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = a; +}, +{ +pos = (14,0); +ref = dotbelow; +} +); +width = 537; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = a; +}, +{ +pos = (14,0); +ref = dotbelow; +} +); +width = 537; +} +); +unicode = 7841; +}, +{ +color = 10; +glyphname = agrave; +kernLeft = a; +kernRight = n; +lastChange = "2024-03-21 13:49:02 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (16,0); +ref = gravecomb; +} +); +width = 550; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (264,0); +}, +{ +name = top; +pos = (264,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(487,0,l), +(477,39,o), +(472,78,o), +(472,118,cs), +(472,342,l), +(472,465,o), +(396.177,540,o), +(264,540,cs), +(160,540,o), +(78,486,o), +(49,389,c), +(143,358,l), +(160,420,o), +(200,452,o), +(258,452,c), +(320.752,452,o), +(372,417,o), +(372,330,c), +(372,106,ls), +(372,71,o), +(377,35,o), +(385,0,c) +); +}, +{ +closed = 1; +nodes = ( +(306,-10,o), +(405,79,o), +(405,221,c), +(372,221,l), +(372,130,o), +(292,76,o), +(219,76,c), +(163,76,o), +(139,107,o), +(139,138,c), +(139,175,o), +(167,203,o), +(238,217,cs), +(392,248,l), +(392,325,l), +(205,293,ls), +(91,273,o), +(39,211,o), +(39,131,c), +(39,49,o), +(99,-10,o), +(191,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(317,585,l), +(247,725,l), +(121,725,l), +(231,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = a; +}, +{ +pos = (14,0); +ref = gravecomb; +} +); +width = 537; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = a; +}, +{ +pos = (14,0); +ref = grave; +} +); +width = 537; +} +); +unicode = 224; +}, +{ +color = 10; +glyphname = amacron; +kernLeft = a; +kernRight = n; +lastChange = "2024-03-21 13:49:02 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (16,0); +ref = macroncomb; +} +); +width = 550; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (264,0); +}, +{ +name = top; +pos = (264,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(487,0,l), +(477,39,o), +(472,78,o), +(472,118,cs), +(472,342,l), +(472,465,o), +(396.177,540,o), +(264,540,cs), +(160,540,o), +(78,486,o), +(49,389,c), +(143,358,l), +(160,420,o), +(200,452,o), +(258,452,c), +(320.752,452,o), +(372,417,o), +(372,330,c), +(372,106,ls), +(372,71,o), +(377,35,o), +(385,0,c) +); +}, +{ +closed = 1; +nodes = ( +(306,-10,o), +(405,79,o), +(405,221,c), +(372,221,l), +(372,130,o), +(292,76,o), +(219,76,c), +(163,76,o), +(139,107,o), +(139,138,c), +(139,175,o), +(167,203,o), +(238,217,cs), +(392,248,l), +(392,325,l), +(205,293,ls), +(91,273,o), +(39,211,o), +(39,131,c), +(39,49,o), +(99,-10,o), +(191,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(402,621,l), +(402,705,l), +(126,705,l), +(126,621,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = a; +}, +{ +pos = (14,0); +ref = macroncomb; +} +); +width = 537; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = a; +}, +{ +pos = (14,0); +ref = macron; +} +); +width = 537; +} +); +unicode = 257; +}, +{ +color = 10; +glyphname = aogonek; +kernLeft = a; +kernRight = n; +lastChange = "2024-03-21 13:36:12 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (168,0); +ref = ogonekcomb; +} +); +width = 550; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(487,0,l), +(477,39,o), +(472,78,o), +(472,118,cs), +(472,342,l), +(472,465,o), +(396,540,o), +(264,540,cs), +(160,540,o), +(78,486,o), +(49,389,c), +(143,358,l), +(160,420,o), +(200,452,o), +(258,452,c), +(321,452,o), +(372,417,o), +(372,330,c), +(372,106,ls), +(372,71,o), +(377,35,o), +(385,0,c) +); +}, +{ +closed = 1; +nodes = ( +(424,-185,o), +(459,-176,o), +(487,-165,c), +(478,-84,l), +(455,-94,o), +(421,-106,o), +(401,-106,c), +(388,-106,o), +(380,-101,o), +(380,-89,c), +(380,-65,o), +(417,-34,o), +(487,0,c), +(385,0,l), +(319,-37,o), +(296,-69,o), +(296,-111,c), +(296,-153,o), +(330,-185,o), +(395,-185,cs) +); +}, +{ +closed = 1; +nodes = ( +(306,-10,o), +(405,79,o), +(405,221,c), +(372,221,l), +(372,130,o), +(292,76,o), +(219,76,c), +(163,76,o), +(139,107,o), +(139,138,c), +(139,175,o), +(167,203,o), +(238,217,cs), +(392,248,l), +(392,325,l), +(205,293,ls), +(91,273,o), +(39,211,o), +(39,131,c), +(39,49,o), +(99,-10,o), +(191,-10,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = a; +}, +{ +pos = (183,0); +ref = ogonekcomb; +} +); +width = 537; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(319,-37,o), +(296,-69,o), +(296,-111,c), +(296,-153,o), +(330,-185,o), +(395,-185,cs), +(424,-185,o), +(459,-176,o), +(487,-165,c), +(478,-84,l), +(455,-94,o), +(421,-106,o), +(401,-106,c), +(388,-106,o), +(380,-101,o), +(380,-89,c), +(380,-65,o), +(417,-34,o), +(487,0,c), +(385,0,l) +); +}, +{ +closed = 1; +nodes = ( +(39,49,o), +(99,-10,o), +(191,-10,c), +(306,-10,o), +(405,79,o), +(405,221,c), +(372,221,l), +(372,130,o), +(292,76,o), +(219,76,c), +(163,76,o), +(139,107,o), +(139,138,c), +(139,175,o), +(167,203,o), +(238,217,cs), +(392,248,l), +(392,325,l), +(205,293,ls), +(91,273,o), +(39,211,o), +(39,131,c) +); +}, +{ +closed = 1; +nodes = ( +(472,465,o), +(396,540,o), +(264,540,cs), +(160,540,o), +(78,486,o), +(49,389,c), +(143,358,l), +(160,420,o), +(200,452,o), +(258,452,c), +(321,452,o), +(372,417,o), +(372,330,c), +(372,106,ls), +(372,71,o), +(377,35,o), +(385,0,c), +(487,0,l), +(477,39,o), +(472,78,o), +(472,118,cs), +(472,342,l) +); +} +); +width = 537; +} +); +unicode = 261; +}, +{ +color = 10; +glyphname = aring; +kernLeft = a; +kernRight = n; +lastChange = "2024-03-21 13:49:02 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (116,0); +ref = ringcomb; +} +); +width = 550; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (264,0); +}, +{ +name = top; +pos = (264,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(487,0,l), +(477,39,o), +(472,78,o), +(472,118,cs), +(472,342,l), +(472,465,o), +(396.177,540,o), +(264,540,cs), +(160,540,o), +(78,486,o), +(49,389,c), +(143,358,l), +(160,420,o), +(200,452,o), +(258,452,c), +(320.752,452,o), +(372,417,o), +(372,330,c), +(372,106,ls), +(372,71,o), +(377,35,o), +(385,0,c) +); +}, +{ +closed = 1; +nodes = ( +(306,-10,o), +(405,79,o), +(405,221,c), +(372,221,l), +(372,130,o), +(292,76,o), +(219,76,c), +(163,76,o), +(139,107,o), +(139,138,c), +(139,175,o), +(167,203,o), +(238,217,cs), +(392,248,l), +(392,325,l), +(205,293,ls), +(91,273,o), +(39,211,o), +(39,131,c), +(39,49,o), +(99,-10,o), +(191,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(320,575,o), +(361,611,o), +(361,666,cs), +(361,722,o), +(320,758,o), +(264,758,cs), +(208,758,o), +(167,722,o), +(167,666,cs), +(167,611,o), +(208,575,o), +(264,575,cs) +); +}, +{ +closed = 1; +nodes = ( +(243,630,o), +(230,646,o), +(230,666,cs), +(230,687,o), +(243,703,o), +(264,703,cs), +(285,703,o), +(298,687,o), +(298,666,cs), +(298,646,o), +(285,630,o), +(264,630,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = a; +}, +{ +pos = (114,0); +ref = ringcomb; +} +); +width = 537; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = a; +}, +{ +pos = (114,0); +ref = ring; +} +); +width = 537; +} +); +unicode = 229; +}, +{ +color = 10; +glyphname = aringacute; +kernLeft = a; +kernRight = n; +lastChange = "2024-03-21 13:49:42 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (116,0); +ref = ringcomb; +}, +{ +pos = (16,53); +ref = acutecomb.case; +} +); +width = 550; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (264,0); +}, +{ +name = top; +pos = (264,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(487,0,l), +(477,39,o), +(472,78,o), +(472,118,cs), +(472,342,l), +(472,465,o), +(396.177,540,o), +(264,540,cs), +(160,540,o), +(78,486,o), +(49,389,c), +(143,358,l), +(160,420,o), +(200,452,o), +(258,452,c), +(320.752,452,o), +(372,417,o), +(372,330,c), +(372,106,ls), +(372,71,o), +(377,35,o), +(385,0,c) +); +}, +{ +closed = 1; +nodes = ( +(306,-10,o), +(405,79,o), +(405,221,c), +(372,221,l), +(372,130,o), +(292,76,o), +(219,76,c), +(163,76,o), +(139,107,o), +(139,138,c), +(139,175,o), +(167,203,o), +(238,217,cs), +(392,248,l), +(392,325,l), +(205,293,ls), +(91,273,o), +(39,211,o), +(39,131,c), +(39,49,o), +(99,-10,o), +(191,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(320,575,o), +(361,611,o), +(361,666,cs), +(361,722,o), +(320,758,o), +(264,758,cs), +(208,758,o), +(167,722,o), +(167,666,cs), +(167,611,o), +(208,575,o), +(264,575,cs) +); +}, +{ +closed = 1; +nodes = ( +(243,630,o), +(230,646,o), +(230,666,cs), +(230,687,o), +(243,703,o), +(264,703,cs), +(285,703,o), +(298,687,o), +(298,666,cs), +(298,646,o), +(285,630,o), +(264,630,cs) +); +}, +{ +closed = 1; +nodes = ( +(309,775,l), +(409,875,l), +(298,875,l), +(228,775,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = a; +}, +{ +pos = (114,0); +ref = ringcomb; +}, +{ +pos = (14,41); +ref = acutecomb.case; +} +); +width = 537; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = a; +} +); +width = 537; +} +); +unicode = 507; +}, +{ +color = 10; +glyphname = atilde; +kernLeft = a; +kernRight = n; +lastChange = "2024-03-21 13:49:02 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (16,0); +ref = tildecomb; +} +); +width = 550; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (264,0); +}, +{ +name = top; +pos = (264,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(487,0,l), +(477,39,o), +(472,78,o), +(472,118,cs), +(472,342,l), +(472,465,o), +(396.177,540,o), +(264,540,cs), +(160,540,o), +(78,486,o), +(49,389,c), +(143,358,l), +(160,420,o), +(200,452,o), +(258,452,c), +(320.752,452,o), +(372,417,o), +(372,330,c), +(372,106,ls), +(372,71,o), +(377,35,o), +(385,0,c) +); +}, +{ +closed = 1; +nodes = ( +(306,-10,o), +(405,79,o), +(405,221,c), +(372,221,l), +(372,130,o), +(292,76,o), +(219,76,c), +(163,76,o), +(139,107,o), +(139,138,c), +(139,175,o), +(167,203,o), +(238,217,cs), +(392,248,l), +(392,325,l), +(205,293,ls), +(91,273,o), +(39,211,o), +(39,131,c), +(39,49,o), +(99,-10,o), +(191,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(182,585,l), +(183,624,o), +(192,642,o), +(211,642,c), +(243,642,o), +(263,585,o), +(322,585,c), +(375,585,o), +(408,639,o), +(414,725,c), +(346,725,l), +(345,686,o), +(336,668,o), +(317,668,c), +(286,668,o), +(265,725,o), +(206,725,c), +(153,725,o), +(120,671,o), +(114,585,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = a; +}, +{ +pos = (14,0); +ref = tildecomb; +} +); +width = 537; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = a; +}, +{ +pos = (14,0); +ref = tilde; +} +); +width = 537; +} +); +unicode = 227; +}, +{ +color = 6; +glyphname = ae; +kernLeft = a; +kernRight = o; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (435,530); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(735,-14,o), +(814,48,o), +(837,140,c), +(695,176,l), +(681,133,o), +(647,113,o), +(603,113,c), +(535,113,o), +(494,161,o), +(494,265,c), +(494,376,o), +(533,419,o), +(596,419,c), +(662,419,o), +(699,377,o), +(699,265,c), +(740,323,l), +(424,323,l), +(424,223,l), +(849,223,l), +(850,237,o), +(851,250,o), +(851,265,c), +(851,434,o), +(750,544,o), +(605,544,c), +(470,544,o), +(374,433,o), +(374,265,c), +(374,98,o), +(472,-14,o), +(613,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(345,-14,o), +(439,72,o), +(439,210,c), +(344,221,l), +(344,144,o), +(286,104,o), +(228,104,c), +(194,104,o), +(178,123,o), +(178,148,c), +(178,172,o), +(192,195,o), +(244,206,cs), +(387,235,l), +(387,329,l), +(190,297,ls), +(78,279,o), +(28,214,o), +(28,135,c), +(28,46,o), +(90,-14,o), +(206,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(465,179,l), +(465,342,l), +(465,468,o), +(388,544,o), +(265,544,cs), +(146,544,o), +(63,489,o), +(36,378,c), +(179,347,l), +(191,402,o), +(222,424,o), +(265,424,c), +(309,424,o), +(344,399,o), +(344,330,c), +(344,167,l) +); +} +); +width = 879; +}, +{ +anchors = ( +{ +name = top; +pos = (435,530); +} +); +background = { +anchors = ( +{ +name = top; +pos = (435,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(718,-10,o), +(797,41,o), +(831,131,c), +(738,168,l), +(713,108,o), +(671,84,o), +(612,84,c), +(525,84,o), +(472,141,o), +(472,265,c), +(472,398,o), +(527,454,o), +(610,454,c), +(688,454,o), +(739,398,o), +(739,265,c), +(768,310,l), +(450,310,l), +(450,231,l), +(842,231,l), +(843,247,o), +(843,254,o), +(843,265,c), +(843,438,o), +(749,540,o), +(615,540,c), +(482,540,o), +(388,438,o), +(388,265,c), +(388,98,o), +(480,-10,o), +(617,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(339,-10,o), +(431,73,o), +(431,206,c), +(372,221,l), +(372,130,o), +(292,76,o), +(219,76,c), +(163,76,o), +(139,107,o), +(139,138,c), +(139,175,o), +(166,205,o), +(238,212,cs), +(392,228,l), +(392,305,l), +(205,288,ls), +(90,278,o), +(39,212,o), +(39,132,c), +(39,50,o), +(101,-10,o), +(207,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(452,192,l), +(452,342,l), +(452,465,o), +(381.481,540,o), +(259,540,cs), +(157.419,540,o), +(77.326,486,o), +(49,389,c), +(143,358,l), +(160,420,o), +(200,452,o), +(258,452,c), +(321,452,o), +(372,417,o), +(372,330,c), +(372,175,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(718,-10,o), +(797,41,o), +(831,131,c), +(738,168,l), +(713,108,o), +(671,84,o), +(612,84,c), +(525,84,o), +(472,141,o), +(472,265,c), +(472,398,o), +(527,454,o), +(610,454,c), +(688,454,o), +(739,398,o), +(739,265,c), +(768,310,l), +(450,310,l), +(450,231,l), +(842,231,l), +(843,247,o), +(843,254,o), +(843,265,c), +(843,438,o), +(749,540,o), +(615,540,c), +(482,540,o), +(388,438,o), +(388,265,c), +(388,98,o), +(480,-10,o), +(617,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(339,-10,o), +(431,73,o), +(431,206,c), +(372,221,l), +(372,130,o), +(292,76,o), +(219,76,c), +(163,76,o), +(139,107,o), +(139,138,c), +(139,175,o), +(166,205,o), +(238,212,cs), +(392,228,l), +(392,305,l), +(205,288,ls), +(90,278,o), +(39,212,o), +(39,132,c), +(39,50,o), +(101,-10,o), +(207,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(452,192,l), +(452,342,l), +(452,465,o), +(381,540,o), +(259,540,cs), +(157,540,o), +(77,486,o), +(49,389,c), +(143,358,l), +(160,420,o), +(200,452,o), +(258,452,c), +(321,452,o), +(372,417,o), +(372,330,c), +(372,175,l) +); +} +); +width = 881; +}, +{ +anchors = ( +{ +name = top; +pos = (435,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(843,247,o), +(843,254,o), +(843,265,c), +(843,438,o), +(749,540,o), +(615,540,c), +(482,540,o), +(388,438,o), +(388,265,c), +(388,98,o), +(480,-10,o), +(617,-10,c), +(718,-10,o), +(797,41,o), +(831,131,c), +(738,168,l), +(713,108,o), +(671,84,o), +(612,84,c), +(525,84,o), +(472,141,o), +(472,265,c), +(472,398,o), +(527,454,o), +(610,454,c), +(688,454,o), +(739,398,o), +(739,265,c), +(768,310,l), +(450,310,l), +(450,231,l), +(842,231,l) +); +}, +{ +closed = 1; +nodes = ( +(39,50,o), +(101,-10,o), +(207,-10,c), +(339,-10,o), +(431,73,o), +(431,206,c), +(372,221,l), +(372,130,o), +(292,76,o), +(219,76,c), +(163,76,o), +(139,107,o), +(139,138,c), +(139,175,o), +(166,205,o), +(238,212,cs), +(392,228,l), +(392,305,l), +(205,288,ls), +(90,278,o), +(39,212,o), +(39,132,c) +); +}, +{ +closed = 1; +nodes = ( +(452,342,l), +(452,465,o), +(381.481,540,o), +(259,540,cs), +(157.419,540,o), +(77.326,486,o), +(49,389,c), +(143,358,l), +(160,420,o), +(200,452,o), +(258,452,c), +(321,452,o), +(372,417,o), +(372,330,c), +(372,175,l), +(452,192,l) +); +} +); +width = 881; +} +); +unicode = 230; +}, +{ +color = 10; +glyphname = aeacute; +kernLeft = a; +kernRight = o; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = ae; +}, +{ +pos = (304,0); +ref = acutecomb; +} +); +width = 879; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (435,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(718,-10,o), +(797,41,o), +(831,131,c), +(738,168,l), +(713,108,o), +(671,84,o), +(612,84,c), +(525,84,o), +(472,141,o), +(472,265,c), +(472,398,o), +(527,454,o), +(610,454,c), +(688,454,o), +(739,398,o), +(739,265,c), +(768,310,l), +(450,310,l), +(450,231,l), +(842,231,l), +(843,247,o), +(843,254,o), +(843,265,c), +(843,438,o), +(749,540,o), +(615,540,c), +(482,540,o), +(388,438,o), +(388,265,c), +(388,98,o), +(480,-10,o), +(617,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(339,-10,o), +(431,73,o), +(431,206,c), +(372,221,l), +(372,130,o), +(292,76,o), +(219,76,c), +(163,76,o), +(139,107,o), +(139,138,c), +(139,175,o), +(166,205,o), +(238,212,cs), +(392,228,l), +(392,305,l), +(205,288,ls), +(90,278,o), +(39,212,o), +(39,132,c), +(39,50,o), +(101,-10,o), +(207,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(452,192,l), +(452,342,l), +(452,465,o), +(381.481,540,o), +(259,540,cs), +(157.419,540,o), +(77.326,486,o), +(49,389,c), +(143,358,l), +(160,420,o), +(200,452,o), +(258,452,c), +(321,452,o), +(372,417,o), +(372,330,c), +(372,175,l) +); +}, +{ +closed = 1; +nodes = ( +(468,585,l), +(578,725,l), +(452,725,l), +(382,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = ae; +}, +{ +pos = (275,0); +ref = acutecomb; +} +); +width = 881; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = ae; +}, +{ +pos = (275,0); +ref = acute; +} +); +width = 881; +} +); +unicode = 509; +}, +{ +color = 6; +glyphname = b; +kernLeft = l; +kernRight = o; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(476,-14,o), +(556,90,o), +(556,265,c), +(556,440,o), +(476,544,o), +(353,544,c), +(247,544,o), +(176,458,o), +(176,304,c), +(176,226,l), +(176,72,o), +(247,-14,o), +(353,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(202,0,l), +(202,139,l), +(183,265,l), +(202,383,l), +(202,715,l), +(53,715,l), +(53,0,l) +); +}, +{ +closed = 1; +nodes = ( +(234,120,o), +(192,169,o), +(192,265,c), +(192,361,o), +(234,410,o), +(297,410,c), +(361,410,o), +(403,361,o), +(403,265,c), +(403,169,o), +(361,120,o), +(297,120,c) +); +} +); +width = 588; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(446,-10,o), +(534,93,o), +(534,265,c), +(534,437,o), +(446,540,o), +(323,540,c), +(211,540,o), +(137,456,o), +(137,309,c), +(137,221,l), +(137,74,o), +(211,-10,o), +(323,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,123,l), +(150,265,l), +(165,408,l), +(165,715,l), +(65,715,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(215,78,o), +(160,134.005,o), +(160,265,c), +(160,395.995,o), +(215,452,o), +(295,452,c), +(375,452,o), +(430,395.995,o), +(430,265,c), +(430,134.005,o), +(375,78,o), +(295,78,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(446,-10,o), +(534,93,o), +(534,265,c), +(534,437,o), +(446,540,o), +(323,540,c), +(211,540,o), +(137,456,o), +(137,309,c), +(137,221,l), +(137,74,o), +(211,-10,o), +(323,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,123,l), +(150,265,l), +(165,408,l), +(165,715,l), +(65,715,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(215,78,o), +(160,134,o), +(160,265,c), +(160,396,o), +(215,452,o), +(295,452,c), +(375,452,o), +(430,396,o), +(430,265,c), +(430,134,o), +(375,78,o), +(295,78,c) +); +} +); +width = 572; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(160,530,l), +(60,530,l), +(60,0,l) +); +}, +{ +closed = 1; +nodes = ( +(523,432,o), +(435,540,o), +(314,540,c), +(206,540,o), +(127,451,o), +(127,309,c), +(160,309,l), +(160,409.277,o), +(213,462,o), +(280,462,c), +(368,462,o), +(419,403,o), +(419,265,c), +(419,127,o), +(368,68,o), +(280,68,c), +(213,68,o), +(160,121,o), +(160,221,c), +(127,221,l), +(127,79,o), +(206,-10,o), +(314,-10,c), +(435,-10,o), +(523,98,o), +(523,265,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(65,0,l), +(165,0,l), +(165,123,l), +(150,265,l), +(165,408,l), +(165,715,l), +(65,715,l) +); +}, +{ +closed = 1; +nodes = ( +(215,78,o), +(160,134.005,o), +(160,265,c), +(160,395.995,o), +(215,452,o), +(295,452,c), +(375,452,o), +(430,395.995,o), +(430,265,c), +(430,134.005,o), +(375,78,o), +(295,78,c) +); +}, +{ +closed = 1; +nodes = ( +(137,221,l), +(137,74,o), +(211,-10,o), +(323,-10,c), +(446,-10,o), +(534,93,o), +(534,265,c), +(534,437,o), +(446,540,o), +(323,540,c), +(211,540,o), +(137,456,o), +(137,309,c) +); +} +); +width = 572; +} +); +unicode = 98; +}, +{ +color = 6; +glyphname = c; +kernLeft = o; +kernRight = c; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (286,0); +}, +{ +name = top; +pos = (286,530); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(412,-14,o), +(506,58,o), +(532,176,c), +(385,207,l), +(375,148,o), +(339,119,o), +(286,119,c), +(223,119,o), +(181,169,o), +(181,265,cs), +(181,361,o), +(223,411,o), +(286,411,c), +(339,411,o), +(373,381,o), +(381,322,c), +(529,355,l), +(504,472,o), +(412,544,o), +(286,544,cs), +(134,544,o), +(28,432,o), +(28,265,cs), +(28,98,o), +(134,-14,o), +(286,-14,c) +); +} +); +width = 556; +}, +{ +anchors = ( +{ +name = bottom; +pos = (273,0); +}, +{ +name = top; +pos = (273,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (273,0); +}, +{ +name = top; +pos = (273,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(378,-10,o), +(456,44,o), +(486,149,c), +(389,178,l), +(370,108,o), +(333,80,o), +(272,80,c), +(194,80,o), +(142,137,o), +(142,265,cs), +(142,393,o), +(194,450,o), +(272,450,c), +(333,450,o), +(370,422,o), +(392,353,c), +(486,384,l), +(456,486,o), +(378,540,o), +(277,540,cs), +(135,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(135,-10,o), +(277,-10,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(378,-10,o), +(456,44,o), +(486,149,c), +(389,178,l), +(370,108,o), +(333,80,o), +(272,80,c), +(194,80,o), +(142,137,o), +(142,265,cs), +(142,393,o), +(194,450,o), +(272,450,c), +(333,450,o), +(370,422,o), +(392,353,c), +(486,384,l), +(456,486,o), +(378,540,o), +(277,540,cs), +(135,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(135,-10,o), +(277,-10,c) +); +} +); +width = 520; +}, +{ +anchors = ( +{ +name = bottom; +pos = (273,0); +}, +{ +name = top; +pos = (273,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(411.966,-10,o), +(509,98,o), +(509,265,cs), +(509,432,o), +(411.966,540,o), +(269,540,cs), +(127.043,540,o), +(30,432,o), +(30,265,cs), +(30,98,o), +(127.043,-10,o), +(269,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(186,65,o), +(134,127,o), +(134,265,cs), +(134,403,o), +(186,465,o), +(269,465,cs), +(353,465,o), +(405,403,o), +(405,265,cs), +(405,127,o), +(353,65,o), +(269,65,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(194,80,o), +(142,137,o), +(142,265,cs), +(142,393,o), +(194,450,o), +(272,450,c), +(333,450,o), +(370,422,o), +(392,353,c), +(486,384,l), +(456,486,o), +(378,540,o), +(277,540,cs), +(135,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(135,-10,o), +(277,-10,c), +(378,-10,o), +(456,44,o), +(486,149,c), +(389,178,l), +(370,108,o), +(333,80,o), +(272,80,c) +); +} +); +width = 520; +} +); +unicode = 99; +}, +{ +color = 10; +glyphname = cacute; +kernLeft = o; +kernRight = c; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = c; +}, +{ +pos = (155,0); +ref = acutecomb; +} +); +width = 556; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (273,0); +}, +{ +name = top; +pos = (273,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(378,-10,o), +(456,44,o), +(486,149,c), +(389,178,l), +(370,108,o), +(333,80,o), +(272,80,c), +(194,80,o), +(142,137,o), +(142,265,cs), +(142,393,o), +(194,450,o), +(272,450,c), +(333,450,o), +(370,422,o), +(392,353,c), +(486,384,l), +(456,486,o), +(378,540,o), +(277,540,cs), +(135,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(135,-10,o), +(277,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(306,585,l), +(416,725,l), +(290,725,l), +(220,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = c; +}, +{ +pos = (113,0); +ref = acutecomb; +} +); +width = 520; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = c; +}, +{ +pos = (113,0); +ref = acute; +} +); +width = 520; +} +); +unicode = 263; +}, +{ +color = 10; +glyphname = ccaron; +kernLeft = o; +kernRight = c; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = c; +}, +{ +pos = (36,0); +ref = caroncomb; +} +); +width = 556; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (273,0); +}, +{ +name = top; +pos = (273,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(378,-10,o), +(456,44,o), +(486,149,c), +(389,178,l), +(370,108,o), +(333,80,o), +(272,80,c), +(194,80,o), +(142,137,o), +(142,265,cs), +(142,393,o), +(194,450,o), +(272,450,c), +(333,450,o), +(370,422,o), +(392,353,c), +(486,384,l), +(456,486,o), +(378,540,o), +(277,540,cs), +(135,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(135,-10,o), +(277,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(329,585,l), +(429,725,l), +(341,725,l), +(223,585,l) +); +}, +{ +closed = 1; +nodes = ( +(323,585,l), +(205,725,l), +(117,725,l), +(217,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = c; +}, +{ +pos = (23,0); +ref = caroncomb; +} +); +width = 520; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = c; +}, +{ +pos = (23,0); +ref = caron; +} +); +width = 520; +} +); +unicode = 269; +}, +{ +color = 10; +glyphname = ccedilla; +kernLeft = o; +kernRight = c; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = c; +}, +{ +pos = (33,0); +ref = cedillacomb; +} +); +width = 556; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (273,0); +}, +{ +name = top; +pos = (273,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(378,-10,o), +(456,44,o), +(486,149,c), +(389,178,l), +(370,108,o), +(333,80,o), +(272,80,c), +(194,80,o), +(142,137,o), +(142,265,cs), +(142,393,o), +(194,450,o), +(272,450,c), +(333,450,o), +(370,422,o), +(392,353,c), +(486,384,l), +(456,486,o), +(378,540,o), +(277,540,cs), +(135,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(135,-10,o), +(277,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(324,-185,o), +(360,-151,o), +(360,-106,cs), +(360,-57,o), +(323,-29,o), +(275,-29,c), +(287,-43,l), +(293,9,l), +(237,11,l), +(224,-73,l), +(235,-71,o), +(242,-70,o), +(253,-70,c), +(277,-70,o), +(291,-79,o), +(291,-96,c), +(291,-110,o), +(278,-119,o), +(257,-119,c), +(237,-119,o), +(221,-114,o), +(203,-105,c), +(190,-169,l), +(215,-180,o), +(240,-185,o), +(266,-185,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = c; +}, +{ +pos = (21,0); +ref = cedillacomb; +} +); +width = 520; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(283,-43,l), +(290,9,l), +(233,11,l), +(220,-73,l), +(231,-71,o), +(238,-70,o), +(250,-70,c), +(273,-70,o), +(287,-79,o), +(287,-96,c), +(287,-110,o), +(274,-119,o), +(256,-119,c), +(241,-119,o), +(225,-114,o), +(211,-99,c), +(170,-150,l), +(191,-170,o), +(223,-185,o), +(262,-185,c), +(320,-185,o), +(356,-151,o), +(356,-106,cs), +(356,-57,o), +(319,-29,o), +(271,-29,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = c; +}, +{ +pos = (21,0); +ref = cedilla; +} +); +width = 520; +} +); +unicode = 231; +}, +{ +color = 10; +glyphname = ccircumflex; +kernLeft = o; +kernRight = c; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = c; +}, +{ +pos = (36,0); +ref = circumflexcomb; +} +); +width = 556; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (273,0); +}, +{ +name = top; +pos = (273,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(378,-10,o), +(456,44,o), +(486,149,c), +(389,178,l), +(370,108,o), +(333,80,o), +(272,80,c), +(194,80,o), +(142,137,o), +(142,265,cs), +(142,393,o), +(194,450,o), +(272,450,c), +(333,450,o), +(370,422,o), +(392,353,c), +(486,384,l), +(456,486,o), +(378,540,o), +(277,540,cs), +(135,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(135,-10,o), +(277,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(429,585,l), +(329,725,l), +(223,725,l), +(341,585,l) +); +}, +{ +closed = 1; +nodes = ( +(205,585,l), +(323,725,l), +(217,725,l), +(117,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = c; +}, +{ +pos = (23,0); +ref = circumflexcomb; +} +); +width = 520; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = c; +}, +{ +pos = (23,0); +ref = circumflex; +} +); +width = 520; +} +); +unicode = 265; +}, +{ +color = 10; +glyphname = cdotaccent; +kernLeft = o; +kernRight = c; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = c; +}, +{ +pos = (36,0); +ref = dotaccentcomb; +} +); +width = 556; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (273,0); +}, +{ +name = top; +pos = (273,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(378,-10,o), +(456,44,o), +(486,149,c), +(389,178,l), +(370,108,o), +(333,80,o), +(272,80,c), +(194,80,o), +(142,137,o), +(142,265,cs), +(142,393,o), +(194,450,o), +(272,450,c), +(333,450,o), +(370,422,o), +(392,353,c), +(486,384,l), +(456,486,o), +(378,540,o), +(277,540,cs), +(135,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(135,-10,o), +(277,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(308,602,o), +(335,627,o), +(335,663,cs), +(335,700,o), +(308,725,o), +(273,725,cs), +(238,725,o), +(211,700,o), +(211,663,cs), +(211,627,o), +(238,602,o), +(273,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = c; +}, +{ +pos = (23,0); +ref = dotaccentcomb; +} +); +width = 520; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = c; +}, +{ +pos = (23,0); +ref = dotaccent; +} +); +width = 520; +} +); +unicode = 267; +}, +{ +color = 6; +glyphname = d; +kernLeft = o; +kernRight = l; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (294,0); +}, +{ +name = center; +pos = (440,572); +}, +{ +name = top; +pos = (294,530); +}, +{ +name = topright; +pos = (597,715); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(341,-14,o), +(411,72,o), +(411,226,c), +(411,304,l), +(411,458,o), +(341,544,o), +(234,544,c), +(111,544,o), +(32,440,o), +(32,265,c), +(32,90,o), +(111,-14,o), +(234,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(226,120,o), +(185,169,o), +(185,265,c), +(185,361,o), +(226,410,o), +(290,410,c), +(354,410,o), +(395,361,o), +(395,265,c), +(395,169,o), +(354,120,o), +(290,120,c) +); +}, +{ +closed = 1; +nodes = ( +(534,0,l), +(534,715,l), +(385,715,l), +(385,383,l), +(404,265,l), +(385,139,l), +(385,0,l) +); +} +); +width = 587; +}, +{ +anchors = ( +{ +name = bottom; +pos = (286,0); +}, +{ +name = center; +pos = (429,572); +}, +{ +name = top; +pos = (286,530); +}, +{ +name = topright; +pos = (663,715); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(361,-10,o), +(435,74,o), +(435,221,c), +(435,309,l), +(435,456,o), +(361,540,o), +(249,540,c), +(126,540,o), +(38,437,o), +(38,265,c), +(38,93,o), +(126,-10,o), +(249,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(197,78,o), +(142,134.005,o), +(142,265,c), +(142,395.995,o), +(197,452,o), +(277,452,c), +(357,452,o), +(412,395.995,o), +(412,265,c), +(412,134.005,o), +(357,78,o), +(277,78,c) +); +}, +{ +closed = 1; +nodes = ( +(507,0,l), +(507,715,l), +(407,715,l), +(407,408,l), +(422,265,l), +(407,123,l), +(407,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(361,-10,o), +(435,74,o), +(435,221,c), +(435,309,l), +(435,456,o), +(361,540,o), +(249,540,c), +(126,540,o), +(38,437,o), +(38,265,c), +(38,93,o), +(126,-10,o), +(249,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(197,78,o), +(142,134,o), +(142,265,c), +(142,396,o), +(197,452,o), +(277,452,c), +(357,452,o), +(412,396,o), +(412,265,c), +(412,134,o), +(357,78,o), +(277,78,c) +); +}, +{ +closed = 1; +nodes = ( +(507,0,l), +(507,715,l), +(407,715,l), +(407,408,l), +(422,265,l), +(407,123,l), +(407,0,l) +); +} +); +width = 572; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(160,530,l), +(60,530,l), +(60,0,l) +); +}, +{ +closed = 1; +nodes = ( +(523,432,o), +(435,540,o), +(314,540,c), +(206,540,o), +(127,451,o), +(127,309,c), +(160,309,l), +(160,409.277,o), +(213,462,o), +(280,462,c), +(368,462,o), +(419,403,o), +(419,265,c), +(419,127,o), +(368,68,o), +(280,68,c), +(213,68,o), +(160,121,o), +(160,221,c), +(127,221,l), +(127,79,o), +(206,-10,o), +(314,-10,c), +(435,-10,o), +(523,98,o), +(523,265,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(407,715,l), +(407,408,l), +(422,265,l), +(407,123,l), +(407,0,l), +(507,0,l), +(507,715,l) +); +}, +{ +closed = 1; +nodes = ( +(197,78,o), +(142,134.005,o), +(142,265,c), +(142,395.995,o), +(197,452,o), +(277,452,c), +(357,452,o), +(412,395.995,o), +(412,265,c), +(412,134.005,o), +(357,78,o), +(277,78,c) +); +}, +{ +closed = 1; +nodes = ( +(435,456,o), +(361,540,o), +(249,540,c), +(126,540,o), +(38,437,o), +(38,265,c), +(38,93,o), +(126,-10,o), +(249,-10,c), +(361,-10,o), +(435,74,o), +(435,221,c), +(435,309,l) +); +} +); +width = 572; +} +); +unicode = 100; +}, +{ +color = 10; +glyphname = dcaron; +kernLeft = o; +kernRight = dcaron; +lastChange = "2024-03-22 12:17:54 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = d; +}, +{ +pos = (510,0); +ref = caroncomb.alt; +} +); +width = 587; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(361,-10,o), +(435,74,o), +(435,221,c), +(435,309,l), +(435,456,o), +(361,540,o), +(249,540,c), +(126,540,o), +(38,437,o), +(38,265,c), +(38,93,o), +(126,-10,o), +(249,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(197,78,o), +(142,134,o), +(142,265,c), +(142,396,o), +(197,452,o), +(277,452,c), +(357,452,o), +(412,396,o), +(412,265,c), +(412,134,o), +(357,78,o), +(277,78,c) +); +}, +{ +closed = 1; +nodes = ( +(507,0,l), +(507,715,l), +(407,715,l), +(407,408,l), +(422,265,l), +(407,123,l), +(407,0,l) +); +}, +{ +closed = 1; +nodes = ( +(617,442,l), +(661,715,l), +(557,715,l), +(557,442,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = d; +}, +{ +pos = (472,0); +ref = caroncomb.alt; +} +); +width = 572; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(557,442,l), +(617,442,l), +(661,715,l), +(557,715,l) +); +}, +{ +closed = 1; +nodes = ( +(407,715,l), +(407,408,l), +(422,265,l), +(407,123,l), +(407,0,l), +(507,0,l), +(507,715,l) +); +}, +{ +closed = 1; +nodes = ( +(197,78,o), +(142,134,o), +(142,265,c), +(142,396,o), +(197,452,o), +(277,452,c), +(357,452,o), +(412,396,o), +(412,265,c), +(412,134,o), +(357,78,o), +(277,78,c) +); +}, +{ +closed = 1; +nodes = ( +(435,456,o), +(361,540,o), +(249,540,c), +(126,540,o), +(38,437,o), +(38,265,c), +(38,93,o), +(126,-10,o), +(249,-10,c), +(361,-10,o), +(435,74,o), +(435,221,c), +(435,309,l) +); +} +); +width = 631; +} +); +unicode = 271; +}, +{ +color = 6; +glyphname = dcroat; +kernLeft = o; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(288,567,l), +(563,567,l), +(563,653,l), +(288,653,l) +); +}, +{ +closed = 1; +nodes = ( +(403,715,l), +(403,408,l), +(418,265,l), +(403,123,l), +(403,0,l), +(503,0,l), +(503,715,l) +); +}, +{ +closed = 1; +nodes = ( +(193,78,o), +(138,134,o), +(138,265,c), +(138,396,o), +(193,452,o), +(273,452,c), +(353,452,o), +(408,396,o), +(408,265,c), +(408,134,o), +(353,78,o), +(273,78,c) +); +}, +{ +closed = 1; +nodes = ( +(431,456,o), +(357,540,o), +(245,540,c), +(122,540,o), +(34,437,o), +(34,265,c), +(34,93,o), +(122,-10,o), +(245,-10,c), +(357,-10,o), +(431,74,o), +(431,221,c), +(431,309,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(341,-14,o), +(411,72,o), +(411,226,c), +(411,304,l), +(411,458,o), +(341,544,o), +(234,544,c), +(111,544,o), +(32,440,o), +(32,265,c), +(32,90,o), +(111,-14,o), +(234,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(226,120,o), +(185,169,o), +(185,265,c), +(185,361,o), +(226,410,o), +(290,410,c), +(354,410,o), +(395,361,o), +(395,265,c), +(395,169,o), +(354,120,o), +(290,120,c) +); +}, +{ +closed = 1; +nodes = ( +(534,0,l), +(534,715,l), +(385,715,l), +(385,383,l), +(404,265,l), +(385,139,l), +(385,0,l) +); +}, +{ +closed = 1; +nodes = ( +(585,560,l), +(585,675,l), +(265,675,l), +(265,560,l) +); +} +); +width = 595; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(361,-10,o), +(435,74,o), +(435,221,c), +(435,309,l), +(435,456,o), +(361,540,o), +(249,540,c), +(126,540,o), +(38,437,o), +(38,265,c), +(38,93,o), +(126,-10,o), +(249,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(197,78,o), +(142,134,o), +(142,265,c), +(142,396,o), +(197,452,o), +(277,452,c), +(357,452,o), +(412,396,o), +(412,265,c), +(412,134,o), +(357,78,o), +(277,78,c) +); +}, +{ +closed = 1; +nodes = ( +(507,0,l), +(507,715,l), +(407,715,l), +(407,408,l), +(422,265,l), +(407,123,l), +(407,0,l) +); +}, +{ +closed = 1; +nodes = ( +(567,567,l), +(567,653,l), +(292,653,l), +(292,567,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(361,-10,o), +(435,74,o), +(435,221,c), +(435,309,l), +(435,456,o), +(361,540,o), +(249,540,c), +(126,540,o), +(38,437,o), +(38,265,c), +(38,93,o), +(126,-10,o), +(249,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(197,78,o), +(142,134,o), +(142,265,c), +(142,396,o), +(197,452,o), +(277,452,c), +(357,452,o), +(412,396,o), +(412,265,c), +(412,134,o), +(357,78,o), +(277,78,c) +); +}, +{ +closed = 1; +nodes = ( +(507,0,l), +(507,715,l), +(407,715,l), +(407,408,l), +(422,265,l), +(407,123,l), +(407,0,l) +); +}, +{ +closed = 1; +nodes = ( +(567,567,l), +(567,653,l), +(292,653,l), +(292,567,l) +); +} +); +width = 587; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(292,567,l), +(567,567,l), +(567,653,l), +(292,653,l) +); +}, +{ +closed = 1; +nodes = ( +(407,715,l), +(407,408,l), +(422,265,l), +(407,123,l), +(407,0,l), +(507,0,l), +(507,715,l) +); +}, +{ +closed = 1; +nodes = ( +(197,78,o), +(142,134,o), +(142,265,c), +(142,396,o), +(197,452,o), +(277,452,c), +(357,452,o), +(412,396,o), +(412,265,c), +(412,134,o), +(357,78,o), +(277,78,c) +); +}, +{ +closed = 1; +nodes = ( +(435,456,o), +(361,540,o), +(249,540,c), +(126,540,o), +(38,437,o), +(38,265,c), +(38,93,o), +(126,-10,o), +(249,-10,c), +(361,-10,o), +(435,74,o), +(435,221,c), +(435,309,l) +); +} +); +width = 587; +} +); +unicode = 273; +}, +{ +color = 6; +glyphname = eth; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(442,-14,o), +(545,89,o), +(545,272,c), +(545,394,o), +(475,573,o), +(314,715,c), +(103,715,l), +(290,563,o), +(376,432,o), +(407,260,c), +(415,260,l), +(395,385,o), +(331,461,o), +(227,461,c), +(115,461,o), +(28,366,o), +(28,227,cs), +(28,94,o), +(128,-14,o), +(287,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(224,120,o), +(182,161,o), +(182,227,cs), +(182,293,o), +(224,334,o), +(287,334,cs), +(351,334,o), +(393,293,o), +(393,227,cs), +(393,161,o), +(351,120,o), +(287,120,cs) +); +}, +{ +closed = 1; +nodes = ( +(469,636,l), +(411,730,l), +(160,575,l), +(218,481,l) +); +} +); +width = 573; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(423,-10,o), +(521,89,o), +(521,262,c), +(521,394,o), +(442,573,o), +(267,715,c), +(126,715,l), +(307,583,o), +(393,469,o), +(423,320,c), +(431,320,l), +(411,408,o), +(344,456,o), +(255,456,c), +(132,456,o), +(38,360,o), +(38,227,cs), +(38,94,o), +(133,-10,o), +(280,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137,o), +(142,227,cs), +(142,317,o), +(197,374,o), +(280,374,cs), +(364,374,o), +(419,317,o), +(419,227,cs), +(419,137,o), +(364,80,o), +(280,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(448,658,l), +(394,725,l), +(183,555,l), +(237,488,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(423,-10,o), +(521,89,o), +(521,262,c), +(521,394,o), +(442,573,o), +(267,715,c), +(126,715,l), +(307,583,o), +(393,469,o), +(423,320,c), +(431,320,l), +(411,408,o), +(344,456,o), +(255,456,c), +(132,456,o), +(38,360,o), +(38,227,cs), +(38,94,o), +(133,-10,o), +(280,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137,o), +(142,227,cs), +(142,317,o), +(197,374,o), +(280,374,cs), +(364,374,o), +(419,317,o), +(419,227,cs), +(419,137,o), +(364,80,o), +(280,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(448,658,l), +(394,725,l), +(183,555,l), +(237,488,l) +); +} +); +width = 559; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137,o), +(142,227,cs), +(142,317,o), +(197,374,o), +(280,374,cs), +(364,374,o), +(419,317,o), +(419,227,cs), +(419,137,o), +(364,80,o), +(280,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(126,715,l), +(307,583,o), +(393,469,o), +(423,320,c), +(431,320,l), +(411,408,o), +(344,456,o), +(255,456,c), +(132,456,o), +(38,360,o), +(38,227,cs), +(38,94,o), +(133,-10,o), +(280,-10,cs), +(423,-10,o), +(521,89,o), +(521,262,c), +(521,394,o), +(442,573,o), +(267,715,c) +); +}, +{ +closed = 1; +nodes = ( +(237,488,l), +(448,658,l), +(394,725,l), +(183,555,l) +); +} +); +width = 559; +} +); +unicode = 240; +}, +{ +color = 6; +glyphname = e; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (283,0); +}, +{ +name = ogonek; +pos = (382,0); +}, +{ +name = top; +pos = (283,530); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(414,-14,o), +(499,48,o), +(524,140,c), +(382,176,l), +(368,133,o), +(334,113,o), +(290,113,c), +(222,113,o), +(181,161,o), +(181,265,c), +(181,376,o), +(221,419,o), +(283,419,c), +(349,419,o), +(386,377,o), +(386,265,c), +(427,323,l), +(111,323,l), +(111,223,l), +(537,223,l), +(537,237,o), +(538,250,o), +(538,265,c), +(538,434,o), +(433,544,o), +(283,544,c), +(134,544,o), +(28,433,o), +(28,265,c), +(28,98,o), +(132,-14,o), +(281,-14,c) +); +} +); +width = 566; +}, +{ +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = ogonek; +pos = (382,0); +}, +{ +name = top; +pos = (280,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(385,-10,o), +(466,41,o), +(501,131,c), +(408,168,l), +(383,108.369,o), +(341,84,o), +(282,84,c), +(195,84,o), +(142,140.8,o), +(142,265,c), +(142,398.2,o), +(197,454,o), +(280,454,c), +(358,454,o), +(409,398.2,o), +(409,265,c), +(438,310,l), +(120,310,l), +(120,231,l), +(512,231,l), +(513,246.583,o), +(513,253.667,o), +(513,265,c), +(513,438,o), +(417,540,o), +(280,540,c), +(138,540,o), +(38,438,o), +(38,265,c), +(38,98,o), +(136,-10,o), +(282,-10,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(385,-10,o), +(466,41,o), +(501,131,c), +(408,168,l), +(383,108,o), +(341,84,o), +(282,84,c), +(195,84,o), +(142,141,o), +(142,265,c), +(142,398,o), +(197,454,o), +(280,454,c), +(358,454,o), +(409,398,o), +(409,265,c), +(438,310,l), +(120,310,l), +(120,231,l), +(512,231,l), +(513,247,o), +(513,254,o), +(513,265,c), +(513,438,o), +(417,540,o), +(280,540,c), +(138,540,o), +(38,438,o), +(38,265,c), +(38,98,o), +(136,-10,o), +(282,-10,c) +); +} +); +width = 551; +}, +{ +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(411.966,-10,o), +(509,98,o), +(509,265,cs), +(509,432,o), +(411.966,540,o), +(269,540,cs), +(127.043,540,o), +(30,432,o), +(30,265,cs), +(30,98,o), +(127.043,-10,o), +(269,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(186,65,o), +(134,127,o), +(134,265,cs), +(134,403,o), +(186,465,o), +(269,465,cs), +(353,465,o), +(405,403,o), +(405,265,cs), +(405,127,o), +(353,65,o), +(269,65,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(513,246.583,o), +(513,253.667,o), +(513,265,c), +(513,438,o), +(417,540,o), +(280,540,c), +(138,540,o), +(38,438,o), +(38,265,c), +(38,98,o), +(136,-10,o), +(282,-10,c), +(385,-10,o), +(466,41,o), +(501,131,c), +(408,168,l), +(383,108.369,o), +(341,84,o), +(282,84,c), +(195,84,o), +(142,140.8,o), +(142,265,c), +(142,398.2,o), +(197,454,o), +(280,454,c), +(358,454,o), +(409,398.2,o), +(409,265,c), +(438,310,l), +(120,310,l), +(120,231,l), +(512,231,l) +); +} +); +width = 551; +} +); +unicode = 101; +}, +{ +color = 10; +glyphname = eacute; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (152,0); +ref = acutecomb; +} +); +width = 566; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(385,-10,o), +(466,41,o), +(501,131,c), +(408,168,l), +(383,108.369,o), +(341,84,o), +(282,84,c), +(195,84,o), +(142,140.8,o), +(142,265,c), +(142,398.2,o), +(197,454,o), +(280,454,c), +(358,454,o), +(409,398.2,o), +(409,265,c), +(438,310,l), +(120,310,l), +(120,231,l), +(512,231,l), +(513,246.583,o), +(513,253.667,o), +(513,265,c), +(513,438,o), +(417,540,o), +(280,540,c), +(138,540,o), +(38,438,o), +(38,265,c), +(38,98,o), +(136,-10,o), +(282,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(313,585,l), +(423,725,l), +(297,725,l), +(227,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = e; +}, +{ +pos = (120,0); +ref = acutecomb; +} +); +width = 551; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = e; +}, +{ +pos = (120,0); +ref = acute; +} +); +width = 551; +} +); +unicode = 233; +}, +{ +color = 10; +glyphname = ebreve; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (33,0); +ref = brevecomb; +} +); +width = 566; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(385,-10,o), +(466,41,o), +(501,131,c), +(408,168,l), +(383,108.369,o), +(341,84,o), +(282,84,c), +(195,84,o), +(142,140.8,o), +(142,265,c), +(142,398.2,o), +(197,454,o), +(280,454,c), +(358,454,o), +(409,398.2,o), +(409,265,c), +(438,310,l), +(120,310,l), +(120,231,l), +(512,231,l), +(513,246.583,o), +(513,253.667,o), +(513,265,c), +(513,438,o), +(417,540,o), +(280,540,c), +(138,540,o), +(38,438,o), +(38,265,c), +(38,98,o), +(136,-10,o), +(282,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(373,585,o), +(418,639,o), +(420,725,c), +(350,725,l), +(349,684,o), +(325,660,o), +(280,660,c), +(235,660,o), +(211,684,o), +(210,725,c), +(140,725,l), +(142,639,o), +(187,585,o), +(280,585,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = e; +}, +{ +pos = (30,0); +ref = brevecomb; +} +); +width = 551; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = e; +}, +{ +pos = (30,0); +ref = breve; +} +); +width = 551; +} +); +unicode = 277; +}, +{ +color = 10; +glyphname = ecaron; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (33,0); +ref = caroncomb; +} +); +width = 566; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(385,-10,o), +(466,41,o), +(501,131,c), +(408,168,l), +(383,108.369,o), +(341,84,o), +(282,84,c), +(195,84,o), +(142,140.8,o), +(142,265,c), +(142,398.2,o), +(197,454,o), +(280,454,c), +(358,454,o), +(409,398.2,o), +(409,265,c), +(438,310,l), +(120,310,l), +(120,231,l), +(512,231,l), +(513,246.583,o), +(513,253.667,o), +(513,265,c), +(513,438,o), +(417,540,o), +(280,540,c), +(138,540,o), +(38,438,o), +(38,265,c), +(38,98,o), +(136,-10,o), +(282,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(336,585,l), +(436,725,l), +(348,725,l), +(230,585,l) +); +}, +{ +closed = 1; +nodes = ( +(330,585,l), +(212,725,l), +(124,725,l), +(224,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = e; +}, +{ +pos = (30,0); +ref = caroncomb; +} +); +width = 551; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = e; +}, +{ +pos = (30,0); +ref = caron; +} +); +width = 551; +} +); +unicode = 283; +}, +{ +color = 10; +glyphname = ecircumflex; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (33,0); +ref = circumflexcomb; +} +); +width = 566; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(385,-10,o), +(466,41,o), +(501,131,c), +(408,168,l), +(383,108.369,o), +(341,84,o), +(282,84,c), +(195,84,o), +(142,140.8,o), +(142,265,c), +(142,398.2,o), +(197,454,o), +(280,454,c), +(358,454,o), +(409,398.2,o), +(409,265,c), +(438,310,l), +(120,310,l), +(120,231,l), +(512,231,l), +(513,246.583,o), +(513,253.667,o), +(513,265,c), +(513,438,o), +(417,540,o), +(280,540,c), +(138,540,o), +(38,438,o), +(38,265,c), +(38,98,o), +(136,-10,o), +(282,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(436,585,l), +(336,725,l), +(230,725,l), +(348,585,l) +); +}, +{ +closed = 1; +nodes = ( +(212,585,l), +(330,725,l), +(224,725,l), +(124,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = e; +}, +{ +pos = (30,0); +ref = circumflexcomb; +} +); +width = 551; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = e; +}, +{ +pos = (30,0); +ref = circumflex; +} +); +width = 551; +} +); +unicode = 234; +}, +{ +color = 10; +glyphname = edieresis; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (33,0); +ref = dieresiscomb; +} +); +width = 566; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(385,-10,o), +(466,41,o), +(501,131,c), +(408,168,l), +(383,108.369,o), +(341,84,o), +(282,84,c), +(195,84,o), +(142,140.8,o), +(142,265,c), +(142,398.2,o), +(197,454,o), +(280,454,c), +(358,454,o), +(409,398.2,o), +(409,265,c), +(438,310,l), +(120,310,l), +(120,231,l), +(512,231,l), +(513,246.583,o), +(513,253.667,o), +(513,265,c), +(513,438,o), +(417,540,o), +(280,540,c), +(138,540,o), +(38,438,o), +(38,265,c), +(38,98,o), +(136,-10,o), +(282,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(403,602,o), +(428,625,o), +(428,658,cs), +(428,692,o), +(403,715,o), +(371,715,cs), +(339,715,o), +(314,692,o), +(314,658,cs), +(314,625,o), +(339,602,o), +(371,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(221,602,o), +(246,625,o), +(246,658,cs), +(246,692,o), +(221,715,o), +(189,715,cs), +(157,715,o), +(132,692,o), +(132,658,cs), +(132,625,o), +(157,602,o), +(189,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = e; +}, +{ +pos = (30,0); +ref = dieresiscomb; +} +); +width = 551; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = e; +}, +{ +pos = (30,0); +ref = dieresis; +} +); +width = 551; +} +); +unicode = 235; +}, +{ +color = 10; +glyphname = edotaccent; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (33,0); +ref = dotaccentcomb; +} +); +width = 566; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(385,-10,o), +(466,41,o), +(501,131,c), +(408,168,l), +(383,108.369,o), +(341,84,o), +(282,84,c), +(195,84,o), +(142,140.8,o), +(142,265,c), +(142,398.2,o), +(197,454,o), +(280,454,c), +(358,454,o), +(409,398.2,o), +(409,265,c), +(438,310,l), +(120,310,l), +(120,231,l), +(512,231,l), +(513,246.583,o), +(513,253.667,o), +(513,265,c), +(513,438,o), +(417,540,o), +(280,540,c), +(138,540,o), +(38,438,o), +(38,265,c), +(38,98,o), +(136,-10,o), +(282,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(315,602,o), +(342,627,o), +(342,663,cs), +(342,700,o), +(315,725,o), +(280,725,cs), +(245,725,o), +(218,700,o), +(218,663,cs), +(218,627,o), +(245,602,o), +(280,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = e; +}, +{ +pos = (30,0); +ref = dotaccentcomb; +} +); +width = 551; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = e; +}, +{ +pos = (30,0); +ref = dotaccent; +} +); +width = 551; +} +); +unicode = 279; +}, +{ +color = 10; +glyphname = edotbelow; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (33,0); +ref = dotbelow; +} +); +width = 566; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(385,-10,o), +(466,41,o), +(501,131,c), +(408,168,l), +(383,108.369,o), +(341,84,o), +(282,84,c), +(195,84,o), +(142,140.8,o), +(142,265,c), +(142,398.2,o), +(197,454,o), +(280,454,c), +(358,454,o), +(409,398.2,o), +(409,265,c), +(438,310,l), +(120,310,l), +(120,231,l), +(512,231,l), +(513,246.583,o), +(513,253.667,o), +(513,265,c), +(513,438,o), +(417,540,o), +(280,540,c), +(138,540,o), +(38,438,o), +(38,265,c), +(38,98,o), +(136,-10,o), +(282,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(315,-195,o), +(342,-170,o), +(342,-133,cs), +(342,-97,o), +(315,-72,o), +(280,-72,cs), +(245,-72,o), +(218,-97,o), +(218,-133,cs), +(218,-170,o), +(245,-195,o), +(280,-195,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = e; +}, +{ +pos = (30,0); +ref = dotbelow; +} +); +width = 551; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = e; +}, +{ +pos = (30,0); +ref = dotbelow; +} +); +width = 551; +} +); +unicode = 7865; +}, +{ +color = 10; +glyphname = egrave; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 13:48:17 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (33,0); +ref = gravecomb; +} +); +width = 566; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(385,-10,o), +(466,41,o), +(501,131,c), +(408,168,l), +(383,108.369,o), +(341,84,o), +(282,84,c), +(195,84,o), +(142,140.8,o), +(142,265,c), +(142,398.2,o), +(197,454,o), +(280,454,c), +(358,454,o), +(409,398.2,o), +(409,265,c), +(438,310,l), +(120,310,l), +(120,231,l), +(512,231,l), +(513,246.583,o), +(513,253.667,o), +(513,265,c), +(513,438,o), +(417,540,o), +(280,540,c), +(138,540,o), +(38,438,o), +(38,265,c), +(38,98,o), +(136,-10,o), +(282,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(333,585,l), +(263,725,l), +(137,725,l), +(247,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = e; +}, +{ +pos = (30,0); +ref = gravecomb; +} +); +width = 551; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = e; +}, +{ +pos = (30,0); +ref = grave; +} +); +width = 551; +} +); +unicode = 232; +}, +{ +color = 10; +glyphname = emacron; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (33,0); +ref = macroncomb; +} +); +width = 566; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(385,-10,o), +(466,41,o), +(501,131,c), +(408,168,l), +(383,108.369,o), +(341,84,o), +(282,84,c), +(195,84,o), +(142,140.8,o), +(142,265,c), +(142,398.2,o), +(197,454,o), +(280,454,c), +(358,454,o), +(409,398.2,o), +(409,265,c), +(438,310,l), +(120,310,l), +(120,231,l), +(512,231,l), +(513,246.583,o), +(513,253.667,o), +(513,265,c), +(513,438,o), +(417,540,o), +(280,540,c), +(138,540,o), +(38,438,o), +(38,265,c), +(38,98,o), +(136,-10,o), +(282,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(418,621,l), +(418,705,l), +(142,705,l), +(142,621,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = e; +}, +{ +pos = (30,0); +ref = macroncomb; +} +); +width = 551; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = e; +}, +{ +pos = (30,0); +ref = macron; +} +); +width = 551; +} +); +unicode = 275; +}, +{ +color = 10; +glyphname = eogonek; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 13:38:17 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(291,-28,o), +(265,-59,o), +(265,-103,c), +(265,-149,o), +(302,-185,o), +(374,-185,cs), +(403,-185,o), +(438,-176,o), +(466,-165,c), +(457,-84,l), +(434,-94,o), +(400,-106,o), +(380,-106,c), +(361,-106,o), +(349,-97,o), +(349,-76,c), +(349,-48,o), +(375,-15,o), +(446,42,cs), +(474,65,o), +(495,95,o), +(509,131,c), +(416,168,l), +(391,108,o), +(349,84,o), +(290,84,c), +(203,84,o), +(150,141,o), +(150,265,c), +(150,398,o), +(205,454,o), +(288,454,c), +(366,454,o), +(417,398,o), +(417,265,c), +(446,310,l), +(128,310,l), +(128,231,l), +(520,231,l), +(521,247,o), +(521,254,o), +(521,265,c), +(521,438,o), +(425,540,o), +(288,540,c), +(146,540,o), +(46,438,o), +(46,265,c), +(46,98,o), +(144,-10,o), +(290,-10,c), +(317,-10,o), +(342,-7,o), +(365,0,c), +(366,6,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(398,-190,o), +(434,-183,o), +(464,-170,c), +(455,-75,l), +(435,-87,o), +(409,-96,o), +(390,-96,cs), +(375,-96,o), +(367,-89,o), +(367,-76,cs), +(367,-44,o), +(410,-1,o), +(457,38,cs), +(497,76,o), +(515,106,o), +(524,140,c), +(382,176,l), +(368,133,o), +(334,113,o), +(290,113,cs), +(232,113,o), +(194,148,o), +(184,223,c), +(537,223,l), +(538,265,ls), +(538,434,o), +(433,544,o), +(283,544,cs), +(134,544,o), +(28,433,o), +(28,265,cs), +(28,98,o), +(132,-14,o), +(281,-14,cs), +(292,-14,o), +(303,-13,o), +(314,-13,c), +(280,-43,o), +(256,-78,o), +(256,-111,cs), +(256,-156,o), +(295,-190,o), +(367,-190,cs) +); +}, +{ +closed = 1; +nodes = ( +(198,391,o), +(233,419,o), +(283,419,cs), +(336,419,o), +(370,392,o), +(382,323,c), +(186,323,l) +); +} +); +width = 566; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(395,-185,o), +(430,-176,o), +(458,-165,c), +(449,-84,l), +(426,-94,o), +(392,-106,o), +(372,-106,c), +(352.81,-106,o), +(341,-97,o), +(341,-76,c), +(341,-48,o), +(367,-15,o), +(438,42,cs), +(466,65,o), +(487,95,o), +(501,131,c), +(408,168,l), +(383,108,o), +(341,84,o), +(282,84,c), +(195,84,o), +(142,141,o), +(142,265,c), +(142,398,o), +(197,454,o), +(280,454,c), +(358,454,o), +(409,398,o), +(409,265,c), +(438,310,l), +(120,310,l), +(120,231,l), +(512,231,l), +(513,247,o), +(513,254,o), +(513,265,c), +(513,438,o), +(417,540,o), +(280,540,c), +(138,540,o), +(38,438,o), +(38,265,c), +(38,98,o), +(136,-10,o), +(282,-10,c), +(309,-10,o), +(334,-7,o), +(357,0,c), +(358,6,l), +(283,-28,o), +(257,-59,o), +(257,-103,c), +(257,-149,o), +(294.434,-185,o), +(366,-185,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(395,-185,o), +(430,-176,o), +(458,-165,c), +(449,-84,l), +(426,-94,o), +(392,-106,o), +(372,-106,cs), +(353,-106,o), +(341,-97,o), +(341,-76,cs), +(341,-48,o), +(367,-15,o), +(438,42,cs), +(466,65,o), +(487,95,o), +(501,131,c), +(408,168,l), +(383,108,o), +(341,84,o), +(282,84,cs), +(203,84,o), +(153,131,o), +(143,231,c), +(512,231,l), +(513,265,ls), +(513,438,o), +(417,540,o), +(280,540,cs), +(138,540,o), +(38,438,o), +(38,265,cs), +(38,98,o), +(136,-10,o), +(282,-10,cs), +(300,-10,o), +(318,-9,o), +(334,-6,c), +(277,-35,o), +(257,-64,o), +(257,-103,cs), +(257,-149,o), +(294,-185,o), +(366,-185,cs) +); +}, +{ +closed = 1; +nodes = ( +(156,411,o), +(207,454,o), +(280,454,cs), +(349,454,o), +(396,411,o), +(407,310,c), +(144,310,l) +); +} +); +width = 551; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(283,-28,o), +(257,-59,o), +(257,-103,c), +(257,-149,o), +(294.434,-185,o), +(366,-185,cs), +(395,-185,o), +(430,-176,o), +(458,-165,c), +(449,-84,l), +(426,-94,o), +(392,-106,o), +(372,-106,c), +(352.81,-106,o), +(341,-97,o), +(341,-76,c), +(341,-48,o), +(367,-15,o), +(438,42,cs), +(466,65,o), +(487,95,o), +(501,131,c), +(408,168,l), +(383,108,o), +(341,84,o), +(282,84,c), +(195,84,o), +(142,141,o), +(142,265,c), +(142,398,o), +(197,454,o), +(280,454,c), +(358,454,o), +(409,398,o), +(409,265,c), +(438,310,l), +(120,310,l), +(120,231,l), +(512,231,l), +(513,247,o), +(513,254,o), +(513,265,c), +(513,438,o), +(417,540,o), +(280,540,c), +(138,540,o), +(38,438,o), +(38,265,c), +(38,98,o), +(136,-10,o), +(282,-10,c), +(309,-10,o), +(334,-7,o), +(357,0,c), +(358,6,l) +); +} +); +width = 551; +} +); +unicode = 281; +}, +{ +color = 10; +glyphname = etilde; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (33,0); +ref = tildecomb; +} +); +width = 566; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(385,-10,o), +(466,41,o), +(501,131,c), +(408,168,l), +(383,108.369,o), +(341,84,o), +(282,84,c), +(195,84,o), +(142,140.8,o), +(142,265,c), +(142,398.2,o), +(197,454,o), +(280,454,c), +(358,454,o), +(409,398.2,o), +(409,265,c), +(438,310,l), +(120,310,l), +(120,231,l), +(512,231,l), +(513,246.583,o), +(513,253.667,o), +(513,265,c), +(513,438,o), +(417,540,o), +(280,540,c), +(138,540,o), +(38,438,o), +(38,265,c), +(38,98,o), +(136,-10,o), +(282,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(198,585,l), +(199,624,o), +(208,642,o), +(227,642,c), +(259,642,o), +(279,585,o), +(338,585,c), +(391,585,o), +(424,639,o), +(430,725,c), +(362,725,l), +(361,686,o), +(352,668,o), +(333,668,c), +(302,668,o), +(281,725,o), +(222,725,c), +(169,725,o), +(136,671,o), +(130,585,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = e; +}, +{ +pos = (30,0); +ref = tildecomb; +} +); +width = 551; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = e; +}, +{ +pos = (30,0); +ref = tilde; +} +); +width = 551; +} +); +unicode = 7869; +}, +{ +color = 10; +glyphname = schwa; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +angle = 180; +pos = (566,530); +ref = e; +} +); +width = 566; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (271,0); +}, +{ +name = top; +pos = (271,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(166,540,o), +(85,489,o), +(50,399,c), +(143,362,l), +(168,422,o), +(210,446,o), +(269,446,c), +(356,446,o), +(409,389,o), +(409,265,c), +(409,132,o), +(354,76,o), +(271,76,c), +(193,76,o), +(142,132,o), +(142,265,c), +(113,220,l), +(431,220,l), +(431,299,l), +(39,299,l), +(38,283,o), +(38,276,o), +(38,265,c), +(38,92,o), +(134,-10,o), +(271,-10,c), +(413,-10,o), +(513,92,o), +(513,265,c), +(513,432,o), +(415,540,o), +(269,540,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +angle = 180; +pos = (551,530); +ref = e; +} +); +width = 551; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +angle = 180; +pos = (551,530); +ref = e; +} +); +width = 551; +} +); +unicode = 601; +}, +{ +color = 6; +glyphname = f; +kernLeft = f; +kernRight = f; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(223,0,l), +(223,541,l), +(223,582,o), +(248,603,o), +(294,603,c), +(320,603,o), +(343,598,o), +(367,592,c), +(367,715,l), +(335,724,o), +(304,730,o), +(263,730,c), +(146,730,o), +(74,665,o), +(74,536,c), +(74,0,l) +); +}, +{ +closed = 1; +nodes = ( +(361,407,l), +(361,530,l), +(8,530,l), +(8,407,l) +); +} +); +width = 357; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(185,0,l), +(185,557,l), +(185,606.108,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,666.667,o), +(85,550,c), +(85,0,l) +); +}, +{ +closed = 1; +nodes = ( +(323,443,l), +(323,530,l), +(10,530,l), +(10,443,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,0,l), +(185,557,l), +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l) +); +}, +{ +closed = 1; +nodes = ( +(323,443,l), +(323,530,l), +(10,530,l), +(10,443,l) +); +} +); +width = 343; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(155,0,l), +(155,530,l), +(55,530,l), +(55,0,l) +); +}, +{ +closed = 1; +nodes = ( +(395,0,l), +(495,0,l), +(495,332,l), +(495,460,o), +(420,540,o), +(313,540,c), +(204,540,o), +(122,451,o), +(122,309,c), +(155,309,l), +(155,406,o), +(208,457,o), +(275,457,c), +(342,457,o), +(395,406,o), +(395,309,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,606.108,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,666.667,o), +(85,550,c), +(85,0,l), +(185,0,l), +(185,557,l) +); +}, +{ +closed = 1; +nodes = ( +(323,443,l), +(323,530,l), +(10,530,l), +(10,443,l) +); +} +); +width = 343; +} +); +unicode = 102; +}, +{ +color = 6; +glyphname = g; +kernLeft = o; +kernRight = q; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (287,530); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(419,-190,o), +(534,-95,o), +(534,87,c), +(534,530,l), +(385,530,l), +(385,393,l), +(404,294,l), +(385,177,l), +(385,80,l), +(385,-8,o), +(325,-54,o), +(237,-54,c), +(186,-54,o), +(140,-38,o), +(95,-12,c), +(39,-135,l), +(94,-169,o), +(158,-190,o), +(249,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(341,44,o), +(411,121,o), +(411,255,c), +(411,334,l), +(411,468,o), +(341,544,o), +(234,544,c), +(111,544,o), +(32,450,o), +(32,294,c), +(32,139,o), +(111,44,o), +(234,44,c) +); +}, +{ +closed = 1; +nodes = ( +(226,179,o), +(185,219,o), +(185,294,c), +(185,370,o), +(226,410,o), +(290,410,c), +(354,410,o), +(395,370,o), +(395,294,c), +(395,219,o), +(354,179,o), +(290,179,c) +); +} +); +width = 587; +}, +{ +anchors = ( +{ +name = top; +pos = (280,530); +} +); +background = { +anchors = ( +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(396,-185,o), +(507,-117,o), +(507,48,c), +(507,530,l), +(407,530,l), +(407,432,l), +(422,290,l), +(407,147,l), +(407,53,l), +(407,-57,o), +(338,-95,o), +(271,-95,c), +(207,-95,o), +(169,-73,o), +(145,-25,c), +(52,-64,l), +(83,-136,o), +(156,-185,o), +(267,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(361,40,o), +(431,119,o), +(431,246,c), +(431,334,l), +(431,461,o), +(361,540,o), +(249,540,c), +(126,540,o), +(38,442,o), +(38,290,c), +(38,138,o), +(126,40,o), +(249,40,c) +); +}, +{ +closed = 1; +nodes = ( +(197,128,o), +(142,180.744,o), +(142,290,c), +(142,399.256,o), +(197,452,o), +(277,452,c), +(357,452,o), +(412,399.256,o), +(412,290,c), +(412,180.744,o), +(357,128,o), +(277,128,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(396,-185,o), +(507,-117,o), +(507,48,c), +(507,530,l), +(407,530,l), +(407,432,l), +(422,290,l), +(407,147,l), +(407,53,l), +(407,-57,o), +(338,-95,o), +(271,-95,c), +(207,-95,o), +(169,-73,o), +(145,-25,c), +(52,-64,l), +(83,-136,o), +(156,-185,o), +(267,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(361,40,o), +(431,119,o), +(431,246,c), +(431,334,l), +(431,461,o), +(361,540,o), +(249,540,c), +(126,540,o), +(38,442,o), +(38,290,c), +(38,138,o), +(126,40,o), +(249,40,c) +); +}, +{ +closed = 1; +nodes = ( +(197,128,o), +(142,181,o), +(142,290,c), +(142,399,o), +(197,452,o), +(277,452,c), +(357,452,o), +(412,399,o), +(412,290,c), +(412,181,o), +(357,128,o), +(277,128,c) +); +} +); +width = 572; +}, +{ +anchors = ( +{ +name = top; +pos = (280,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(427,334,l), +(427,461,o), +(357,540,o), +(245,540,c), +(122,540,o), +(34,442,o), +(34,290,c), +(34,138,o), +(122,40,o), +(245,40,c), +(357,40,o), +(427,119,o), +(427,246,c) +); +}, +{ +closed = 1; +nodes = ( +(353,452,o), +(408,399.256,o), +(408,290,c), +(408,180.744,o), +(353,128,o), +(273,128,c), +(193,128,o), +(138,180.744,o), +(138,290,c), +(138,399.256,o), +(193,452,o), +(273,452,c) +); +}, +{ +closed = 1; +nodes = ( +(503,530,l), +(403,530,l), +(403,432,l), +(418,290,l), +(403,147,l), +(403,68,l), +(403,-51,o), +(333,-80,o), +(269,-80,c), +(205,-80,o), +(165,-57.765,o), +(141,-10,c), +(48,-49,l), +(79,-121,o), +(154,-170,o), +(265,-170,c), +(391,-170,o), +(503,-105,o), +(503,43,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(357,452,o), +(412,399.256,o), +(412,290,c), +(412,180.744,o), +(357,128,o), +(277,128,c), +(197,128,o), +(142,180.744,o), +(142,290,c), +(142,399.256,o), +(197,452,o), +(277,452,c) +); +}, +{ +closed = 1; +nodes = ( +(431,334,l), +(431,461,o), +(361,540,o), +(249,540,c), +(126,540,o), +(38,442,o), +(38,290,c), +(38,138,o), +(126,40,o), +(249,40,c), +(361,40,o), +(431,119,o), +(431,246,c) +); +}, +{ +closed = 1; +nodes = ( +(407,-57,o), +(338,-95,o), +(271,-95,c), +(207,-95,o), +(169,-73,o), +(145,-25,c), +(52,-64,l), +(83,-136,o), +(156,-185,o), +(267,-185,c), +(396,-185,o), +(507,-117,o), +(507,48,c), +(507,530,l), +(407,530,l), +(407,432,l), +(422,290,l), +(407,147,l), +(407,53,l) +); +} +); +width = 572; +} +); +unicode = 103; +}, +{ +color = 10; +glyphname = gbreve; +kernLeft = o; +kernRight = q; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = g; +}, +{ +pos = (37,0); +ref = brevecomb; +} +); +width = 587; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(396,-185,o), +(507,-117,o), +(507,48,c), +(507,530,l), +(407,530,l), +(407,432,l), +(422,290,l), +(407,147,l), +(407,53,l), +(407,-57,o), +(338,-95,o), +(271,-95,c), +(207,-95,o), +(169,-73,o), +(145,-25,c), +(52,-64,l), +(83,-136,o), +(156,-185,o), +(267,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(361,40,o), +(431,119,o), +(431,246,c), +(431,334,l), +(431,461,o), +(361,540,o), +(249,540,c), +(126,540,o), +(38,442,o), +(38,290,c), +(38,138,o), +(126,40,o), +(249,40,c) +); +}, +{ +closed = 1; +nodes = ( +(197,128,o), +(142,180.744,o), +(142,290,c), +(142,399.256,o), +(197,452,o), +(277,452,c), +(357,452,o), +(412,399.256,o), +(412,290,c), +(412,180.744,o), +(357,128,o), +(277,128,c) +); +}, +{ +closed = 1; +nodes = ( +(373,585,o), +(418,639,o), +(420,725,c), +(350,725,l), +(349,684,o), +(325,660,o), +(280,660,c), +(235,660,o), +(211,684,o), +(210,725,c), +(140,725,l), +(142,639,o), +(187,585,o), +(280,585,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = g; +}, +{ +pos = (30,0); +ref = brevecomb; +} +); +width = 572; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = g; +}, +{ +pos = (30,0); +ref = breve; +} +); +width = 572; +} +); +unicode = 287; +}, +{ +color = 10; +glyphname = gcaron; +kernLeft = o; +kernRight = q; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = g; +}, +{ +pos = (37,0); +ref = caroncomb; +} +); +width = 587; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(396,-185,o), +(507,-117,o), +(507,48,c), +(507,530,l), +(407,530,l), +(407,432,l), +(422,290,l), +(407,147,l), +(407,53,l), +(407,-57,o), +(338,-95,o), +(271,-95,c), +(207,-95,o), +(169,-73,o), +(145,-25,c), +(52,-64,l), +(83,-136,o), +(156,-185,o), +(267,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(361,40,o), +(431,119,o), +(431,246,c), +(431,334,l), +(431,461,o), +(361,540,o), +(249,540,c), +(126,540,o), +(38,442,o), +(38,290,c), +(38,138,o), +(126,40,o), +(249,40,c) +); +}, +{ +closed = 1; +nodes = ( +(197,128,o), +(142,180.744,o), +(142,290,c), +(142,399.256,o), +(197,452,o), +(277,452,c), +(357,452,o), +(412,399.256,o), +(412,290,c), +(412,180.744,o), +(357,128,o), +(277,128,c) +); +}, +{ +closed = 1; +nodes = ( +(336,585,l), +(436,725,l), +(348,725,l), +(230,585,l) +); +}, +{ +closed = 1; +nodes = ( +(330,585,l), +(212,725,l), +(124,725,l), +(224,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = g; +}, +{ +pos = (30,0); +ref = caroncomb; +} +); +width = 572; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = g; +}, +{ +pos = (30,0); +ref = caron; +} +); +width = 572; +} +); +unicode = 487; +}, +{ +color = 10; +glyphname = gcircumflex; +kernLeft = o; +kernRight = q; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = g; +}, +{ +pos = (37,0); +ref = circumflexcomb; +} +); +width = 587; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(396,-185,o), +(507,-117,o), +(507,48,c), +(507,530,l), +(407,530,l), +(407,432,l), +(422,290,l), +(407,147,l), +(407,53,l), +(407,-57,o), +(338,-95,o), +(271,-95,c), +(207,-95,o), +(169,-73,o), +(145,-25,c), +(52,-64,l), +(83,-136,o), +(156,-185,o), +(267,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(361,40,o), +(431,119,o), +(431,246,c), +(431,334,l), +(431,461,o), +(361,540,o), +(249,540,c), +(126,540,o), +(38,442,o), +(38,290,c), +(38,138,o), +(126,40,o), +(249,40,c) +); +}, +{ +closed = 1; +nodes = ( +(197,128,o), +(142,180.744,o), +(142,290,c), +(142,399.256,o), +(197,452,o), +(277,452,c), +(357,452,o), +(412,399.256,o), +(412,290,c), +(412,180.744,o), +(357,128,o), +(277,128,c) +); +}, +{ +closed = 1; +nodes = ( +(436,585,l), +(336,725,l), +(230,725,l), +(348,585,l) +); +}, +{ +closed = 1; +nodes = ( +(212,585,l), +(330,725,l), +(224,725,l), +(124,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = g; +}, +{ +pos = (30,0); +ref = circumflexcomb; +} +); +width = 572; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = g; +}, +{ +pos = (30,0); +ref = circumflex; +} +); +width = 572; +} +); +unicode = 285; +}, +{ +color = 10; +glyphname = gcommaaccent; +kernLeft = o; +kernRight = q; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = g; +}, +{ +pos = (38,0); +ref = commaaccent.alt; +} +); +width = 587; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(396,-185,o), +(507,-117,o), +(507,48,c), +(507,530,l), +(407,530,l), +(407,432,l), +(422,290,l), +(407,147,l), +(407,53,l), +(407,-57,o), +(338,-95,o), +(271,-95,c), +(207,-95,o), +(169,-73,o), +(145,-25,c), +(52,-64,l), +(83,-136,o), +(156,-185,o), +(267,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(361,40,o), +(431,119,o), +(431,246,c), +(431,334,l), +(431,461,o), +(361,540,o), +(249,540,c), +(126,540,o), +(38,442,o), +(38,290,c), +(38,138,o), +(126,40,o), +(249,40,c) +); +}, +{ +closed = 1; +nodes = ( +(197,128,o), +(142,180.744,o), +(142,290,c), +(142,399.256,o), +(197,452,o), +(277,452,c), +(357,452,o), +(412,399.256,o), +(412,290,c), +(412,180.744,o), +(357,128,o), +(277,128,c) +); +}, +{ +closed = 1; +nodes = ( +(327,602,l), +(327,805,l), +(264,805,l), +(223,602,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = g; +}, +{ +pos = (30,0); +ref = commaaccent.alt; +} +); +width = 572; +} +); +unicode = 291; +}, +{ +color = 10; +glyphname = gdotaccent; +kernLeft = o; +kernRight = q; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = g; +}, +{ +pos = (37,0); +ref = dotaccentcomb; +} +); +width = 587; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(396,-185,o), +(507,-117,o), +(507,48,c), +(507,530,l), +(407,530,l), +(407,432,l), +(422,290,l), +(407,147,l), +(407,53,l), +(407,-57,o), +(338,-95,o), +(271,-95,c), +(207,-95,o), +(169,-73,o), +(145,-25,c), +(52,-64,l), +(83,-136,o), +(156,-185,o), +(267,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(361,40,o), +(431,119,o), +(431,246,c), +(431,334,l), +(431,461,o), +(361,540,o), +(249,540,c), +(126,540,o), +(38,442,o), +(38,290,c), +(38,138,o), +(126,40,o), +(249,40,c) +); +}, +{ +closed = 1; +nodes = ( +(197,128,o), +(142,180.744,o), +(142,290,c), +(142,399.256,o), +(197,452,o), +(277,452,c), +(357,452,o), +(412,399.256,o), +(412,290,c), +(412,180.744,o), +(357,128,o), +(277,128,c) +); +}, +{ +closed = 1; +nodes = ( +(315,602,o), +(342,627,o), +(342,663,cs), +(342,700,o), +(315,725,o), +(280,725,cs), +(245,725,o), +(218,700,o), +(218,663,cs), +(218,627,o), +(245,602,o), +(280,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = g; +}, +{ +pos = (30,0); +ref = dotaccentcomb; +} +); +width = 572; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = g; +}, +{ +pos = (30,0); +ref = dotaccent; +} +); +width = 572; +} +); +unicode = 289; +}, +{ +color = 6; +glyphname = h; +kernLeft = l; +kernRight = n; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (293,0); +}, +{ +name = center; +pos = (147,572); +}, +{ +name = top; +pos = (293,715); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(533,0,l), +(533,334,l), +(533,466,o), +(460,544,o), +(356,544,c), +(245,544,o), +(176,457,o), +(176,304,c), +(202,304,l), +(202,375,o), +(240,412,o), +(293,412,c), +(346,412,o), +(384,375,o), +(384,304,c), +(384,0,l) +); +}, +{ +closed = 1; +nodes = ( +(202,0,l), +(202,715,l), +(53,715,l), +(53,0,l) +); +} +); +width = 586; +}, +{ +anchors = ( +{ +name = bottom; +pos = (287,0); +}, +{ +name = center; +pos = (144,572); +}, +{ +name = top; +pos = (287,715); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (287,0); +}, +{ +name = center; +pos = (144,572); +}, +{ +name = top; +pos = (287,715); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(509,0,l), +(509,332,l), +(509,460,o), +(432,540,o), +(325,540,c), +(216,540,o), +(132,451,o), +(132,309,c), +(165,309,l), +(165,402.723,o), +(220,452,o), +(287,452,c), +(354,452,o), +(409,402.723,o), +(409,309,c), +(409,0,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,715,l), +(65,715,l), +(65,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(509,0,l), +(509,332,l), +(509,460,o), +(432,540,o), +(325,540,c), +(216,540,o), +(132,451,o), +(132,309,c), +(165,309,l), +(165,403,o), +(220,452,o), +(287,452,c), +(354,452,o), +(409,403,o), +(409,309,c), +(409,0,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,715,l), +(65,715,l), +(65,0,l) +); +} +); +width = 574; +}, +{ +anchors = ( +{ +name = bottom; +pos = (291,0); +}, +{ +name = top; +pos = (115,715); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,715,l), +(65,715,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(409,0,l), +(509,0,l), +(509,332,l), +(509,460,o), +(432,540,o), +(325,540,c), +(216,540,o), +(132,451,o), +(132,309,c), +(165,309,l), +(165,402.723,o), +(220,452,o), +(287,452,c), +(354,452,o), +(409,402.723,o), +(409,309,c) +); +} +); +width = 574; +} +); +unicode = 104; +}, +{ +color = 6; +glyphname = hbar; +kernRight = n; +lastChange = "2024-03-21 13:50:10 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(15,653,l), +(15,567,l), +(290,567,l), +(290,653,l) +); +}, +{ +closed = 1; +nodes = ( +(175,0,l), +(175,715,l), +(75,715,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(419,0,l), +(519,0,l), +(519,332,l), +(519,460,o), +(442,540,o), +(335,540,c), +(226,540,o), +(142,451,o), +(142,309,c), +(175,309,l), +(175,403,o), +(230,452,o), +(297,452,c), +(364,452,o), +(419,403,o), +(419,309,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(541,0,l), +(541,334,l), +(541,466,o), +(468,544,o), +(364,544,c), +(253,544,o), +(184,457,o), +(184,304,c), +(210,304,l), +(210,375,o), +(248,412,o), +(301,412,c), +(354,412,o), +(392,375,o), +(392,304,c), +(392,0,l) +); +}, +{ +closed = 1; +nodes = ( +(210,0,l), +(210,715,l), +(61,715,l), +(61,0,l) +); +}, +{ +closed = 1; +nodes = ( +(330,580,l), +(330,675,l), +(10,675,l), +(10,580,l) +); +} +); +width = 594; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(519,0,l), +(519,332,l), +(519,460,o), +(442,540,o), +(335,540,c), +(226,540,o), +(142,451,o), +(142,309,c), +(175,309,l), +(175,403,o), +(230,452,o), +(297,452,c), +(364,452,o), +(419,403,o), +(419,309,c), +(419,0,l) +); +}, +{ +closed = 1; +nodes = ( +(175,0,l), +(175,715,l), +(75,715,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(290,567,l), +(290,653,l), +(15,653,l), +(15,567,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(519,0,l), +(519,332,l), +(519,460,o), +(442,540,o), +(335,540,c), +(226,540,o), +(142,451,o), +(142,309,c), +(175,309,l), +(175,403,o), +(230,452,o), +(297,452,c), +(364,452,o), +(419,403,o), +(419,309,c), +(419,0,l) +); +}, +{ +closed = 1; +nodes = ( +(175,0,l), +(175,715,l), +(75,715,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(290,582,l), +(290,653,l), +(15,653,l), +(15,582,l) +); +} +); +width = 579; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(15,653,l), +(15,567,l), +(290,567,l), +(290,653,l) +); +}, +{ +closed = 1; +nodes = ( +(175,0,l), +(175,715,l), +(75,715,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(419,0,l), +(519,0,l), +(519,332,l), +(519,460,o), +(442,540,o), +(335,540,c), +(226,540,o), +(142,451,o), +(142,309,c), +(175,309,l), +(175,403,o), +(230,452,o), +(297,452,c), +(364,452,o), +(419,403,o), +(419,309,c) +); +} +); +width = 579; +} +); +unicode = 295; +}, +{ +color = 10; +glyphname = hcircumflex; +kernLeft = l; +kernRight = n; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = h; +}, +{ +pos = (43,25); +ref = circumflexcomb.case; +} +); +width = 586; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (287,0); +}, +{ +name = center; +pos = (144,572); +}, +{ +name = top; +pos = (287,715); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(509,0,l), +(509,332,l), +(509,460,o), +(432,540,o), +(325,540,c), +(216,540,o), +(132,451,o), +(132,309,c), +(165,309,l), +(165,402.723,o), +(220,452,o), +(287,452,c), +(354,452,o), +(409,402.723,o), +(409,309,c), +(409,0,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,715,l), +(65,715,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(470,760,l), +(356,870,l), +(222,870,l), +(371,760,l) +); +}, +{ +closed = 1; +nodes = ( +(203,760,l), +(352,870,l), +(218,870,l), +(104,760,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = h; +}, +{ +pos = (37,25); +ref = circumflexcomb.case; +} +); +width = 574; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = h; +}, +{ +pos = (37,25); +ref = circumflexcomb.case; +} +); +width = 574; +} +); +unicode = 293; +}, +{ +color = 10; +glyphname = i; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (127,0); +} +); +layerId = m001; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-122,0); +ref = dotaccentcomb; +} +); +width = 255; +}, +{ +anchors = ( +{ +name = bottom; +pos = (115,0); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (115,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(150,602,o), +(177,627,o), +(177,663,cs), +(177,700,o), +(150,725,o), +(115,725,cs), +(80,725,o), +(53,700,o), +(53,663,cs), +(53,627,o), +(80,602,o), +(115,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-135,0); +ref = dotaccentcomb; +} +); +width = 230; +}, +{ +anchors = ( +{ +name = bottom; +pos = (115,0); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(150,602,o), +(177,627,o), +(177,663,cs), +(177,700,o), +(150,725,o), +(115,725,cs), +(80,725,o), +(53,700,o), +(53,663,cs), +(53,627,o), +(80,602,o), +(115,602,cs) +); +} +); +width = 230; +} +); +unicode = 105; +}, +{ +color = 6; +glyphname = idotless; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 13:39:02 +0000"; +layers = ( +{ +anchors = ( +{ +name = ogonek; +pos = (202,0); +}, +{ +name = top; +pos = (128,530); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(202,0,l), +(202,530,l), +(53,530,l), +(53,0,l) +); +} +); +width = 255; +}, +{ +anchors = ( +{ +name = ogonek; +pos = (165,0); +}, +{ +name = top; +pos = (115,530); +} +); +background = { +anchors = ( +{ +name = top; +pos = (115,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +} +); +width = 230; +} +); +unicode = 305; +}, +{ +color = 10; +glyphname = iacute; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-3,0); +ref = acutecomb; +} +); +width = 255; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (115,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(148,585,l), +(258,725,l), +(132,725,l), +(62,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-45,0); +ref = acutecomb; +} +); +width = 230; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-45,0); +ref = acute; +} +); +width = 230; +} +); +unicode = 237; +}, +{ +color = 10; +glyphname = ibreve; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-122,0); +ref = brevecomb; +} +); +width = 255; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (115,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(208,585,o), +(253,639,o), +(255,725,c), +(185,725,l), +(184,684,o), +(160,660,o), +(115,660,c), +(70,660,o), +(46,684,o), +(45,725,c), +(-25,725,l), +(-23,639,o), +(22,585,o), +(115,585,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-135,0); +ref = brevecomb; +} +); +width = 230; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-135,0); +ref = breve; +} +); +width = 230; +} +); +unicode = 301; +}, +{ +color = 10; +glyphname = icircumflex; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-122,0); +ref = circumflexcomb; +} +); +width = 255; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (115,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(271,585,l), +(171,725,l), +(65,725,l), +(183,585,l) +); +}, +{ +closed = 1; +nodes = ( +(47,585,l), +(165,725,l), +(59,725,l), +(-41,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-135,0); +ref = circumflexcomb; +} +); +width = 230; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-135,0); +ref = circumflex; +} +); +width = 230; +} +); +unicode = 238; +}, +{ +color = 10; +glyphname = idieresis; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-122,0); +ref = dieresiscomb; +} +); +width = 255; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (115,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(238,602,o), +(263,625,o), +(263,658,cs), +(263,692,o), +(238,715,o), +(206,715,cs), +(174,715,o), +(149,692,o), +(149,658,cs), +(149,625,o), +(174,602,o), +(206,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(56,602,o), +(81,625,o), +(81,658,cs), +(81,692,o), +(56,715,o), +(24,715,cs), +(-8,715,o), +(-33,692,o), +(-33,658,cs), +(-33,625,o), +(-8,602,o), +(24,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-135,0); +ref = dieresiscomb; +} +); +width = 230; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-135,0); +ref = dieresis; +} +); +width = 230; +} +); +unicode = 239; +}, +{ +color = 10; +glyphname = idotaccent; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-135,0); +ref = dotaccentcomb; +} +); +width = 230; +}, +{ +layerId = m001; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-122,0); +ref = dotaccentcomb; +} +); +width = 255; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +width = 600; +} +); +}, +{ +color = 10; +glyphname = idotbelow; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = i; +}, +{ +pos = (-123,0); +ref = dotbelow; +} +); +width = 255; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (115,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(150,602,o), +(177,627,o), +(177,663,cs), +(177,700,o), +(150,725,o), +(115,725,cs), +(80,725,o), +(53,700,o), +(53,663,cs), +(53,627,o), +(80,602,o), +(115,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(150,-195,o), +(177,-170,o), +(177,-133,cs), +(177,-97,o), +(150,-72,o), +(115,-72,cs), +(80,-72,o), +(53,-97,o), +(53,-133,cs), +(53,-170,o), +(80,-195,o), +(115,-195,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = i; +}, +{ +pos = (-135,0); +ref = dotbelow; +} +); +width = 230; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = i; +}, +{ +pos = (-135,0); +ref = dotbelow; +} +); +width = 230; +} +); +unicode = 7883; +}, +{ +color = 10; +glyphname = igrave; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 13:48:17 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-122,0); +ref = gravecomb; +} +); +width = 255; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (115,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(168,585,l), +(98,725,l), +(-28,725,l), +(82,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-135,0); +ref = gravecomb; +} +); +width = 230; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-135,0); +ref = grave; +} +); +width = 230; +} +); +unicode = 236; +}, +{ +color = 10; +glyphname = imacron; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-122,0); +ref = macroncomb; +} +); +width = 255; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (115,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(253,621,l), +(253,705,l), +(-23,705,l), +(-23,621,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-135,0); +ref = macroncomb; +} +); +width = 230; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-135,0); +ref = macron; +} +); +width = 230; +} +); +unicode = 299; +}, +{ +color = 10; +glyphname = iogonek; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 13:39:02 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-122,0); +ref = dotaccentcomb; +}, +{ +pos = (-137,0); +ref = ogonekcomb; +} +); +width = 255; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(102,-185,o), +(137,-176,o), +(165,-165,c), +(156,-84,l), +(133,-94,o), +(99,-106,o), +(79,-106,c), +(66,-106,o), +(58,-101,o), +(58,-89,c), +(58,-65,o), +(95,-34,o), +(165,0,c), +(65,0,l), +(-3,-37,o), +(-26,-69,o), +(-26,-111,c), +(-26,-153,o), +(8,-185,o), +(73,-185,cs) +); +}, +{ +closed = 1; +nodes = ( +(150,602,o), +(177,627,o), +(177,663,cs), +(177,700,o), +(150,725,o), +(115,725,cs), +(80,725,o), +(53,700,o), +(53,663,cs), +(53,627,o), +(80,602,o), +(115,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-135,0); +ref = dotaccentcomb; +}, +{ +pos = (-139,0); +ref = ogonekcomb; +} +); +width = 230; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(-3,-37,o), +(-26,-69,o), +(-26,-111,c), +(-26,-153,o), +(8,-185,o), +(73,-185,cs), +(102,-185,o), +(137,-176,o), +(165,-165,c), +(156,-84,l), +(133,-94,o), +(99,-106,o), +(79,-106,c), +(66,-106,o), +(58,-101,o), +(58,-89,c), +(58,-65,o), +(95,-34,o), +(165,0,c), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(150,602,o), +(177,627,o), +(177,663,cs), +(177,700,o), +(150,725,o), +(115,725,cs), +(80,725,o), +(53,700,o), +(53,663,cs), +(53,627,o), +(80,602,o), +(115,602,cs) +); +} +); +width = 230; +} +); +unicode = 303; +}, +{ +color = 10; +glyphname = itilde; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-122,0); +ref = tildecomb; +} +); +width = 255; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (115,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(33,585,l), +(34,624,o), +(43,642,o), +(62,642,c), +(94,642,o), +(114,585,o), +(173,585,c), +(226,585,o), +(259,639,o), +(265,725,c), +(197,725,l), +(196,686,o), +(187,668,o), +(168,668,c), +(137,668,o), +(116,725,o), +(57,725,c), +(4,725,o), +(-29,671,o), +(-35,585,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-135,0); +ref = tildecomb; +} +); +width = 230; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-135,0); +ref = tilde; +} +); +width = 230; +} +); +unicode = 297; +}, +{ +color = 10; +glyphname = ij; +kernLeft = n; +kernRight = q; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = i; +}, +{ +pos = (255,0); +ref = j; +} +); +width = 510; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(337,-185,o), +(395,-123,o), +(395,-10,c), +(395,530,l), +(295,530,l), +(295,-7,l), +(295,-70,o), +(270,-94,o), +(213,-94,c), +(196,-94,o), +(175,-90,o), +(157,-83,c), +(157,-175,l), +(180,-182,o), +(203,-185,o), +(231,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(150,602,o), +(177,627,o), +(177,663,cs), +(177,700,o), +(150,725,o), +(115,725,cs), +(80,725,o), +(53,700,o), +(53,663,cs), +(53,627,o), +(80,602,o), +(115,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(380,602,o), +(407,627,o), +(407,663,cs), +(407,700,o), +(380,725,o), +(345,725,cs), +(310,725,o), +(283,700,o), +(283,663,cs), +(283,627,o), +(310,602,o), +(345,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = i; +}, +{ +pos = (230,0); +ref = j; +} +); +width = 460; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(150,602,o), +(177,627,o), +(177,663,cs), +(177,700,o), +(150,725,o), +(115,725,cs), +(80,725,o), +(53,700,o), +(53,663,cs), +(53,627,o), +(80,602,o), +(115,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(380,602,o), +(407,627,o), +(407,663,cs), +(407,700,o), +(380,725,o), +(345,725,cs), +(310,725,o), +(283,700,o), +(283,663,cs), +(283,627,o), +(310,602,o), +(345,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(295,-70,o), +(270,-94,o), +(213,-94,c), +(196,-94,o), +(175,-90,o), +(157,-83,c), +(157,-175,l), +(180,-182,o), +(203,-185,o), +(231,-185,c), +(337,-185,o), +(395,-123,o), +(395,-10,c), +(395,530,l), +(295,530,l), +(295,-7,l) +); +} +); +width = 460; +} +); +unicode = 307; +}, +{ +color = 10; +glyphname = j; +kernLeft = j; +kernRight = q; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-122,0); +ref = dotaccentcomb; +} +); +width = 255; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,-185,o), +(165,-123,o), +(165,-10,c), +(165,530,l), +(65,530,l), +(65,-7,l), +(65,-70,o), +(40,-94,o), +(-17,-94,c), +(-34,-94,o), +(-55,-90,o), +(-73,-83,c), +(-73,-175,l), +(-50,-182,o), +(-27,-185,o), +(1,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(150,602,o), +(177,627,o), +(177,663,cs), +(177,700,o), +(150,725,o), +(115,725,cs), +(80,725,o), +(53,700,o), +(53,663,cs), +(53,627,o), +(80,602,o), +(115,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-135,0); +ref = dotaccentcomb; +} +); +width = 230; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(160,530,l), +(60,530,l), +(60,0,l) +); +}, +{ +closed = 1; +nodes = ( +(523,432,o), +(435,540,o), +(314,540,c), +(206,540,o), +(127,451,o), +(127,309,c), +(160,309,l), +(160,409.277,o), +(213,462,o), +(280,462,c), +(368,462,o), +(419,403,o), +(419,265,c), +(419,127,o), +(368,68,o), +(280,68,c), +(213,68,o), +(160,121,o), +(160,221,c), +(127,221,l), +(127,79,o), +(206,-10,o), +(314,-10,c), +(435,-10,o), +(523,98,o), +(523,265,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(150,602,o), +(177,627,o), +(177,663,cs), +(177,700,o), +(150,725,o), +(115,725,cs), +(80,725,o), +(53,700,o), +(53,663,cs), +(53,627,o), +(80,602,o), +(115,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(65,-70,o), +(40,-94,o), +(-17,-94,c), +(-34,-94,o), +(-55,-90,o), +(-73,-83,c), +(-73,-175,l), +(-50,-182,o), +(-27,-185,o), +(1,-185,c), +(107,-185,o), +(165,-123,o), +(165,-10,c), +(165,530,l), +(65,530,l), +(65,-7,l) +); +} +); +width = 230; +} +); +unicode = 106; +}, +{ +color = 6; +glyphname = jdotless; +kernLeft = j; +kernRight = q; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (128,530); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(131,-190,o), +(202,-125,o), +(202,4,c), +(202,530,l), +(53,530,l), +(53,9,l), +(53,-33,o), +(29,-54,o), +(-17,-54,c), +(-40,-54,o), +(-60,-49,o), +(-80,-42,c), +(-80,-175,l), +(-52,-184,o), +(-24,-190,o), +(14,-190,c) +); +} +); +width = 255; +}, +{ +anchors = ( +{ +name = top; +pos = (115,530); +} +); +background = { +anchors = ( +{ +name = top; +pos = (115,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(107,-185,o), +(165,-123,o), +(165,-10,c), +(165,530,l), +(65,530,l), +(65,-7,l), +(65,-70,o), +(40,-94,o), +(-17,-94,c), +(-34,-94,o), +(-55,-90,o), +(-73,-83,c), +(-73,-175,l), +(-50,-182,o), +(-27,-185,o), +(1,-185,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(107,-185,o), +(165,-123,o), +(165,-10,c), +(165,530,l), +(65,530,l), +(65,-7,l), +(65,-70,o), +(40,-94,o), +(-17,-94,c), +(-34,-94,o), +(-55,-90,o), +(-73,-83,c), +(-73,-175,l), +(-50,-182,o), +(-27,-185,o), +(1,-185,c) +); +} +); +width = 230; +} +); +unicode = 567; +}, +{ +color = 10; +glyphname = jcircumflex; +kernLeft = j; +kernRight = q; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-122,0); +ref = circumflexcomb; +} +); +width = 255; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (115,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(107,-185,o), +(165,-123,o), +(165,-10,c), +(165,530,l), +(65,530,l), +(65,-7,l), +(65,-70,o), +(40,-94,o), +(-17,-94,c), +(-34,-94,o), +(-55,-90,o), +(-73,-83,c), +(-73,-175,l), +(-50,-182,o), +(-27,-185,o), +(1,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(271,585,l), +(171,725,l), +(65,725,l), +(183,585,l) +); +}, +{ +closed = 1; +nodes = ( +(47,585,l), +(165,725,l), +(59,725,l), +(-41,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-135,0); +ref = circumflexcomb; +} +); +width = 230; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-135,0); +ref = circumflex; +} +); +width = 230; +} +); +unicode = 309; +}, +{ +color = 6; +glyphname = k; +kernLeft = l; +kernRight = x; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (287,0); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(533,530,l), +(357,530,l), +(191,324,l), +(191,142,l) +); +}, +{ +closed = 1; +nodes = ( +(202,0,l), +(202,715,l), +(53,715,l), +(53,0,l) +); +}, +{ +closed = 1; +nodes = ( +(547,0,l), +(310,343,l), +(219,238,l), +(374,0,l) +); +} +); +width = 547; +}, +{ +anchors = ( +{ +name = bottom; +pos = (276,0); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (276,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(491,530,l), +(373,530,l), +(158,265,l), +(158,139,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,715,l), +(65,715,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(507,0,l), +(283,310,l), +(218,238,l), +(385,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(491,530,l), +(373,530,l), +(158,265,l), +(158,139,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,715,l), +(65,715,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(507,0,l), +(283,310,l), +(218,238,l), +(385,0,l) +); +} +); +width = 515; +}, +{ +anchors = ( +{ +name = bottom; +pos = (276,0); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(385,0,l), +(507,0,l), +(283,310,l), +(218,238,l) +); +}, +{ +closed = 1; +nodes = ( +(491,530,l), +(373,530,l), +(158,265,l), +(158,139,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,715,l), +(65,715,l), +(65,0,l) +); +} +); +width = 515; +} +); +unicode = 107; +}, +{ +color = 10; +glyphname = kcommaaccent; +kernLeft = l; +kernRight = x; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = k; +}, +{ +pos = (143,0); +ref = commaaccentcomb; +} +); +width = 547; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (276,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(491,530,l), +(373,530,l), +(158,265,l), +(158,139,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,715,l), +(65,715,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(507,0,l), +(283,310,l), +(218,238,l), +(385,0,l) +); +}, +{ +closed = 1; +nodes = ( +(292,-275,l), +(333,-72,l), +(229,-72,l), +(229,-275,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = k; +}, +{ +pos = (135,0); +ref = commaaccentcomb; +} +); +width = 515; +} +); +unicode = 311; +}, +{ +color = 6; +glyphname = kra; +kernLeft = n; +kernRight = x; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(533,530,l), +(357,530,l), +(191,324,l), +(191,142,l) +); +}, +{ +closed = 1; +nodes = ( +(202,0,l), +(202,530,l), +(53,530,l), +(53,0,l) +); +}, +{ +closed = 1; +nodes = ( +(547,0,l), +(310,343,l), +(219,238,l), +(374,0,l) +); +} +); +width = 547; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(491,530,l), +(373,530,l), +(158,265,l), +(158,139,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(507,0,l), +(283,310,l), +(218,238,l), +(385,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(491,530,l), +(373,530,l), +(158,265,l), +(158,139,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(507,0,l), +(283,310,l), +(218,238,l), +(385,0,l) +); +} +); +width = 515; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(385,0,l), +(507,0,l), +(283,310,l), +(218,238,l) +); +}, +{ +closed = 1; +nodes = ( +(491,530,l), +(373,530,l), +(158,265,l), +(158,139,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +} +); +width = 515; +} +); +unicode = 312; +}, +{ +color = 6; +glyphname = l; +kernLeft = l; +kernRight = l; +lastChange = "2024-03-22 12:20:02 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (128,0); +}, +{ +name = center; +pos = (128,265); +}, +{ +name = top; +pos = (128,715); +}, +{ +name = topright; +pos = (265,715); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(202,0,l), +(202,715,l), +(53,715,l), +(53,0,l) +); +} +); +width = 255; +}, +{ +anchors = ( +{ +name = bottom; +pos = (115,0); +}, +{ +name = center; +pos = (115,265); +}, +{ +name = top; +pos = (115,715); +}, +{ +name = topright; +pos = (327,715); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (115,0); +}, +{ +name = top; +pos = (115,715); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,715,l), +(65,715,l), +(65,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,715,l), +(65,715,l), +(65,0,l) +); +} +); +width = 230; +}, +{ +anchors = ( +{ +name = bottom; +pos = (115,0); +}, +{ +name = top; +pos = (115,715); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,715,l), +(65,715,l), +(65,0,l) +); +} +); +width = 230; +} +); +unicode = 108; +}, +{ +color = 10; +glyphname = lacute; +kernLeft = l; +kernRight = l; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = l; +}, +{ +pos = (-122,25); +ref = acutecomb.case; +} +); +width = 255; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (115,0); +}, +{ +name = top; +pos = (115,715); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,715,l), +(65,715,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(148,770,l), +(258,910,l), +(132,910,l), +(62,770,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = l; +}, +{ +pos = (-135,25); +ref = acutecomb.case; +} +); +width = 230; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = l; +}, +{ +pos = (-45,185); +ref = acute; +} +); +width = 230; +} +); +unicode = 314; +}, +{ +color = 10; +glyphname = lcaron; +kernLeft = l; +kernRight = lcaron; +lastChange = "2024-03-22 12:23:18 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = l; +}, +{ +pos = (178,0); +ref = caroncomb.alt; +} +); +width = 255; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,715,l), +(65,715,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(280,442,l), +(324,715,l), +(220,715,l), +(220,442,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = l; +}, +{ +pos = (136,0); +ref = caroncomb.alt; +} +); +width = 230; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(220,442,l), +(280,442,l), +(324,715,l), +(220,715,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,715,l), +(65,715,l), +(65,0,l) +); +} +); +width = 294; +} +); +unicode = 318; +}, +{ +color = 10; +glyphname = lcommaaccent; +kernLeft = l; +kernRight = l; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = l; +}, +{ +pos = (-16,0); +ref = commaaccentcomb; +} +); +width = 255; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (115,0); +}, +{ +name = top; +pos = (115,715); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,715,l), +(65,715,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(131,-275,l), +(172,-72,l), +(68,-72,l), +(68,-275,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = l; +}, +{ +pos = (-26,0); +ref = commaaccentcomb; +} +); +width = 230; +} +); +unicode = 316; +}, +{ +color = 10; +glyphname = ldot; +kernLeft = l; +lastChange = "2024-03-21 13:51:13 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +alignment = -1; +ref = l; +}, +{ +alignment = -1; +pos = (210,0); +ref = periodcentered.loclCAT; +} +); +width = 424; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,715,l), +(65,715,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(328,231,o), +(355,259,o), +(355,297,cs), +(355,336,o), +(328,364,o), +(290,364,cs), +(252,364,o), +(225,336,o), +(225,297,cs), +(225,259,o), +(252,231,o), +(290,231,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +alignment = -1; +ref = l; +}, +{ +alignment = -1; +pos = (183,0); +ref = periodcentered.loclCAT; +} +); +width = 358; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,715,l), +(65,715,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(328,231,o), +(355,259,o), +(355,297,cs), +(355,336,o), +(328,364,o), +(290,364,cs), +(252,364,o), +(225,336,o), +(225,297,cs), +(225,259,o), +(252,231,o), +(290,231,cs) +); +} +); +width = 355; +} +); +unicode = 320; +}, +{ +color = 6; +glyphname = lslash; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(210,0,l), +(210,715,l), +(61,715,l), +(61,0,l) +); +}, +{ +closed = 1; +nodes = ( +(267,343,l), +(267,467,l), +(10,336,l), +(10,212,l) +); +} +); +width = 277; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,715,l), +(80,715,l), +(80,0,l) +); +}, +{ +closed = 1; +nodes = ( +(255,380,l), +(255,481,l), +(20,353,l), +(20,252,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,715,l), +(80,715,l), +(80,0,l) +); +}, +{ +closed = 1; +nodes = ( +(255,380,l), +(255,481,l), +(20,353,l), +(20,252,l) +); +} +); +width = 255; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(20,252,l), +(255,380,l), +(255,481,l), +(20,353,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,715,l), +(80,715,l), +(80,0,l) +); +} +); +width = 255; +} +); +unicode = 322; +}, +{ +color = 6; +glyphname = m; +kernLeft = n; +kernRight = n; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(820,0,l), +(820,336,l), +(820,467,o), +(749,544,o), +(651,544,c), +(539,544,o), +(468,458,o), +(468,306,c), +(511,306,l), +(511,376,o), +(544,412,o), +(591,412,c), +(638,412,o), +(671,376,o), +(671,306,c), +(671,0,l) +); +}, +{ +closed = 1; +nodes = ( +(202,0,l), +(202,530,l), +(53,530,l), +(53,0,l) +); +}, +{ +closed = 1; +nodes = ( +(511,0,l), +(511,336,l), +(511,467,o), +(443,544,o), +(346,544,c), +(241,544,o), +(176,458,o), +(176,306,c), +(202,306,l), +(202,376,o), +(235,412,o), +(282,412,c), +(330,412,o), +(362,376,o), +(362,306,c), +(362,0,l) +); +} +); +width = 873; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(793,0,l), +(793,352,l), +(793,468,o), +(722,540,o), +(624,540,c), +(523,540,o), +(446,459,o), +(446,329,c), +(479,329,l), +(479,409.719,o), +(527,452,o), +(586,452,c), +(645,452,o), +(693,409.719,o), +(693,329,c), +(693,0,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(479,0,l), +(479,352,l), +(479,467.692,o), +(408.277,540,o), +(310,540,c), +(209.472,540,o), +(132,458.706,o), +(132,329,c), +(165,329,l), +(165,409.615,o), +(213.238,452,o), +(272,452,c), +(330.762,452,o), +(379,409.615,o), +(379,329,c), +(379,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(793,0,l), +(793,352,l), +(793,468,o), +(722,540,o), +(624,540,c), +(523,540,o), +(446,459,o), +(446,329,c), +(479,329,l), +(479,410,o), +(527,452,o), +(586,452,c), +(645,452,o), +(693,410,o), +(693,329,c), +(693,0,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(479,0,l), +(479,352,l), +(479,468,o), +(408,540,o), +(310,540,c), +(209,540,o), +(132,459,o), +(132,329,c), +(165,329,l), +(165,410,o), +(213,452,o), +(272,452,c), +(331,452,o), +(379,410,o), +(379,329,c), +(379,0,l) +); +} +); +width = 858; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(155,0,l), +(155,530,l), +(55,530,l), +(55,0,l) +); +}, +{ +closed = 1; +nodes = ( +(399,0,l), +(499,0,l), +(499,332,l), +(499,460,o), +(422,540,o), +(315,540,c), +(206,540,o), +(122,451,o), +(122,309,c), +(155,309,l), +(155,406,o), +(210,457,o), +(277,457,c), +(344,457,o), +(399,406,o), +(399,309,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(379,0,l), +(479,0,l), +(479,352,l), +(479,467.692,o), +(408.277,540,o), +(310,540,c), +(209.472,540,o), +(132,458.706,o), +(132,329,c), +(165,329,l), +(165,409.615,o), +(213.238,452,o), +(272,452,c), +(330.762,452,o), +(379,409.615,o), +(379,329,c) +); +}, +{ +closed = 1; +nodes = ( +(693,0,l), +(793,0,l), +(793,352,l), +(793,468,o), +(722,540,o), +(624,540,c), +(523,540,o), +(446,459,o), +(446,329,c), +(479,329,l), +(479,409.719,o), +(527,452,o), +(586,452,c), +(645,452,o), +(693,409.719,o), +(693,329,c) +); +} +); +width = 858; +} +); +unicode = 109; +}, +{ +color = 6; +glyphname = n; +kernLeft = n; +kernRight = n; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (293,0); +}, +{ +name = top; +pos = (293,530); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(533,0,l), +(533,334,l), +(533,466,o), +(460,544,o), +(356,544,c), +(245,544,o), +(176,457,o), +(176,304,c), +(202,304,l), +(202,375,o), +(240,412,o), +(293,412,c), +(346,412,o), +(384,375,o), +(384,304,c), +(384,0,l) +); +}, +{ +closed = 1; +nodes = ( +(202,0,l), +(202,530,l), +(53,530,l), +(53,0,l) +); +} +); +width = 586; +}, +{ +anchors = ( +{ +name = bottom; +pos = (291,0); +}, +{ +name = top; +pos = (291,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (291,0); +}, +{ +name = top; +pos = (291,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(509,0,l), +(509,332,l), +(509,460,o), +(432,540,o), +(325,540,c), +(216,540,o), +(132,451,o), +(132,309,c), +(165,309,l), +(165,402.723,o), +(220,452,o), +(287,452,c), +(354,452,o), +(409,402.723,o), +(409,309,c), +(409,0,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(509,0,l), +(509,332,l), +(509,460,o), +(432,540,o), +(325,540,c), +(216,540,o), +(132,451,o), +(132,309,c), +(165,309,l), +(165,403,o), +(220,452,o), +(287,452,c), +(354,452,o), +(409,403,o), +(409,309,c), +(409,0,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +} +); +width = 574; +}, +{ +anchors = ( +{ +name = bottom; +pos = (291,0); +}, +{ +name = top; +pos = (291,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(409,0,l), +(509,0,l), +(509,332,l), +(509,460,o), +(432,540,o), +(325,540,c), +(216,540,o), +(132,451,o), +(132,309,c), +(165,309,l), +(165,402.723,o), +(220,452,o), +(287,452,c), +(354,452,o), +(409,402.723,o), +(409,309,c) +); +} +); +width = 574; +} +); +unicode = 110; +}, +{ +color = 10; +glyphname = nacute; +kernLeft = n; +kernRight = n; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = n; +}, +{ +pos = (162,0); +ref = acutecomb; +} +); +width = 586; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (291,0); +}, +{ +name = top; +pos = (291,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(509,0,l), +(509,332,l), +(509,460,o), +(432,540,o), +(325,540,c), +(216,540,o), +(132,451,o), +(132,309,c), +(165,309,l), +(165,402.723,o), +(220,452,o), +(287,452,c), +(354,452,o), +(409,402.723,o), +(409,309,c), +(409,0,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(324,585,l), +(434,725,l), +(308,725,l), +(238,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = n; +}, +{ +pos = (131,0); +ref = acutecomb; +} +); +width = 574; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = n; +}, +{ +pos = (131,0); +ref = acute; +} +); +width = 574; +} +); +unicode = 324; +}, +{ +color = 10; +glyphname = napostrophe; +kernRight = n; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +alignment = -1; +ref = quoteright; +}, +{ +alignment = -1; +pos = (200,0); +ref = n; +} +); +width = 786; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (465,0); +}, +{ +name = top; +pos = (465,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(114,417,l), +(158,690,l), +(44,690,l), +(44,417,l) +); +}, +{ +closed = 1; +nodes = ( +(683,0,l), +(683,332,l), +(683,460,o), +(606,540,o), +(499,540,c), +(390,540,o), +(306,451,o), +(306,309,c), +(339,309,l), +(339,403,o), +(394,452,o), +(461,452,c), +(528,452,o), +(583,403,o), +(583,309,c), +(583,0,l) +); +}, +{ +closed = 1; +nodes = ( +(339,0,l), +(339,530,l), +(239,530,l), +(239,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = quoteright; +}, +{ +pos = (174,0); +ref = n; +} +); +width = 738; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = quoteright; +}, +{ +pos = (174,0); +ref = n; +} +); +width = 738; +} +); +unicode = 329; +}, +{ +color = 10; +glyphname = ncaron; +kernLeft = n; +kernRight = n; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = n; +}, +{ +pos = (43,0); +ref = caroncomb; +} +); +width = 586; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (291,0); +}, +{ +name = top; +pos = (291,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(509,0,l), +(509,332,l), +(509,460,o), +(432,540,o), +(325,540,c), +(216,540,o), +(132,451,o), +(132,309,c), +(165,309,l), +(165,402.723,o), +(220,452,o), +(287,452,c), +(354,452,o), +(409,402.723,o), +(409,309,c), +(409,0,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(347,585,l), +(447,725,l), +(359,725,l), +(241,585,l) +); +}, +{ +closed = 1; +nodes = ( +(341,585,l), +(223,725,l), +(135,725,l), +(235,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = n; +}, +{ +pos = (41,0); +ref = caroncomb; +} +); +width = 574; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = n; +}, +{ +pos = (41,0); +ref = caron; +} +); +width = 574; +} +); +unicode = 328; +}, +{ +color = 10; +glyphname = ncommaaccent; +kernLeft = n; +kernRight = n; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = n; +}, +{ +pos = (149,0); +ref = commaaccentcomb; +} +); +width = 586; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (291,0); +}, +{ +name = top; +pos = (291,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(509,0,l), +(509,332,l), +(509,460,o), +(432,540,o), +(325,540,c), +(216,540,o), +(132,451,o), +(132,309,c), +(165,309,l), +(165,402.723,o), +(220,452,o), +(287,452,c), +(354,452,o), +(409,402.723,o), +(409,309,c), +(409,0,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(307,-275,l), +(348,-72,l), +(244,-72,l), +(244,-275,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = n; +}, +{ +pos = (150,0); +ref = commaaccentcomb; +} +); +width = 574; +} +); +unicode = 326; +}, +{ +color = 6; +glyphname = nhookleft; +kernLeft = j; +kernRight = n; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(533,0,l), +(533,334,l), +(533,466,o), +(460,544,o), +(356,544,c), +(245,544,o), +(176,457,o), +(176,304,c), +(202,304,l), +(202,375,o), +(240,412,o), +(293,412,c), +(346,412,o), +(384,375,o), +(384,304,c), +(384,0,l) +); +}, +{ +closed = 1; +nodes = ( +(131,-190,o), +(202,-125,o), +(202,4,c), +(202,530,l), +(53,530,l), +(53,9,l), +(53,-33,o), +(29,-54,o), +(-17,-54,c), +(-40,-54,o), +(-60,-49,o), +(-80,-42,c), +(-80,-175,l), +(-52,-184,o), +(-24,-190,o), +(14,-190,c) +); +} +); +width = 586; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(509,0,l), +(509,332,l), +(509,460,o), +(432,540,o), +(325,540,c), +(216,540,o), +(132,451,o), +(132,309,c), +(165,309,l), +(165,403,o), +(220,452,o), +(287,452,c), +(354,452,o), +(409,403,o), +(409,309,c), +(409,0,l) +); +}, +{ +closed = 1; +nodes = ( +(107,-185,o), +(165,-123,o), +(165,-10,c), +(165,530,l), +(65,530,l), +(65,-7,l), +(65,-70,o), +(40,-94,o), +(-17,-94,c), +(-34,-94,o), +(-55,-90,o), +(-73,-83,c), +(-73,-175,l), +(-50,-182,o), +(-27,-185,o), +(1,-185,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(509,0,l), +(509,332,l), +(509,460,o), +(432,540,o), +(325,540,c), +(216,540,o), +(132,451,o), +(132,309,c), +(165,309,l), +(165,403,o), +(220,452,o), +(287,452,c), +(354,452,o), +(409,403,o), +(409,309,c), +(409,0,l) +); +}, +{ +closed = 1; +nodes = ( +(107,-185,o), +(165,-123,o), +(165,-10,c), +(165,530,l), +(65,530,l), +(65,-7,l), +(65,-70,o), +(40,-94,o), +(-17,-94,c), +(-34,-94,o), +(-55,-90,o), +(-73,-83,c), +(-73,-175,l), +(-50,-182,o), +(-27,-185,o), +(1,-185,c) +); +} +); +width = 574; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,530,l), +(65,530,l), +(65,-7,l), +(65,-70,o), +(40,-94,o), +(-17,-94,c), +(-34,-94,o), +(-55,-90,o), +(-73,-83,c), +(-73,-175,l), +(-50,-182,o), +(-27,-185,o), +(1,-185,c), +(107,-185,o), +(165,-123,o), +(165,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(409,0,l), +(509,0,l), +(509,332,l), +(509,460,o), +(432,540,o), +(325,540,c), +(216,540,o), +(132,451,o), +(132,309,c), +(165,309,l), +(165,403,o), +(220,452,o), +(287,452,c), +(354,452,o), +(409,403,o), +(409,309,c) +); +} +); +width = 574; +} +); +unicode = 626; +}, +{ +color = 10; +glyphname = ntilde; +kernLeft = n; +kernRight = n; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = n; +}, +{ +pos = (43,0); +ref = tildecomb; +} +); +width = 586; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (291,0); +}, +{ +name = top; +pos = (291,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(509,0,l), +(509,332,l), +(509,460,o), +(432,540,o), +(325,540,c), +(216,540,o), +(132,451,o), +(132,309,c), +(165,309,l), +(165,402.723,o), +(220,452,o), +(287,452,c), +(354,452,o), +(409,402.723,o), +(409,309,c), +(409,0,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(209,585,l), +(210,624,o), +(219,642,o), +(238,642,c), +(270,642,o), +(290,585,o), +(349,585,c), +(402,585,o), +(435,639,o), +(441,725,c), +(373,725,l), +(372,686,o), +(363,668,o), +(344,668,c), +(313,668,o), +(292,725,o), +(233,725,c), +(180,725,o), +(147,671,o), +(141,585,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = n; +}, +{ +pos = (41,0); +ref = tildecomb; +} +); +width = 574; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = n; +}, +{ +pos = (41,0); +ref = tilde; +} +); +width = 574; +} +); +unicode = 241; +}, +{ +color = 6; +glyphname = eng; +kernLeft = n; +kernRight = n; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(504,332,l), +(504,460,o), +(427,540,o), +(320,540,c), +(211,540,o), +(127,451,o), +(127,309,c), +(160,309,l), +(160,403,o), +(215,452,o), +(282,452,c), +(349,452,o), +(404,403,o), +(404,309,c), +(404,-7,l), +(404,-70,o), +(379,-94,o), +(322,-94,c), +(305,-94,o), +(284,-90,o), +(266,-83,c), +(266,-175,l), +(289,-182,o), +(312,-185,o), +(340,-185,c), +(446,-185,o), +(504,-123,o), +(504,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(160,0,l), +(160,530,l), +(60,530,l), +(60,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(462,-190,o), +(533,-125,o), +(533,4,c), +(533,334,l), +(533,466,o), +(460,544,o), +(356,544,c), +(245,544,o), +(176,457,o), +(176,304,c), +(202,304,l), +(202,375,o), +(240,412,o), +(293,412,c), +(346,412,o), +(384,375,o), +(384,304,c), +(384,9,l), +(384,-33,o), +(360,-54,o), +(314,-54,c), +(291,-54,o), +(271,-49,o), +(251,-42,c), +(251,-175,l), +(279,-184,o), +(307,-190,o), +(345,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(202,0,l), +(202,530,l), +(53,530,l), +(53,0,l) +); +} +); +width = 586; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(451,-185,o), +(509,-123,o), +(509,-10,c), +(509,332,l), +(509,460,o), +(432,540,o), +(325,540,c), +(216,540,o), +(132,451,o), +(132,309,c), +(165,309,l), +(165,403,o), +(220,452,o), +(287,452,c), +(354,452,o), +(409,403,o), +(409,309,c), +(409,-7,l), +(409,-70,o), +(384,-94,o), +(327,-94,c), +(310,-94,o), +(289,-90,o), +(271,-83,c), +(271,-175,l), +(294,-182,o), +(317,-185,o), +(345,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(451,-185,o), +(509,-123,o), +(509,-10,c), +(509,332,l), +(509,460,o), +(432,540,o), +(325,540,c), +(216,540,o), +(132,451,o), +(132,309,c), +(165,309,l), +(165,403,o), +(220,452,o), +(287,452,c), +(354,452,o), +(409,403,o), +(409,309,c), +(409,-7,l), +(409,-70,o), +(384,-94,o), +(327,-94,c), +(310,-94,o), +(289,-90,o), +(271,-83,c), +(271,-175,l), +(294,-182,o), +(317,-185,o), +(345,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +} +); +width = 574; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(509,332,l), +(509,460,o), +(432,540,o), +(325,540,c), +(216,540,o), +(132,451,o), +(132,309,c), +(165,309,l), +(165,403,o), +(220,452,o), +(287,452,c), +(354,452,o), +(409,403,o), +(409,309,c), +(409,-7,l), +(409,-70,o), +(384,-94,o), +(327,-94,c), +(310,-94,o), +(289,-90,o), +(271,-83,c), +(271,-175,l), +(294,-182,o), +(317,-185,o), +(345,-185,c), +(451,-185,o), +(509,-123,o), +(509,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +} +); +width = 574; +} +); +unicode = 331; +}, +{ +color = 6; +glyphname = o; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (288,0); +}, +{ +name = ogonek; +pos = (377,0); +}, +{ +name = top; +pos = (288,530); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(441,-14,o), +(548,97,o), +(548,265,cs), +(548,433,o), +(441,544,o), +(288,544,cs), +(135,544,o), +(28,433,o), +(28,265,cs), +(28,97,o), +(135,-14,o), +(288,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(221,119,o), +(181,168,o), +(181,265,cs), +(181,362,o), +(221,411,o), +(288,411,cs), +(355,411,o), +(395,362,o), +(395,265,cs), +(395,168,o), +(355,119,o), +(288,119,cs) +); +} +); +width = 576; +}, +{ +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = ogonek; +pos = (351,0); +}, +{ +name = top; +pos = (280,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(422.966,-10,o), +(523,98,o), +(523,265,cs), +(523,432,o), +(422.966,540,o), +(280,540,cs), +(138.043,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(138.043,-10,o), +(280,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137.35,o), +(142,265,cs), +(142,392.65,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,392.65,o), +(419,265,cs), +(419,137.35,o), +(364,80,o), +(280,80,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(423,-10,o), +(523,98,o), +(523,265,cs), +(523,432,o), +(423,540,o), +(280,540,cs), +(138,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(138,-10,o), +(280,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137,o), +(142,265,cs), +(142,393,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,393,o), +(419,265,cs), +(419,137,o), +(364,80,o), +(280,80,cs) +); +} +); +width = 561; +}, +{ +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(160,530,l), +(60,530,l), +(60,0,l) +); +}, +{ +closed = 1; +nodes = ( +(400,0,l), +(500,0,l), +(500,332,l), +(500,460,o), +(425,540,o), +(318,540,c), +(209,540,o), +(127,451,o), +(127,309,c), +(160,309,l), +(160,406,o), +(213,457,o), +(280,457,c), +(347,457,o), +(400,406,o), +(400,309,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(422.966,-10,o), +(523,98,o), +(523,265,cs), +(523,432,o), +(422.966,540,o), +(280,540,cs), +(138.043,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(138.043,-10,o), +(280,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137.35,o), +(142,265,cs), +(142,392.65,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,392.65,o), +(419,265,cs), +(419,137.35,o), +(364,80,o), +(280,80,cs) +); +} +); +width = 561; +} +); +unicode = 111; +}, +{ +color = 10; +glyphname = oacute; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (157,0); +ref = acutecomb; +} +); +width = 576; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(422.966,-10,o), +(523,98,o), +(523,265,cs), +(523,432,o), +(422.966,540,o), +(280,540,cs), +(138.043,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(138.043,-10,o), +(280,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137.35,o), +(142,265,cs), +(142,392.65,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,392.65,o), +(419,265,cs), +(419,137.35,o), +(364,80,o), +(280,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(313,585,l), +(423,725,l), +(297,725,l), +(227,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = o; +}, +{ +pos = (120,0); +ref = acutecomb; +} +); +width = 561; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = o; +}, +{ +pos = (120,0); +ref = acute; +} +); +width = 561; +} +); +unicode = 243; +}, +{ +color = 10; +glyphname = obreve; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (38,0); +ref = brevecomb; +} +); +width = 576; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(422.966,-10,o), +(523,98,o), +(523,265,cs), +(523,432,o), +(422.966,540,o), +(280,540,cs), +(138.043,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(138.043,-10,o), +(280,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137.35,o), +(142,265,cs), +(142,392.65,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,392.65,o), +(419,265,cs), +(419,137.35,o), +(364,80,o), +(280,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(373,585,o), +(418,639,o), +(420,725,c), +(350,725,l), +(349,684,o), +(325,660,o), +(280,660,c), +(235,660,o), +(211,684,o), +(210,725,c), +(140,725,l), +(142,639,o), +(187,585,o), +(280,585,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = o; +}, +{ +pos = (30,0); +ref = brevecomb; +} +); +width = 561; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = o; +}, +{ +pos = (30,0); +ref = breve; +} +); +width = 561; +} +); +unicode = 335; +}, +{ +color = 10; +glyphname = ocircumflex; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (38,0); +ref = circumflexcomb; +} +); +width = 576; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(422.966,-10,o), +(523,98,o), +(523,265,cs), +(523,432,o), +(422.966,540,o), +(280,540,cs), +(138.043,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(138.043,-10,o), +(280,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137.35,o), +(142,265,cs), +(142,392.65,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,392.65,o), +(419,265,cs), +(419,137.35,o), +(364,80,o), +(280,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(436,585,l), +(336,725,l), +(230,725,l), +(348,585,l) +); +}, +{ +closed = 1; +nodes = ( +(212,585,l), +(330,725,l), +(224,725,l), +(124,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = o; +}, +{ +pos = (30,0); +ref = circumflexcomb; +} +); +width = 561; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = o; +}, +{ +pos = (30,0); +ref = circumflex; +} +); +width = 561; +} +); +unicode = 244; +}, +{ +color = 10; +glyphname = odieresis; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (38,0); +ref = dieresiscomb; +} +); +width = 576; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(422.966,-10,o), +(523,98,o), +(523,265,cs), +(523,432,o), +(422.966,540,o), +(280,540,cs), +(138.043,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(138.043,-10,o), +(280,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137.35,o), +(142,265,cs), +(142,392.65,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,392.65,o), +(419,265,cs), +(419,137.35,o), +(364,80,o), +(280,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(403,602,o), +(428,625,o), +(428,658,cs), +(428,692,o), +(403,715,o), +(371,715,cs), +(339,715,o), +(314,692,o), +(314,658,cs), +(314,625,o), +(339,602,o), +(371,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(221,602,o), +(246,625,o), +(246,658,cs), +(246,692,o), +(221,715,o), +(189,715,cs), +(157,715,o), +(132,692,o), +(132,658,cs), +(132,625,o), +(157,602,o), +(189,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = o; +}, +{ +pos = (30,0); +ref = dieresiscomb; +} +); +width = 561; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = o; +}, +{ +pos = (30,0); +ref = dieresis; +} +); +width = 561; +} +); +unicode = 246; +}, +{ +color = 10; +glyphname = odotbelow; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (38,0); +ref = dotbelow; +} +); +width = 576; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(422.966,-10,o), +(523,98,o), +(523,265,cs), +(523,432,o), +(422.966,540,o), +(280,540,cs), +(138.043,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(138.043,-10,o), +(280,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137.35,o), +(142,265,cs), +(142,392.65,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,392.65,o), +(419,265,cs), +(419,137.35,o), +(364,80,o), +(280,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(315,-195,o), +(342,-170,o), +(342,-133,cs), +(342,-97,o), +(315,-72,o), +(280,-72,cs), +(245,-72,o), +(218,-97,o), +(218,-133,cs), +(218,-170,o), +(245,-195,o), +(280,-195,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = o; +}, +{ +pos = (30,0); +ref = dotbelow; +} +); +width = 561; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = o; +}, +{ +pos = (30,0); +ref = dotbelow; +} +); +width = 561; +} +); +unicode = 7885; +}, +{ +color = 10; +glyphname = ograve; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 13:48:17 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (38,0); +ref = gravecomb; +} +); +width = 576; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(422.966,-10,o), +(523,98,o), +(523,265,cs), +(523,432,o), +(422.966,540,o), +(280,540,cs), +(138.043,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(138.043,-10,o), +(280,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137.35,o), +(142,265,cs), +(142,392.65,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,392.65,o), +(419,265,cs), +(419,137.35,o), +(364,80,o), +(280,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(333,585,l), +(263,725,l), +(137,725,l), +(247,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = o; +}, +{ +pos = (30,0); +ref = gravecomb; +} +); +width = 561; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = o; +}, +{ +pos = (30,0); +ref = grave; +} +); +width = 561; +} +); +unicode = 242; +}, +{ +color = 10; +glyphname = ohungarumlaut; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 13:48:44 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (36,0); +ref = hungarumlautcomb; +} +); +width = 576; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(422.966,-10,o), +(523,98,o), +(523,265,cs), +(523,432,o), +(422.966,540,o), +(280,540,cs), +(138.043,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(138.043,-10,o), +(280,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137.35,o), +(142,265,cs), +(142,392.65,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,392.65,o), +(419,265,cs), +(419,137.35,o), +(364,80,o), +(280,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(388,585,l), +(488,725,l), +(377,725,l), +(307,585,l) +); +}, +{ +closed = 1; +nodes = ( +(258,585,l), +(328,725,l), +(227,725,l), +(177,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = o; +}, +{ +pos = (30,0); +ref = hungarumlautcomb; +} +); +width = 561; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = o; +}, +{ +pos = (30,0); +ref = hungarumlaut; +} +); +width = 561; +} +); +unicode = 337; +}, +{ +color = 10; +glyphname = omacron; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (38,0); +ref = macroncomb; +} +); +width = 576; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(422.966,-10,o), +(523,98,o), +(523,265,cs), +(523,432,o), +(422.966,540,o), +(280,540,cs), +(138.043,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(138.043,-10,o), +(280,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137.35,o), +(142,265,cs), +(142,392.65,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,392.65,o), +(419,265,cs), +(419,137.35,o), +(364,80,o), +(280,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(418,621,l), +(418,705,l), +(142,705,l), +(142,621,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = o; +}, +{ +pos = (30,0); +ref = macroncomb; +} +); +width = 561; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = o; +}, +{ +pos = (30,0); +ref = macron; +} +); +width = 561; +} +); +unicode = 333; +}, +{ +color = 10; +glyphname = oogonek; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 13:39:16 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(221,119,o), +(181,168,o), +(181,265,cs), +(181,362,o), +(221,411,o), +(288,411,cs), +(355,411,o), +(395,362,o), +(395,265,cs), +(395,168,o), +(355,119,o), +(288,119,cs) +); +}, +{ +closed = 1; +nodes = ( +(488,46,o), +(548,139,o), +(548,265,cs), +(548,433,o), +(441,544,o), +(288,544,cs), +(135,544,o), +(28,433,o), +(28,265,cs), +(28,97,o), +(135,-14,o), +(288,-14,cs), +(296,-14,o), +(304,-14,o), +(312,-13,c), +(309,1,l), +(207,-32,o), +(179,-69,o), +(179,-111,c), +(179,-156,o), +(218,-190,o), +(290,-190,cs), +(321,-190,o), +(357,-183,o), +(387,-170,c), +(378,-75,l), +(358,-87,o), +(332,-96,o), +(313,-96,c), +(298,-96,o), +(290,-89,o), +(290,-79,c), +(290,-60,o), +(318,-31,o), +(394,6,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (38,0); +ref = ogonekcomb; +} +); +width = 576; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(306,-185,o), +(341,-176,o), +(369,-165,c), +(360,-84,l), +(337,-94,o), +(303,-106,o), +(283,-106,c), +(270,-106,o), +(262,-101,o), +(262,-89,c), +(262,-65,o), +(297,-31,o), +(387,13,cs), +(471,54,o), +(523,144,o), +(523,265,cs), +(523,432,o), +(423,540,o), +(280,540,cs), +(138,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(138,-10,o), +(280,-10,cs), +(286,-10,o), +(292,-10,o), +(298,-9,c), +(295,0,l), +(206,-37,o), +(178,-69,o), +(178,-111,c), +(178,-153,o), +(212,-185,o), +(277,-185,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137,o), +(142,265,cs), +(142,393,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,393,o), +(419,265,cs), +(419,137,o), +(364,80,o), +(280,80,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = o; +}, +{ +pos = (47,0); +ref = ogonekcomb; +} +); +width = 561; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137,o), +(142,265,cs), +(142,393,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,393,o), +(419,265,cs), +(419,137,o), +(364,80,o), +(280,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(206,-37,o), +(178,-69,o), +(178,-111,c), +(178,-153,o), +(212,-185,o), +(277,-185,cs), +(306,-185,o), +(341,-176,o), +(369,-165,c), +(360,-84,l), +(337,-94,o), +(303,-106,o), +(283,-106,c), +(270,-106,o), +(262,-101,o), +(262,-89,c), +(262,-65,o), +(297,-31,o), +(387,13,cs), +(471,54,o), +(523,144,o), +(523,265,cs), +(523,432,o), +(423,540,o), +(280,540,cs), +(138,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(138,-10,o), +(280,-10,cs), +(286,-10,o), +(292,-10,o), +(298,-9,c), +(295,0,l) +); +} +); +width = 561; +} +); +unicode = 491; +}, +{ +color = 6; +glyphname = oslash; +kernLeft = G; +kernRight = M; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (288,530); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(141,0,l), +(574,530,l), +(435,530,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(441,-14,o), +(548,97,o), +(548,265,cs), +(548,433,o), +(441,544,o), +(288,544,cs), +(135,544,o), +(28,433,o), +(28,265,cs), +(28,97,o), +(135,-14,o), +(288,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(221,119,o), +(181,168,o), +(181,265,cs), +(181,362,o), +(221,411,o), +(288,411,cs), +(355,411,o), +(395,362,o), +(395,265,cs), +(395,168,o), +(355,119,o), +(288,119,cs) +); +} +); +width = 576; +}, +{ +anchors = ( +{ +name = top; +pos = (280,530); +} +); +background = { +anchors = ( +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(111,0,l), +(557,540,l), +(450,540,l), +(4,0,l) +); +}, +{ +closed = 1; +nodes = ( +(423,-10,o), +(523,98,o), +(523,265,cs), +(523,432,o), +(423,540,o), +(280,540,cs), +(138,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(138,-10,o), +(280,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137,o), +(142,265,cs), +(142,393,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,393,o), +(419,265,cs), +(419,137,o), +(364,80,o), +(280,80,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(111,0,l), +(557,540,l), +(450,540,l), +(4,0,l) +); +}, +{ +closed = 1; +nodes = ( +(423,-10,o), +(523,98,o), +(523,265,cs), +(523,432,o), +(423,540,o), +(280,540,cs), +(138,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(138,-10,o), +(280,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137,o), +(142,265,cs), +(142,393,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,393,o), +(419,265,cs), +(419,137,o), +(364,80,o), +(280,80,cs) +); +} +); +width = 561; +}, +{ +anchors = ( +{ +name = top; +pos = (280,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(111,0,l), +(557,540,l), +(450,540,l), +(4,0,l) +); +}, +{ +closed = 1; +nodes = ( +(423,-10,o), +(523,98,o), +(523,265,cs), +(523,432,o), +(423,540,o), +(280,540,cs), +(138,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(138,-10,o), +(280,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137,o), +(142,265,cs), +(142,393,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,393,o), +(419,265,cs), +(419,137,o), +(364,80,o), +(280,80,cs) +); +} +); +width = 561; +} +); +unicode = 248; +}, +{ +color = 10; +glyphname = oslashacute; +kernLeft = G; +kernRight = M; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = oslash; +}, +{ +pos = (157,0); +ref = acutecomb; +} +); +width = 576; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(111,0,l), +(557,540,l), +(450,540,l), +(4,0,l) +); +}, +{ +closed = 1; +nodes = ( +(423,-10,o), +(523,98,o), +(523,265,cs), +(523,432,o), +(423,540,o), +(280,540,cs), +(138,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(138,-10,o), +(280,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137,o), +(142,265,cs), +(142,393,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,393,o), +(419,265,cs), +(419,137,o), +(364,80,o), +(280,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(313,585,l), +(423,725,l), +(297,725,l), +(227,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = oslash; +}, +{ +pos = (120,0); +ref = acutecomb; +} +); +width = 561; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = oslash; +}, +{ +pos = (120,0); +ref = acute; +} +); +width = 561; +} +); +unicode = 511; +}, +{ +color = 10; +glyphname = otilde; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (38,0); +ref = tildecomb; +} +); +width = 576; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(422.966,-10,o), +(523,98,o), +(523,265,cs), +(523,432,o), +(422.966,540,o), +(280,540,cs), +(138.043,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(138.043,-10,o), +(280,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137.35,o), +(142,265,cs), +(142,392.65,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,392.65,o), +(419,265,cs), +(419,137.35,o), +(364,80,o), +(280,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(198,585,l), +(199,624,o), +(208,642,o), +(227,642,c), +(259,642,o), +(279,585,o), +(338,585,c), +(391,585,o), +(424,639,o), +(430,725,c), +(362,725,l), +(361,686,o), +(352,668,o), +(333,668,c), +(302,668,o), +(281,725,o), +(222,725,c), +(169,725,o), +(136,671,o), +(130,585,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = o; +}, +{ +pos = (30,0); +ref = tildecomb; +} +); +width = 561; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = o; +}, +{ +pos = (30,0); +ref = tilde; +} +); +width = 561; +} +); +unicode = 245; +}, +{ +color = 6; +glyphname = oe; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(418,-14,o), +(514,97,o), +(514,265,cs), +(514,433,o), +(418,544,o), +(278,544,cs), +(131,544,o), +(28,433,o), +(28,265,cs), +(28,97,o), +(131,-14,o), +(278,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(221,119,o), +(181,168,o), +(181,265,cs), +(181,362,o), +(221,411,o), +(288,411,cs), +(355,411,o), +(395,362,o), +(395,265,cs), +(395,168,o), +(355,119,o), +(288,119,cs) +); +}, +{ +closed = 1; +nodes = ( +(790,-14,o), +(869,48,o), +(891,140,c), +(750,176,l), +(736,133,o), +(702,113,o), +(658,113,c), +(590,113,o), +(548,161,o), +(548,265,c), +(548,376,o), +(588,419,o), +(650,419,c), +(717,419,o), +(753,377,o), +(753,265,c), +(795,323,l), +(479,323,l), +(479,223,l), +(904,223,l), +(905,237,o), +(906,250,o), +(906,265,c), +(906,434,o), +(805,544,o), +(660,544,c), +(525,544,o), +(428,433,o), +(428,265,c), +(428,98,o), +(527,-14,o), +(667,-14,c) +); +} +); +width = 934; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(409.141,-10,o), +(503,98,o), +(503,265,cs), +(503,432,o), +(409.141,540,o), +(275,540,cs), +(135.976,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(135.976,-10,o), +(275,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137.35,o), +(142,265,cs), +(142,392.65,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,392.65,o), +(419,265,cs), +(419,137.35,o), +(364,80,o), +(280,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(768.648,-10,o), +(847.799,41,o), +(882,131,c), +(789,168,l), +(764,108,o), +(722,84,o), +(663,84,c), +(576,84,o), +(523,141,o), +(523,265,c), +(523,398,o), +(578,454,o), +(661,454,c), +(739,454,o), +(790,398,o), +(790,265,c), +(819,310,l), +(501,310,l), +(501,231,l), +(893,231,l), +(894,247,o), +(894,254,o), +(894,265,c), +(894,438,o), +(800.06,540,o), +(666,540,c), +(532.802,540,o), +(439,438,o), +(439,265,c), +(439,98,o), +(530.975,-10,o), +(668,-10,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(409,-10,o), +(503,98,o), +(503,265,cs), +(503,432,o), +(409,540,o), +(275,540,cs), +(136,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(136,-10,o), +(275,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137,o), +(142,265,cs), +(142,393,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,393,o), +(419,265,cs), +(419,137,o), +(364,80,o), +(280,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(769,-10,o), +(848,41,o), +(882,131,c), +(789,168,l), +(764,108,o), +(722,84,o), +(663,84,c), +(576,84,o), +(523,141,o), +(523,265,c), +(523,398,o), +(578,454,o), +(661,454,c), +(739,454,o), +(790,398,o), +(790,265,c), +(819,310,l), +(501,310,l), +(501,231,l), +(893,231,l), +(894,247,o), +(894,254,o), +(894,265,c), +(894,438,o), +(800,540,o), +(666,540,c), +(533,540,o), +(439,438,o), +(439,265,c), +(439,98,o), +(531,-10,o), +(668,-10,c) +); +} +); +width = 932; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(894,247,o), +(894,254,o), +(894,265,c), +(894,438,o), +(800.06,540,o), +(666,540,c), +(532.802,540,o), +(439,438,o), +(439,265,c), +(439,98,o), +(530.975,-10,o), +(668,-10,c), +(768.648,-10,o), +(847.799,41,o), +(882,131,c), +(789,168,l), +(764,108,o), +(722,84,o), +(663,84,c), +(576,84,o), +(523,141,o), +(523,265,c), +(523,398,o), +(578,454,o), +(661,454,c), +(739,454,o), +(790,398,o), +(790,265,c), +(819,310,l), +(501,310,l), +(501,231,l), +(893,231,l) +); +}, +{ +closed = 1; +nodes = ( +(409.141,-10,o), +(503,98,o), +(503,265,cs), +(503,432,o), +(409.141,540,o), +(275,540,cs), +(135.976,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(135.976,-10,o), +(275,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137.35,o), +(142,265,cs), +(142,392.65,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,392.65,o), +(419,265,cs), +(419,137.35,o), +(364,80,o), +(280,80,cs) +); +} +); +width = 932; +} +); +unicode = 339; +}, +{ +color = 6; +glyphname = p; +kernLeft = p; +kernRight = o; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(476,-14,o), +(556,90,o), +(556,265,c), +(556,440,o), +(476,544,o), +(353,544,c), +(247,544,o), +(176,458,o), +(176,304,c), +(176,226,l), +(176,72,o), +(247,-14,o), +(353,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(202,-175,l), +(202,147,l), +(183,265,l), +(202,391,l), +(202,530,l), +(53,530,l), +(53,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(234,120,o), +(192,169,o), +(192,265,c), +(192,361,o), +(234,410,o), +(297,410,c), +(361,410,o), +(403,361,o), +(403,265,c), +(403,169,o), +(361,120,o), +(297,120,c) +); +} +); +width = 588; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(446,-10,o), +(534,93,o), +(534,265,c), +(534,437,o), +(446,540,o), +(323,540,c), +(211,540,o), +(137,456,o), +(137,309,c), +(137,221,l), +(137,74,o), +(211,-10,o), +(323,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(165,-175,l), +(165,122,l), +(150,265,l), +(165,407,l), +(165,530,l), +(65,530,l), +(65,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(215,78,o), +(160,134.005,o), +(160,265,c), +(160,395.995,o), +(215,452,o), +(295,452,c), +(375,452,o), +(430,395.995,o), +(430,265,c), +(430,134.005,o), +(375,78,o), +(295,78,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(446,-10,o), +(534,93,o), +(534,265,c), +(534,437,o), +(446,540,o), +(323,540,c), +(211,540,o), +(137,456,o), +(137,309,c), +(137,221,l), +(137,74,o), +(211,-10,o), +(323,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(165,-175,l), +(165,122,l), +(150,265,l), +(165,407,l), +(165,530,l), +(65,530,l), +(65,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(215,78,o), +(160,134,o), +(160,265,c), +(160,396,o), +(215,452,o), +(295,452,c), +(375,452,o), +(430,396,o), +(430,265,c), +(430,134,o), +(375,78,o), +(295,78,c) +); +} +); +width = 572; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(160,530,l), +(60,530,l), +(60,0,l) +); +}, +{ +closed = 1; +nodes = ( +(523,432,o), +(435,540,o), +(314,540,c), +(206,540,o), +(127,451,o), +(127,309,c), +(160,309,l), +(160,409.277,o), +(213,462,o), +(280,462,c), +(368,462,o), +(419,403,o), +(419,265,c), +(419,127,o), +(368,68,o), +(280,68,c), +(213,68,o), +(160,121,o), +(160,221,c), +(127,221,l), +(127,79,o), +(206,-10,o), +(314,-10,c), +(435,-10,o), +(523,98,o), +(523,265,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,-175,l), +(165,122,l), +(150,265,l), +(165,407,l), +(165,530,l), +(65,530,l), +(65,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(375,452,o), +(430,395.995,o), +(430,265,c), +(430,134.005,o), +(375,78,o), +(295,78,c), +(215,78,o), +(160,134.005,o), +(160,265,c), +(160,395.995,o), +(215,452,o), +(295,452,c) +); +}, +{ +closed = 1; +nodes = ( +(137,74,o), +(211,-10,o), +(323,-10,c), +(446,-10,o), +(534,93,o), +(534,265,c), +(534,437,o), +(446,540,o), +(323,540,c), +(211,540,o), +(137,456,o), +(137,309,c), +(137,221,l) +); +} +); +width = 572; +} +); +unicode = 112; +}, +{ +color = 6; +glyphname = thorn; +kernRight = o; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(476,-14,o), +(556,90,o), +(556,265,c), +(556,440,o), +(476,544,o), +(353,544,c), +(247,544,o), +(176,458,o), +(176,304,c), +(176,226,l), +(176,72,o), +(247,-14,o), +(353,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(202,-175,l), +(202,147,l), +(183,265,l), +(202,391,l), +(202,715,l), +(53,715,l), +(53,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(234,120,o), +(192,169,o), +(192,265,c), +(192,361,o), +(234,410,o), +(297,410,c), +(361,410,o), +(403,361,o), +(403,265,c), +(403,169,o), +(361,120,o), +(297,120,c) +); +} +); +width = 588; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(446,-10,o), +(534,93,o), +(534,265,c), +(534,437,o), +(446,540,o), +(323,540,c), +(211,540,o), +(137,456,o), +(137,309,c), +(137,221,l), +(137,74,o), +(211,-10,o), +(323,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(165,-175,l), +(165,122,l), +(150,265,l), +(165,407,l), +(165,715,l), +(65,715,l), +(65,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(215,78,o), +(160,134.005,o), +(160,265,c), +(160,395.995,o), +(215,452,o), +(295,452,c), +(375,452,o), +(430,395.995,o), +(430,265,c), +(430,134.005,o), +(375,78,o), +(295,78,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(446,-10,o), +(534,93,o), +(534,265,c), +(534,437,o), +(446,540,o), +(323,540,c), +(211,540,o), +(137,456,o), +(137,309,c), +(137,221,l), +(137,74,o), +(211,-10,o), +(323,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(165,-175,l), +(165,122,l), +(150,265,l), +(165,407,l), +(165,715,l), +(65,715,l), +(65,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(215,78,o), +(160,134,o), +(160,265,c), +(160,396,o), +(215,452,o), +(295,452,c), +(375,452,o), +(430,396,o), +(430,265,c), +(430,134,o), +(375,78,o), +(295,78,c) +); +} +); +width = 572; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(160,530,l), +(60,530,l), +(60,0,l) +); +}, +{ +closed = 1; +nodes = ( +(523,432,o), +(435,540,o), +(314,540,c), +(206,540,o), +(127,451,o), +(127,309,c), +(160,309,l), +(160,409.277,o), +(213,462,o), +(280,462,c), +(368,462,o), +(419,403,o), +(419,265,c), +(419,127,o), +(368,68,o), +(280,68,c), +(213,68,o), +(160,121,o), +(160,221,c), +(127,221,l), +(127,79,o), +(206,-10,o), +(314,-10,c), +(435,-10,o), +(523,98,o), +(523,265,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,-175,l), +(165,122,l), +(150,265,l), +(165,407,l), +(165,715,l), +(65,715,l), +(65,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(375,452,o), +(430,395.995,o), +(430,265,c), +(430,134.005,o), +(375,78,o), +(295,78,c), +(215,78,o), +(160,134.005,o), +(160,265,c), +(160,395.995,o), +(215,452,o), +(295,452,c) +); +}, +{ +closed = 1; +nodes = ( +(137,74,o), +(211,-10,o), +(323,-10,c), +(446,-10,o), +(534,93,o), +(534,265,c), +(534,437,o), +(446,540,o), +(323,540,c), +(211,540,o), +(137,456,o), +(137,309,c), +(137,221,l) +); +} +); +width = 572; +} +); +unicode = 254; +}, +{ +color = 6; +glyphname = q; +kernLeft = o; +kernRight = q; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(341,-14,o), +(411,72,o), +(411,226,c), +(411,304,l), +(411,458,o), +(341,544,o), +(234,544,c), +(111,544,o), +(32,440,o), +(32,265,c), +(32,90,o), +(111,-14,o), +(234,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(226,120,o), +(185,169,o), +(185,265,c), +(185,361,o), +(226,410,o), +(290,410,c), +(354,410,o), +(395,361,o), +(395,265,c), +(395,169,o), +(354,120,o), +(290,120,c) +); +}, +{ +closed = 1; +nodes = ( +(534,-175,l), +(534,530,l), +(385,530,l), +(385,391,l), +(404,265,l), +(385,147,l), +(385,-175,l) +); +} +); +width = 587; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(361,-10,o), +(435,74,o), +(435,221,c), +(435,309,l), +(435,456,o), +(361,540,o), +(249,540,c), +(126,540,o), +(38,437,o), +(38,265,c), +(38,93,o), +(126,-10,o), +(249,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(197,78,o), +(142,134.005,o), +(142,265,c), +(142,395.995,o), +(197,452,o), +(277,452,c), +(357,452,o), +(412,395.995,o), +(412,265,c), +(412,134.005,o), +(357,78,o), +(277,78,c) +); +}, +{ +closed = 1; +nodes = ( +(507,-175,l), +(507,530,l), +(407,530,l), +(407,407,l), +(422,265,l), +(407,122,l), +(407,-175,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(361,-10,o), +(435,74,o), +(435,221,c), +(435,309,l), +(435,456,o), +(361,540,o), +(249,540,c), +(126,540,o), +(38,437,o), +(38,265,c), +(38,93,o), +(126,-10,o), +(249,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(197,78,o), +(142,134,o), +(142,265,c), +(142,396,o), +(197,452,o), +(277,452,c), +(357,452,o), +(412,396,o), +(412,265,c), +(412,134,o), +(357,78,o), +(277,78,c) +); +}, +{ +closed = 1; +nodes = ( +(507,-175,l), +(507,530,l), +(407,530,l), +(407,407,l), +(422,265,l), +(407,122,l), +(407,-175,l) +); +} +); +width = 572; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(160,530,l), +(60,530,l), +(60,0,l) +); +}, +{ +closed = 1; +nodes = ( +(523,432,o), +(435,540,o), +(314,540,c), +(206,540,o), +(127,451,o), +(127,309,c), +(160,309,l), +(160,409.277,o), +(213,462,o), +(280,462,c), +(368,462,o), +(419,403,o), +(419,265,c), +(419,127,o), +(368,68,o), +(280,68,c), +(213,68,o), +(160,121,o), +(160,221,c), +(127,221,l), +(127,79,o), +(206,-10,o), +(314,-10,c), +(435,-10,o), +(523,98,o), +(523,265,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(507,530,l), +(407,530,l), +(407,407,l), +(422,265,l), +(407,122,l), +(407,-175,l), +(507,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(357,452,o), +(412,395.995,o), +(412,265,c), +(412,134.005,o), +(357,78,o), +(277,78,c), +(197,78,o), +(142,134.005,o), +(142,265,c), +(142,395.995,o), +(197,452,o), +(277,452,c) +); +}, +{ +closed = 1; +nodes = ( +(435,309,l), +(435,456,o), +(361,540,o), +(249,540,c), +(126,540,o), +(38,437,o), +(38,265,c), +(38,93,o), +(126,-10,o), +(249,-10,c), +(361,-10,o), +(435,74,o), +(435,221,c) +); +} +); +width = 572; +} +); +unicode = 113; +}, +{ +color = 6; +glyphname = r; +kernLeft = n; +kernRight = r; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (128,0); +}, +{ +name = top; +pos = (202,530); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(202,0,l), +(202,530,l), +(53,530,l), +(53,0,l) +); +}, +{ +closed = 1; +nodes = ( +(202,271,l), +(202,348,o), +(236,373,o), +(298,373,c), +(369,373,l), +(369,544,l), +(230,544,o), +(182,423,o), +(182,238,c) +); +} +); +width = 379; +}, +{ +anchors = ( +{ +name = bottom; +pos = (115,0); +}, +{ +name = top; +pos = (197,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (115,0); +}, +{ +name = top; +pos = (197,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(165,292,l), +(165,388.925,o), +(216.967,429,o), +(296,429,c), +(328,429,l), +(328,540,l), +(212,540,o), +(134,439,o), +(134,279,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(165,292,l), +(165,389,o), +(217,429,o), +(296,429,c), +(328,429,l), +(328,540,l), +(212,540,o), +(134,439,o), +(134,279,c) +); +} +); +width = 348; +}, +{ +anchors = ( +{ +name = bottom; +pos = (115,0); +}, +{ +name = top; +pos = (197,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(155,0,l), +(155,530,l), +(55,530,l), +(55,0,l) +); +}, +{ +closed = 1; +nodes = ( +(395,0,l), +(495,0,l), +(495,332,l), +(495,460,o), +(420,540,o), +(313,540,c), +(204,540,o), +(122,451,o), +(122,309,c), +(155,309,l), +(155,406,o), +(208,457,o), +(275,457,c), +(342,457,o), +(395,406,o), +(395,309,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(212,540,o), +(134,439,o), +(134,279,c), +(165,292,l), +(165,388.925,o), +(216.967,429,o), +(296,429,c), +(328,429,l), +(328,540,l) +); +} +); +width = 348; +} +); +unicode = 114; +}, +{ +color = 10; +glyphname = racute; +kernLeft = n; +kernRight = r; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = r; +}, +{ +pos = (71,0); +ref = acutecomb; +} +); +width = 379; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (115,0); +}, +{ +name = top; +pos = (197,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(165,292,l), +(165,388.925,o), +(216.967,429,o), +(296,429,c), +(328,429,l), +(328,540,l), +(212,540,o), +(134,439,o), +(134,279,c) +); +}, +{ +closed = 1; +nodes = ( +(230,585,l), +(340,725,l), +(214,725,l), +(144,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = r; +}, +{ +pos = (37,0); +ref = acutecomb; +} +); +width = 348; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = r; +}, +{ +pos = (37,0); +ref = acute; +} +); +width = 348; +} +); +unicode = 341; +}, +{ +color = 10; +glyphname = rcaron; +kernLeft = n; +kernRight = r; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = r; +}, +{ +pos = (-48,0); +ref = caroncomb; +} +); +width = 379; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (115,0); +}, +{ +name = top; +pos = (197,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(165,292,l), +(165,388.925,o), +(216.967,429,o), +(296,429,c), +(328,429,l), +(328,540,l), +(212,540,o), +(134,439,o), +(134,279,c) +); +}, +{ +closed = 1; +nodes = ( +(253,585,l), +(353,725,l), +(265,725,l), +(147,585,l) +); +}, +{ +closed = 1; +nodes = ( +(247,585,l), +(129,725,l), +(41,725,l), +(141,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-53,0); +ref = caroncomb; +} +); +width = 348; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-53,0); +ref = caron; +} +); +width = 348; +} +); +unicode = 345; +}, +{ +color = 10; +glyphname = rcedilla; +kernLeft = n; +kernRight = r; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = r; +}, +{ +pos = (-126,0); +ref = commaaccent; +} +); +width = 379; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (115,0); +}, +{ +name = top; +pos = (197,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(165,292,l), +(165,388.925,o), +(216.967,429,o), +(296,429,c), +(328,429,l), +(328,540,l), +(212,540,o), +(134,439,o), +(134,279,c) +); +}, +{ +closed = 1; +nodes = ( +(131,-275,l), +(172,-72,l), +(68,-72,l), +(68,-275,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-140,0); +ref = commaaccent; +} +); +width = 348; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-140,0); +ref = commaaccent; +} +); +width = 348; +} +); +unicode = 343; +}, +{ +color = 6; +glyphname = s; +kernLeft = s; +kernRight = s; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (258,0); +}, +{ +name = top; +pos = (254,530); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(400,-14,o), +(485,54,o), +(485,158,c), +(485,373,o), +(180,316,o), +(180,393,c), +(180,412,o), +(198,429,o), +(246,429,c), +(299,429,o), +(326,408,o), +(341,362,c), +(476,404,l), +(446,494,o), +(372,544,o), +(254,544,c), +(117,544,o), +(38,475,o), +(38,375,c), +(38,171,o), +(334,232,o), +(334,142,c), +(334,117,o), +(315,102,o), +(263,102,c), +(207,102,o), +(173,127,o), +(158,183,c), +(20,140,l), +(40,36,o), +(121,-14,o), +(253,-14,c) +); +} +); +width = 510; +}, +{ +anchors = ( +{ +name = bottom; +pos = (246,0); +}, +{ +name = top; +pos = (246,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (246,0); +}, +{ +name = top; +pos = (246,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(380,-10,o), +(454,58,o), +(454,145,c), +(454,350,o), +(147,293,o), +(147,400,c), +(147,435,o), +(179,459,o), +(237,459,c), +(295,459,o), +(334,433,o), +(358,368,c), +(449,399,l), +(420.282,491,o), +(354,540,o), +(245,540,c), +(118.286,540,o), +(48,474,o), +(48,391,c), +(48,199,o), +(355,261,o), +(355,138,c), +(355,95,o), +(315,71,o), +(255,71,c), +(188,71,o), +(145,97,o), +(122,164,c), +(28,134,l), +(57,39,o), +(128,-10,o), +(248,-10,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(380,-10,o), +(454,58,o), +(454,145,c), +(454,350,o), +(147,293,o), +(147,400,c), +(147,435,o), +(179,459,o), +(237,459,c), +(295,459,o), +(334,433,o), +(358,368,c), +(449,399,l), +(420,491,o), +(354,540,o), +(245,540,c), +(118,540,o), +(48,474,o), +(48,391,c), +(48,199,o), +(355,261,o), +(355,138,c), +(355,95,o), +(315,71,o), +(255,71,c), +(188,71,o), +(145,97,o), +(122,164,c), +(28,134,l), +(57,39,o), +(128,-10,o), +(248,-10,c) +); +} +); +width = 492; +}, +{ +anchors = ( +{ +name = bottom; +pos = (246,0); +}, +{ +name = top; +pos = (246,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(411.966,-10,o), +(509,98,o), +(509,265,cs), +(509,432,o), +(411.966,540,o), +(269,540,cs), +(127.043,540,o), +(30,432,o), +(30,265,cs), +(30,98,o), +(127.043,-10,o), +(269,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(186,65,o), +(134,127,o), +(134,265,cs), +(134,403,o), +(186,465,o), +(269,465,cs), +(353,465,o), +(405,403,o), +(405,265,cs), +(405,127,o), +(353,65,o), +(269,65,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(454,350,o), +(147,293,o), +(147,400,c), +(147,435,o), +(179,459,o), +(237,459,c), +(295,459,o), +(334,433,o), +(358,368,c), +(449,399,l), +(420.282,491,o), +(354,540,o), +(245,540,c), +(118.286,540,o), +(48,474,o), +(48,391,c), +(48,199,o), +(355,261,o), +(355,138,c), +(355,95,o), +(315,71,o), +(255,71,c), +(188,71,o), +(145,97,o), +(122,164,c), +(28,134,l), +(57,39,o), +(128,-10,o), +(248,-10,c), +(380,-10,o), +(454,58,o), +(454,145,c) +); +} +); +width = 492; +} +); +unicode = 115; +}, +{ +color = 10; +glyphname = sacute; +kernLeft = s; +kernRight = s; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = s; +}, +{ +pos = (123,0); +ref = acutecomb; +} +); +width = 510; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (246,0); +}, +{ +name = top; +pos = (246,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(380,-10,o), +(454,58,o), +(454,145,c), +(454,350,o), +(147,293,o), +(147,400,c), +(147,435,o), +(179,459,o), +(237,459,c), +(295,459,o), +(334,433,o), +(358,368,c), +(449,399,l), +(420.282,491,o), +(354,540,o), +(245,540,c), +(118.286,540,o), +(48,474,o), +(48,391,c), +(48,199,o), +(355,261,o), +(355,138,c), +(355,95,o), +(315,71,o), +(255,71,c), +(188,71,o), +(145,97,o), +(122,164,c), +(28,134,l), +(57,39,o), +(128,-10,o), +(248,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(279,585,l), +(389,725,l), +(263,725,l), +(193,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = s; +}, +{ +pos = (86,0); +ref = acutecomb; +} +); +width = 492; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = s; +}, +{ +pos = (86,0); +ref = acute; +} +); +width = 492; +} +); +unicode = 347; +}, +{ +color = 10; +glyphname = scaron; +kernLeft = s; +kernRight = s; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = s; +}, +{ +pos = (4,0); +ref = caroncomb; +} +); +width = 510; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (246,0); +}, +{ +name = top; +pos = (246,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(380,-10,o), +(454,58,o), +(454,145,c), +(454,350,o), +(147,293,o), +(147,400,c), +(147,435,o), +(179,459,o), +(237,459,c), +(295,459,o), +(334,433,o), +(358,368,c), +(449,399,l), +(420.282,491,o), +(354,540,o), +(245,540,c), +(118.286,540,o), +(48,474,o), +(48,391,c), +(48,199,o), +(355,261,o), +(355,138,c), +(355,95,o), +(315,71,o), +(255,71,c), +(188,71,o), +(145,97,o), +(122,164,c), +(28,134,l), +(57,39,o), +(128,-10,o), +(248,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(302,585,l), +(402,725,l), +(314,725,l), +(196,585,l) +); +}, +{ +closed = 1; +nodes = ( +(296,585,l), +(178,725,l), +(90,725,l), +(190,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = s; +}, +{ +pos = (-4,0); +ref = caroncomb; +} +); +width = 492; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = s; +}, +{ +pos = (-4,0); +ref = caron; +} +); +width = 492; +} +); +unicode = 353; +}, +{ +color = 10; +glyphname = scedilla; +kernLeft = s; +kernRight = s; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = s; +}, +{ +pos = (5,0); +ref = cedillacomb; +} +); +width = 510; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (246,0); +}, +{ +name = top; +pos = (246,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(380,-10,o), +(454,58,o), +(454,145,c), +(454,350,o), +(147,293,o), +(147,400,c), +(147,435,o), +(179,459,o), +(237,459,c), +(295,459,o), +(334,433,o), +(358,368,c), +(449,399,l), +(420.282,491,o), +(354,540,o), +(245,540,c), +(118.286,540,o), +(48,474,o), +(48,391,c), +(48,199,o), +(355,261,o), +(355,138,c), +(355,95,o), +(315,71,o), +(255,71,c), +(188,71,o), +(145,97,o), +(122,164,c), +(28,134,l), +(57,39,o), +(128,-10,o), +(248,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(297,-185,o), +(333,-151,o), +(333,-106,cs), +(333,-57,o), +(296,-29,o), +(248,-29,c), +(260,-43,l), +(266,9,l), +(210,11,l), +(197,-73,l), +(208,-71,o), +(215,-70,o), +(226,-70,c), +(250,-70,o), +(264,-79,o), +(264,-96,c), +(264,-110,o), +(251,-119,o), +(230,-119,c), +(210,-119,o), +(194,-114,o), +(176,-105,c), +(163,-169,l), +(188,-180,o), +(213,-185,o), +(239,-185,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = s; +}, +{ +pos = (-6,0); +ref = cedillacomb; +} +); +width = 492; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = s; +}, +{ +pos = (-6,0); +ref = cedilla; +} +); +width = 492; +} +); +unicode = 351; +}, +{ +color = 10; +glyphname = scircumflex; +kernLeft = s; +kernRight = s; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = s; +}, +{ +pos = (4,0); +ref = circumflexcomb; +} +); +width = 510; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (246,0); +}, +{ +name = top; +pos = (246,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(380,-10,o), +(454,58,o), +(454,145,c), +(454,350,o), +(147,293,o), +(147,400,c), +(147,435,o), +(179,459,o), +(237,459,c), +(295,459,o), +(334,433,o), +(358,368,c), +(449,399,l), +(420.282,491,o), +(354,540,o), +(245,540,c), +(118.286,540,o), +(48,474,o), +(48,391,c), +(48,199,o), +(355,261,o), +(355,138,c), +(355,95,o), +(315,71,o), +(255,71,c), +(188,71,o), +(145,97,o), +(122,164,c), +(28,134,l), +(57,39,o), +(128,-10,o), +(248,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(402,585,l), +(302,725,l), +(196,725,l), +(314,585,l) +); +}, +{ +closed = 1; +nodes = ( +(178,585,l), +(296,725,l), +(190,725,l), +(90,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = s; +}, +{ +pos = (-4,0); +ref = circumflexcomb; +} +); +width = 492; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = s; +}, +{ +pos = (-4,0); +ref = circumflex; +} +); +width = 492; +} +); +unicode = 349; +}, +{ +color = 10; +glyphname = scommaaccent; +kernLeft = s; +kernRight = s; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = s; +}, +{ +pos = (114,0); +ref = commaaccentcomb; +} +); +width = 510; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (246,0); +}, +{ +name = top; +pos = (246,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(380,-10,o), +(454,58,o), +(454,145,c), +(454,350,o), +(147,293,o), +(147,400,c), +(147,435,o), +(179,459,o), +(237,459,c), +(295,459,o), +(334,433,o), +(358,368,c), +(449,399,l), +(420.282,491,o), +(354,540,o), +(245,540,c), +(118.286,540,o), +(48,474,o), +(48,391,c), +(48,199,o), +(355,261,o), +(355,138,c), +(355,95,o), +(315,71,o), +(255,71,c), +(188,71,o), +(145,97,o), +(122,164,c), +(28,134,l), +(57,39,o), +(128,-10,o), +(248,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(262,-275,l), +(303,-72,l), +(199,-72,l), +(199,-275,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = s; +}, +{ +pos = (105,0); +ref = commaaccentcomb; +} +); +width = 492; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = s; +}, +{ +pos = (-9,0); +ref = commaaccent; +} +); +width = 492; +} +); +unicode = 537; +}, +{ +color = 6; +glyphname = germandbls; +lastChange = "2024-04-04 09:29:08 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(135,725,o), +(65,648,o), +(65,504,c), +(65,0,l), +(165,0,l), +(165,511,l), +(165,585,o), +(200,636,o), +(270,636,c), +(335,636,o), +(368,605,o), +(368,555,c), +(368,484,o), +(265,460,o), +(265,372,c), +(265,246,o), +(446,247,o), +(446,146,c), +(446,105,o), +(411,80,o), +(362,80,c), +(322,80,o), +(292,91,o), +(251,115,c), +(216,25,l), +(255,4,o), +(301,-10,o), +(359,-10,c), +(480,-10,o), +(545,58,o), +(545,151,c), +(545,304,o), +(360,325,o), +(360,381,c), +(360,428,o), +(468,439,o), +(468,566,c), +(468,654,o), +(389,725,o), +(271,725,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(500,-14,o), +(573,58,o), +(573,151,cs), +(573,315,o), +(407,336,o), +(407,381,cs), +(407,422,o), +(493,434,o), +(493,555,cs), +(493,658,o), +(411,730,o), +(286,730,cs), +(141,730,o), +(53,650,o), +(53,491,cs), +(53,0,l), +(202,0,l), +(202,501,ls), +(202,563,o), +(228,593,o), +(279,593,cs), +(325,593,o), +(350,569,o), +(350,537,cs), +(350,474,o), +(252,450,o), +(252,372,cs), +(252,254,o), +(427,250,o), +(427,159,cs), +(427,126,o), +(403,102,o), +(362,102,cs), +(331,102,o), +(299,115,o), +(268,136,c), +(219,29,l), +(262,4,o), +(311,-14,o), +(372,-14,cs) +); +} +); +width = 593; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(480,-10,o), +(545,58,o), +(545,151,c), +(545,304,o), +(360,325,o), +(360,381,c), +(360,428,o), +(468,439,o), +(468,566,c), +(468,654,o), +(389,725,o), +(271,725,c), +(135,725,o), +(65,648,o), +(65,504,c), +(65,0,l), +(165,0,l), +(165,511,l), +(165,585,o), +(200,636,o), +(270,636,c), +(335,636,o), +(368,605,o), +(368,555,c), +(368,484,o), +(265,460,o), +(265,372,c), +(265,246,o), +(446,247,o), +(446,146,c), +(446,105,o), +(411,80,o), +(362,80,c), +(322,80,o), +(292,91,o), +(251,115,c), +(216,25,l), +(255,4,o), +(301,-10,o), +(359,-10,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(480,-10,o), +(545,58,o), +(545,151,cs), +(545,304,o), +(360,325,o), +(360,381,cs), +(360,428,o), +(468,439,o), +(468,566,cs), +(468,654,o), +(389,725,o), +(271,725,cs), +(135,725,o), +(65,648,o), +(65,504,cs), +(65,0,l), +(165,0,l), +(165,511,ls), +(165,585,o), +(200,636,o), +(270,636,cs), +(335,636,o), +(368,605,o), +(368,555,cs), +(368,484,o), +(265,460,o), +(265,372,cs), +(265,246,o), +(446,247,o), +(446,146,cs), +(446,105,o), +(411,80,o), +(362,80,cs), +(322,80,o), +(292,91,o), +(251,115,c), +(216,25,l), +(255,4,o), +(301,-10,o), +(359,-10,cs) +); +} +); +width = 579; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(135,725,o), +(65,648,o), +(65,504,c), +(65,0,l), +(165,0,l), +(165,511,l), +(165,585,o), +(200,636,o), +(270,636,c), +(335,636,o), +(368,605,o), +(368,555,c), +(368,484,o), +(265,460,o), +(265,372,c), +(265,246,o), +(446,247,o), +(446,146,c), +(446,105,o), +(411,80,o), +(362,80,c), +(322,80,o), +(292,91,o), +(251,115,c), +(216,25,l), +(255,4,o), +(301,-10,o), +(359,-10,c), +(480,-10,o), +(545,58,o), +(545,151,c), +(545,304,o), +(360,325,o), +(360,381,c), +(360,428,o), +(468,439,o), +(468,566,c), +(468,654,o), +(389,725,o), +(271,725,c) +); +} +); +width = 579; +} +); +unicode = 223; +}, +{ +color = 6; +glyphname = t; +kernLeft = t; +kernRight = t; +lastChange = "2024-03-22 13:30:23 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (241,0); +}, +{ +name = center; +pos = (191,265); +}, +{ +name = top; +pos = (191,669); +}, +{ +name = topright; +pos = (392,679); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(305,-14,o), +(337,-9,o), +(368,0,c), +(368,133,l), +(347,127,o), +(327,122,o), +(303,122,c), +(252,122,o), +(223,149,o), +(223,203,c), +(223,669,l), +(74,640,l), +(74,186,l), +(74,53,o), +(146,-14,o), +(262,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(363,407,l), +(363,530,l), +(8,530,l), +(8,407,l) +); +} +); +width = 382; +}, +{ +anchors = ( +{ +name = bottom; +pos = (220,0); +}, +{ +name = center; +pos = (184,265); +}, +{ +name = top; +pos = (184,660); +}, +{ +name = topright; +pos = (467,715); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (217,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(288.096,-10,o), +(314.988,-7,o), +(343,0,c), +(343,94,l), +(320,88,o), +(298,84,o), +(271,84,c), +(215,84,o), +(185,112,o), +(185,173,c), +(185,660,l), +(85,640,l), +(85,155,l), +(85,45,o), +(145.844,-10,o), +(250,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(338,443,l), +(338,530,l), +(10,530,l), +(10,443,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(288,-10,o), +(315,-7,o), +(343,0,c), +(343,94,l), +(320,88,o), +(298,84,o), +(271,84,c), +(215,84,o), +(185,112,o), +(185,173,c), +(185,660,l), +(85,640,l), +(85,155,l), +(85,45,o), +(146,-10,o), +(250,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(338,443,l), +(338,530,l), +(10,530,l), +(10,443,l) +); +} +); +width = 367; +}, +{ +anchors = ( +{ +name = bottom; +pos = (217,0); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(155,0,l), +(155,530,l), +(55,530,l), +(55,0,l) +); +}, +{ +closed = 1; +nodes = ( +(395,0,l), +(495,0,l), +(495,332,l), +(495,460,o), +(420,540,o), +(313,540,c), +(204,540,o), +(122,451,o), +(122,309,c), +(155,309,l), +(155,406,o), +(208,457,o), +(275,457,c), +(342,457,o), +(395,406,o), +(395,309,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,660,l), +(85,640,l), +(85,155,l), +(85,45,o), +(145.844,-10,o), +(250,-10,c), +(288.096,-10,o), +(314.988,-7,o), +(343,0,c), +(343,94,l), +(320,88,o), +(298,84,o), +(271,84,c), +(215,84,o), +(185,112,o), +(185,173,c) +); +}, +{ +closed = 1; +nodes = ( +(10,443,l), +(338,443,l), +(338,530,l), +(10,530,l) +); +} +); +width = 367; +} +); +unicode = 116; +}, +{ +color = 6; +glyphname = tbar; +kernLeft = t; +kernRight = t; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(5,277,l), +(333,277,l), +(333,363,l), +(5,363,l) +); +}, +{ +closed = 1; +nodes = ( +(180,660,l), +(80,640,l), +(80,155,l), +(80,45,o), +(141,-10,o), +(245,-10,c), +(283,-10,o), +(310,-7,o), +(338,0,c), +(338,94,l), +(315,88,o), +(293,84,o), +(266,84,c), +(210,84,o), +(180,112,o), +(180,173,c) +); +}, +{ +closed = 1; +nodes = ( +(5,443,l), +(333,443,l), +(333,530,l), +(5,530,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(305,-14,o), +(337,-9,o), +(368,0,c), +(368,133,l), +(347,127,o), +(327,122,o), +(303,122,c), +(252,122,o), +(223,149,o), +(223,203,c), +(223,669,l), +(74,640,l), +(74,186,l), +(74,53,o), +(146,-14,o), +(262,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(363,234,l), +(363,349,l), +(8,349,l), +(8,234,l) +); +}, +{ +closed = 1; +nodes = ( +(363,407,l), +(363,530,l), +(8,530,l), +(8,407,l) +); +} +); +width = 382; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(288,-10,o), +(315,-7,o), +(343,0,c), +(343,94,l), +(320,88,o), +(298,84,o), +(271,84,c), +(215,84,o), +(185,112,o), +(185,173,c), +(185,660,l), +(85,640,l), +(85,155,l), +(85,45,o), +(146,-10,o), +(250,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(338,277,l), +(338,363,l), +(10,363,l), +(10,277,l) +); +}, +{ +closed = 1; +nodes = ( +(338,443,l), +(338,530,l), +(10,530,l), +(10,443,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(288,-10,o), +(315,-7,o), +(343,0,c), +(343,94,l), +(320,88,o), +(298,84,o), +(271,84,c), +(215,84,o), +(185,112,o), +(185,173,c), +(185,660,l), +(85,640,l), +(85,155,l), +(85,45,o), +(146,-10,o), +(250,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(338,277,l), +(338,363,l), +(10,363,l), +(10,277,l) +); +}, +{ +closed = 1; +nodes = ( +(338,443,l), +(338,530,l), +(10,530,l), +(10,443,l) +); +} +); +width = 367; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(10,277,l), +(338,277,l), +(338,363,l), +(10,363,l) +); +}, +{ +closed = 1; +nodes = ( +(185,660,l), +(85,640,l), +(85,155,l), +(85,45,o), +(146,-10,o), +(250,-10,c), +(288,-10,o), +(315,-7,o), +(343,0,c), +(343,94,l), +(320,88,o), +(298,84,o), +(271,84,c), +(215,84,o), +(185,112,o), +(185,173,c) +); +}, +{ +closed = 1; +nodes = ( +(10,443,l), +(338,443,l), +(338,530,l), +(10,530,l) +); +} +); +width = 367; +} +); +unicode = 359; +}, +{ +color = 10; +glyphname = tcaron; +kernLeft = t; +kernRight = tcaron; +lastChange = "2024-03-22 12:19:56 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = t; +}, +{ +pos = (305,-36); +ref = caroncomb.alt; +} +); +width = 382; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(288,-10,o), +(315,-7,o), +(343,0,c), +(343,94,l), +(320,88,o), +(298,84,o), +(271,84,c), +(215,84,o), +(185,112,o), +(185,173,c), +(185,660,l), +(85,640,l), +(85,155,l), +(85,45,o), +(146,-10,o), +(250,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(268,443,l), +(268,530,l), +(10,530,l), +(10,443,l) +); +}, +{ +closed = 1; +nodes = ( +(378,417,l), +(422,690,l), +(318,690,l), +(318,417,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = t; +}, +{ +pos = (276,0); +ref = caroncomb.alt; +} +); +width = 367; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(318,417,l), +(378,417,l), +(422,690,l), +(318,690,l) +); +}, +{ +closed = 1; +nodes = ( +(185,660,l), +(85,640,l), +(85,155,l), +(85,45,o), +(146,-10,o), +(250,-10,c), +(288,-10,o), +(315,-7,o), +(343,0,c), +(343,94,l), +(320,88,o), +(298,84,o), +(271,84,c), +(215,84,o), +(185,112,o), +(185,173,c) +); +}, +{ +closed = 1; +nodes = ( +(10,443,l), +(268,443,l), +(268,530,l), +(10,530,l) +); +} +); +width = 392; +} +); +unicode = 357; +}, +{ +color = 10; +glyphname = tcedilla; +kernLeft = t; +kernRight = t; +lastChange = "2024-03-22 12:51:59 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = t; +}, +{ +pos = (-12,0); +ref = cedillacomb; +} +); +width = 382; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (217,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(288.096,-10,o), +(314.988,-7,o), +(343,0,c), +(343,94,l), +(320,88,o), +(298,84,o), +(271,84,c), +(215,84,o), +(185,112,o), +(185,173,c), +(185,660,l), +(85,640,l), +(85,155,l), +(85,45,o), +(145.844,-10,o), +(250,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(338,443,l), +(338,530,l), +(10,530,l), +(10,443,l) +); +}, +{ +closed = 1; +nodes = ( +(268,-185,o), +(304,-151,o), +(304,-106,cs), +(304,-57,o), +(267,-29,o), +(219,-29,c), +(231,-43,l), +(237,9,l), +(181,11,l), +(168,-73,l), +(179,-71,o), +(186,-70,o), +(197,-70,c), +(221,-70,o), +(235,-79,o), +(235,-96,c), +(235,-110,o), +(222,-119,o), +(201,-119,c), +(181,-119,o), +(165,-114,o), +(147,-105,c), +(134,-169,l), +(159,-180,o), +(184,-185,o), +(210,-185,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = t; +}, +{ +pos = (-32,0); +ref = cedillacomb; +} +); +width = 367; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = t; +}, +{ +pos = (-32,0); +ref = cedilla; +} +); +width = 367; +} +); +unicode = 355; +}, +{ +color = 10; +glyphname = tcommaaccent; +kernLeft = t; +kernRight = t; +lastChange = "2024-03-22 12:51:59 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = t; +}, +{ +pos = (97,0); +ref = commaaccentcomb; +} +); +width = 382; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (217,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(288.096,-10,o), +(314.988,-7,o), +(343,0,c), +(343,94,l), +(320,88,o), +(298,84,o), +(271,84,c), +(215,84,o), +(185,112,o), +(185,173,c), +(185,660,l), +(85,640,l), +(85,155,l), +(85,45,o), +(145.844,-10,o), +(250,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(338,443,l), +(338,530,l), +(10,530,l), +(10,443,l) +); +}, +{ +closed = 1; +nodes = ( +(233,-275,l), +(274,-72,l), +(170,-72,l), +(170,-275,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = t; +}, +{ +pos = (79,0); +ref = commaaccentcomb; +} +); +width = 367; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = t; +}, +{ +pos = (-35,0); +ref = commaaccent; +} +); +width = 367; +} +); +unicode = 539; +}, +{ +color = 6; +glyphname = u; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (293,0); +}, +{ +name = ogonek; +pos = (532,0); +}, +{ +name = top; +pos = (293,530); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(340,-14,o), +(410,73,o), +(410,226,c), +(383,226,l), +(383,155,o), +(346,118,o), +(293,118,c), +(239,118,o), +(202,155,o), +(202,226,c), +(202,530,l), +(53,530,l), +(53,196,l), +(53,64,o), +(126,-14,o), +(230,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(532,0,l), +(532,530,l), +(383,530,l), +(383,0,l) +); +} +); +width = 585; +}, +{ +anchors = ( +{ +name = bottom; +pos = (285,0); +}, +{ +name = ogonek; +pos = (505,0); +}, +{ +name = top; +pos = (285,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (285,0); +}, +{ +name = top; +pos = (285,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(356,-10,o), +(438,79,o), +(438,221,c), +(405,221,l), +(405,127.277,o), +(352,78,o), +(285,78,c), +(218,78,o), +(165,127.277,o), +(165,221,c), +(165,530,l), +(65,530,l), +(65,198,l), +(65,70,o), +(140,-10,o), +(247,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(356,-10,o), +(438,79,o), +(438,221,c), +(405,221,l), +(405,127,o), +(352,78,o), +(285,78,c), +(218,78,o), +(165,127,o), +(165,221,c), +(165,530,l), +(65,530,l), +(65,198,l), +(65,70,o), +(140,-10,o), +(247,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +} +); +width = 570; +}, +{ +anchors = ( +{ +name = bottom; +pos = (285,0); +}, +{ +name = top; +pos = (285,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(405,530,l), +(405,0,l), +(505,0,l), +(505,530,l) +); +}, +{ +closed = 1; +nodes = ( +(165,530,l), +(65,530,l), +(65,198,l), +(65,70,o), +(140,-10,o), +(247,-10,c), +(356,-10,o), +(438,79,o), +(438,221,c), +(405,221,l), +(405,127.277,o), +(352,78,o), +(285,78,c), +(218,78,o), +(165,127.277,o), +(165,221,c) +); +} +); +width = 570; +} +); +unicode = 117; +}, +{ +color = 10; +glyphname = uacute; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (162,0); +ref = acutecomb; +} +); +width = 585; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (285,0); +}, +{ +name = top; +pos = (285,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(356,-10,o), +(438,79,o), +(438,221,c), +(405,221,l), +(405,127.277,o), +(352,78,o), +(285,78,c), +(218,78,o), +(165,127.277,o), +(165,221,c), +(165,530,l), +(65,530,l), +(65,198,l), +(65,70,o), +(140,-10,o), +(247,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(318,585,l), +(428,725,l), +(302,725,l), +(232,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = u; +}, +{ +pos = (125,0); +ref = acutecomb; +} +); +width = 570; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = u; +}, +{ +pos = (125,0); +ref = acute; +} +); +width = 570; +} +); +unicode = 250; +}, +{ +color = 10; +glyphname = ubreve; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (43,0); +ref = brevecomb; +} +); +width = 585; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (285,0); +}, +{ +name = top; +pos = (285,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(356,-10,o), +(438,79,o), +(438,221,c), +(405,221,l), +(405,127.277,o), +(352,78,o), +(285,78,c), +(218,78,o), +(165,127.277,o), +(165,221,c), +(165,530,l), +(65,530,l), +(65,198,l), +(65,70,o), +(140,-10,o), +(247,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(378,585,o), +(423,639,o), +(425,725,c), +(355,725,l), +(354,684,o), +(330,660,o), +(285,660,c), +(240,660,o), +(216,684,o), +(215,725,c), +(145,725,l), +(147,639,o), +(192,585,o), +(285,585,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = u; +}, +{ +pos = (35,0); +ref = brevecomb; +} +); +width = 570; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = u; +}, +{ +pos = (35,0); +ref = breve; +} +); +width = 570; +} +); +unicode = 365; +}, +{ +color = 10; +glyphname = ucircumflex; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (43,0); +ref = circumflexcomb; +} +); +width = 585; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (285,0); +}, +{ +name = top; +pos = (285,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(356,-10,o), +(438,79,o), +(438,221,c), +(405,221,l), +(405,127.277,o), +(352,78,o), +(285,78,c), +(218,78,o), +(165,127.277,o), +(165,221,c), +(165,530,l), +(65,530,l), +(65,198,l), +(65,70,o), +(140,-10,o), +(247,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(441,585,l), +(341,725,l), +(235,725,l), +(353,585,l) +); +}, +{ +closed = 1; +nodes = ( +(217,585,l), +(335,725,l), +(229,725,l), +(129,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = u; +}, +{ +pos = (35,0); +ref = circumflexcomb; +} +); +width = 570; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = u; +}, +{ +pos = (35,0); +ref = circumflex; +} +); +width = 570; +} +); +unicode = 251; +}, +{ +color = 10; +glyphname = udieresis; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (43,0); +ref = dieresiscomb; +} +); +width = 585; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (285,0); +}, +{ +name = top; +pos = (285,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(356,-10,o), +(438,79,o), +(438,221,c), +(405,221,l), +(405,127.277,o), +(352,78,o), +(285,78,c), +(218,78,o), +(165,127.277,o), +(165,221,c), +(165,530,l), +(65,530,l), +(65,198,l), +(65,70,o), +(140,-10,o), +(247,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(408,602,o), +(433,625,o), +(433,658,cs), +(433,692,o), +(408,715,o), +(376,715,cs), +(344,715,o), +(319,692,o), +(319,658,cs), +(319,625,o), +(344,602,o), +(376,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(226,602,o), +(251,625,o), +(251,658,cs), +(251,692,o), +(226,715,o), +(194,715,cs), +(162,715,o), +(137,692,o), +(137,658,cs), +(137,625,o), +(162,602,o), +(194,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = u; +}, +{ +pos = (35,0); +ref = dieresiscomb; +} +); +width = 570; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = u; +}, +{ +pos = (35,0); +ref = dieresis; +} +); +width = 570; +} +); +unicode = 252; +}, +{ +color = 10; +glyphname = udotbelow; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (43,0); +ref = dotbelow; +} +); +width = 585; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (285,0); +}, +{ +name = top; +pos = (285,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(356,-10,o), +(438,79,o), +(438,221,c), +(405,221,l), +(405,127.277,o), +(352,78,o), +(285,78,c), +(218,78,o), +(165,127.277,o), +(165,221,c), +(165,530,l), +(65,530,l), +(65,198,l), +(65,70,o), +(140,-10,o), +(247,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(320,-195,o), +(347,-170,o), +(347,-133,cs), +(347,-97,o), +(320,-72,o), +(285,-72,cs), +(250,-72,o), +(223,-97,o), +(223,-133,cs), +(223,-170,o), +(250,-195,o), +(285,-195,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = u; +}, +{ +pos = (35,0); +ref = dotbelow; +} +); +width = 570; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = u; +}, +{ +pos = (35,0); +ref = dotbelow; +} +); +width = 570; +} +); +unicode = 7909; +}, +{ +color = 10; +glyphname = ugrave; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 13:48:17 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (43,0); +ref = gravecomb; +} +); +width = 585; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (285,0); +}, +{ +name = top; +pos = (285,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(356,-10,o), +(438,79,o), +(438,221,c), +(405,221,l), +(405,127.277,o), +(352,78,o), +(285,78,c), +(218,78,o), +(165,127.277,o), +(165,221,c), +(165,530,l), +(65,530,l), +(65,198,l), +(65,70,o), +(140,-10,o), +(247,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(338,585,l), +(268,725,l), +(142,725,l), +(252,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = u; +}, +{ +pos = (35,0); +ref = gravecomb; +} +); +width = 570; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = u; +}, +{ +pos = (35,0); +ref = grave; +} +); +width = 570; +} +); +unicode = 249; +}, +{ +color = 10; +glyphname = uhungarumlaut; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 13:48:44 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (41,0); +ref = hungarumlautcomb; +} +); +width = 585; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (285,0); +}, +{ +name = top; +pos = (285,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(356,-10,o), +(438,79,o), +(438,221,c), +(405,221,l), +(405,127.277,o), +(352,78,o), +(285,78,c), +(218,78,o), +(165,127.277,o), +(165,221,c), +(165,530,l), +(65,530,l), +(65,198,l), +(65,70,o), +(140,-10,o), +(247,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(393,585,l), +(493,725,l), +(382,725,l), +(312,585,l) +); +}, +{ +closed = 1; +nodes = ( +(263,585,l), +(333,725,l), +(232,725,l), +(182,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = u; +}, +{ +pos = (35,0); +ref = hungarumlautcomb; +} +); +width = 570; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = u; +}, +{ +pos = (35,0); +ref = hungarumlaut; +} +); +width = 570; +} +); +unicode = 369; +}, +{ +color = 10; +glyphname = umacron; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (43,0); +ref = macroncomb; +} +); +width = 585; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (285,0); +}, +{ +name = top; +pos = (285,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(356,-10,o), +(438,79,o), +(438,221,c), +(405,221,l), +(405,127.277,o), +(352,78,o), +(285,78,c), +(218,78,o), +(165,127.277,o), +(165,221,c), +(165,530,l), +(65,530,l), +(65,198,l), +(65,70,o), +(140,-10,o), +(247,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(423,621,l), +(423,705,l), +(147,705,l), +(147,621,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = u; +}, +{ +pos = (35,0); +ref = macroncomb; +} +); +width = 570; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = u; +}, +{ +pos = (35,0); +ref = macron; +} +); +width = 570; +} +); +unicode = 363; +}, +{ +color = 10; +glyphname = uogonek; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 13:39:31 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (193,0); +ref = ogonekcomb; +} +); +width = 585; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(356,-10,o), +(438,79,o), +(438,221,c), +(405,221,l), +(405,127,o), +(352,78,o), +(285,78,c), +(218,78,o), +(165,127,o), +(165,221,c), +(165,530,l), +(65,530,l), +(65,198,l), +(65,70,o), +(140,-10,o), +(247,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(442,-185,o), +(477,-176,o), +(505,-165,c), +(496,-84,l), +(473,-94,o), +(439,-106,o), +(419,-106,c), +(406,-106,o), +(398,-101,o), +(398,-89,c), +(398,-65,o), +(435,-34,o), +(505,0,c), +(405,0,l), +(337,-37,o), +(314,-69,o), +(314,-111,c), +(314,-153,o), +(348,-185,o), +(413,-185,cs) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = u; +}, +{ +pos = (201,0); +ref = ogonekcomb; +} +); +width = 570; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(337,-37,o), +(314,-69,o), +(314,-111,c), +(314,-153,o), +(348,-185,o), +(413,-185,cs), +(442,-185,o), +(477,-176,o), +(505,-165,c), +(496,-84,l), +(473,-94,o), +(439,-106,o), +(419,-106,c), +(406,-106,o), +(398,-101,o), +(398,-89,c), +(398,-65,o), +(435,-34,o), +(505,0,c), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(405,530,l), +(405,0,l), +(505,0,l), +(505,530,l) +); +}, +{ +closed = 1; +nodes = ( +(165,530,l), +(65,530,l), +(65,198,l), +(65,70,o), +(140,-10,o), +(247,-10,c), +(356,-10,o), +(438,79,o), +(438,221,c), +(405,221,l), +(405,127,o), +(352,78,o), +(285,78,c), +(218,78,o), +(165,127,o), +(165,221,c) +); +} +); +width = 570; +} +); +unicode = 371; +}, +{ +color = 10; +glyphname = uring; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (143,0); +ref = ringcomb; +} +); +width = 585; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (285,0); +}, +{ +name = top; +pos = (285,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(356,-10,o), +(438,79,o), +(438,221,c), +(405,221,l), +(405,127.277,o), +(352,78,o), +(285,78,c), +(218,78,o), +(165,127.277,o), +(165,221,c), +(165,530,l), +(65,530,l), +(65,198,l), +(65,70,o), +(140,-10,o), +(247,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(341,575,o), +(382,611,o), +(382,666,cs), +(382,722,o), +(341,758,o), +(285,758,cs), +(229,758,o), +(188,722,o), +(188,666,cs), +(188,611,o), +(229,575,o), +(285,575,cs) +); +}, +{ +closed = 1; +nodes = ( +(264,630,o), +(251,646,o), +(251,666,cs), +(251,687,o), +(264,703,o), +(285,703,cs), +(306,703,o), +(319,687,o), +(319,666,cs), +(319,646,o), +(306,630,o), +(285,630,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = u; +}, +{ +pos = (135,0); +ref = ringcomb; +} +); +width = 570; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = u; +}, +{ +pos = (135,0); +ref = ring; +} +); +width = 570; +} +); +unicode = 367; +}, +{ +color = 10; +glyphname = utilde; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (43,0); +ref = tildecomb; +} +); +width = 585; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (285,0); +}, +{ +name = top; +pos = (285,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(356,-10,o), +(438,79,o), +(438,221,c), +(405,221,l), +(405,127.277,o), +(352,78,o), +(285,78,c), +(218,78,o), +(165,127.277,o), +(165,221,c), +(165,530,l), +(65,530,l), +(65,198,l), +(65,70,o), +(140,-10,o), +(247,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(203,585,l), +(204,624,o), +(213,642,o), +(232,642,c), +(264,642,o), +(284,585,o), +(343,585,c), +(396,585,o), +(429,639,o), +(435,725,c), +(367,725,l), +(366,686,o), +(357,668,o), +(338,668,c), +(307,668,o), +(286,725,o), +(227,725,c), +(174,725,o), +(141,671,o), +(135,585,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = u; +}, +{ +pos = (35,0); +ref = tildecomb; +} +); +width = 570; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = u; +}, +{ +pos = (35,0); +ref = tilde; +} +); +width = 570; +} +); +unicode = 361; +}, +{ +color = 6; +glyphname = v; +kernLeft = v; +kernRight = v; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(300,0,l), +(166,530,l), +(5,530,l), +(154,0,l) +); +}, +{ +closed = 1; +nodes = ( +(388,0,l), +(537,530,l), +(380,530,l), +(251,0,l) +); +} +); +width = 542; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(278,0,l), +(113,530,l), +(8,530,l), +(177,0,l) +); +}, +{ +closed = 1; +nodes = ( +(331,0,l), +(500,530,l), +(399,530,l), +(238,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(278,0,l), +(113,530,l), +(8,530,l), +(177,0,l) +); +}, +{ +closed = 1; +nodes = ( +(331,0,l), +(500,530,l), +(399,530,l), +(238,0,l) +); +} +); +width = 508; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(278,0,l), +(113,530,l), +(8,530,l), +(177,0,l) +); +}, +{ +closed = 1; +nodes = ( +(331,0,l), +(500,530,l), +(399,530,l), +(238,0,l) +); +} +); +width = 508; +} +); +unicode = 118; +}, +{ +color = 6; +glyphname = w; +kernLeft = w; +kernRight = w; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (426,0); +}, +{ +name = top; +pos = (426,530); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(257,0,l), +(161,530,l), +(10,530,l), +(122,0,l) +); +}, +{ +closed = 1; +nodes = ( +(350,0,l), +(445,530,l), +(319,530,l), +(222,0,l) +); +}, +{ +closed = 1; +nodes = ( +(637,0,l), +(537,530,l), +(405,530,l), +(502,0,l) +); +}, +{ +closed = 1; +nodes = ( +(729,0,l), +(841,530,l), +(694,530,l), +(602,0,l) +); +} +); +width = 851; +}, +{ +anchors = ( +{ +name = bottom; +pos = (384,0); +}, +{ +name = top; +pos = (384,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (384,0); +}, +{ +name = top; +pos = (384,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(235,0,l), +(111,530,l), +(10,530,l), +(141,0,l) +); +}, +{ +closed = 1; +nodes = ( +(283,0,l), +(407,530,l), +(322,530,l), +(197,0,l) +); +}, +{ +closed = 1; +nodes = ( +(579,0,l), +(451,530,l), +(361,530,l), +(485,0,l) +); +}, +{ +closed = 1; +nodes = ( +(627,0,l), +(758,530,l), +(661,530,l), +(541,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(235,0,l), +(111,530,l), +(10,530,l), +(141,0,l) +); +}, +{ +closed = 1; +nodes = ( +(283,0,l), +(407,530,l), +(322,530,l), +(197,0,l) +); +}, +{ +closed = 1; +nodes = ( +(579,0,l), +(451,530,l), +(361,530,l), +(485,0,l) +); +}, +{ +closed = 1; +nodes = ( +(627,0,l), +(758,530,l), +(661,530,l), +(541,0,l) +); +} +); +width = 768; +}, +{ +anchors = ( +{ +name = bottom; +pos = (385,0); +}, +{ +name = top; +pos = (385,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(235,0,l), +(111,530,l), +(10,530,l), +(141,0,l) +); +}, +{ +closed = 1; +nodes = ( +(283,0,l), +(407,530,l), +(322,530,l), +(197,0,l) +); +}, +{ +closed = 1; +nodes = ( +(579,0,l), +(451,530,l), +(361,530,l), +(485,0,l) +); +}, +{ +closed = 1; +nodes = ( +(627,0,l), +(758,530,l), +(661,530,l), +(541,0,l) +); +} +); +width = 768; +} +); +unicode = 119; +}, +{ +color = 10; +glyphname = wacute; +kernLeft = w; +kernRight = w; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = w; +}, +{ +pos = (295,0); +ref = acutecomb; +} +); +width = 851; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (384,0); +}, +{ +name = top; +pos = (384,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(235,0,l), +(111,530,l), +(10,530,l), +(141,0,l) +); +}, +{ +closed = 1; +nodes = ( +(283,0,l), +(407,530,l), +(322,530,l), +(197,0,l) +); +}, +{ +closed = 1; +nodes = ( +(579,0,l), +(451,530,l), +(361,530,l), +(485,0,l) +); +}, +{ +closed = 1; +nodes = ( +(627,0,l), +(758,530,l), +(661,530,l), +(541,0,l) +); +}, +{ +closed = 1; +nodes = ( +(417,585,l), +(527,725,l), +(401,725,l), +(331,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = w; +}, +{ +pos = (224,0); +ref = acutecomb; +} +); +width = 768; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = w; +}, +{ +pos = (224,0); +ref = acute; +} +); +width = 768; +} +); +unicode = 7811; +}, +{ +color = 10; +glyphname = wcircumflex; +kernLeft = w; +kernRight = w; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = w; +}, +{ +pos = (176,0); +ref = circumflexcomb; +} +); +width = 851; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (384,0); +}, +{ +name = top; +pos = (384,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(235,0,l), +(111,530,l), +(10,530,l), +(141,0,l) +); +}, +{ +closed = 1; +nodes = ( +(283,0,l), +(407,530,l), +(322,530,l), +(197,0,l) +); +}, +{ +closed = 1; +nodes = ( +(579,0,l), +(451,530,l), +(361,530,l), +(485,0,l) +); +}, +{ +closed = 1; +nodes = ( +(627,0,l), +(758,530,l), +(661,530,l), +(541,0,l) +); +}, +{ +closed = 1; +nodes = ( +(540,585,l), +(440,725,l), +(334,725,l), +(452,585,l) +); +}, +{ +closed = 1; +nodes = ( +(316,585,l), +(434,725,l), +(328,725,l), +(228,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = w; +}, +{ +pos = (134,0); +ref = circumflexcomb; +} +); +width = 768; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = w; +}, +{ +pos = (134,0); +ref = circumflex; +} +); +width = 768; +} +); +unicode = 373; +}, +{ +color = 10; +glyphname = wdieresis; +kernLeft = w; +kernRight = w; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = w; +}, +{ +pos = (176,0); +ref = dieresiscomb; +} +); +width = 851; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (384,0); +}, +{ +name = top; +pos = (384,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(235,0,l), +(111,530,l), +(10,530,l), +(141,0,l) +); +}, +{ +closed = 1; +nodes = ( +(283,0,l), +(407,530,l), +(322,530,l), +(197,0,l) +); +}, +{ +closed = 1; +nodes = ( +(579,0,l), +(451,530,l), +(361,530,l), +(485,0,l) +); +}, +{ +closed = 1; +nodes = ( +(627,0,l), +(758,530,l), +(661,530,l), +(541,0,l) +); +}, +{ +closed = 1; +nodes = ( +(507,602,o), +(532,625,o), +(532,658,cs), +(532,692,o), +(507,715,o), +(475,715,cs), +(443,715,o), +(418,692,o), +(418,658,cs), +(418,625,o), +(443,602,o), +(475,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(325,602,o), +(350,625,o), +(350,658,cs), +(350,692,o), +(325,715,o), +(293,715,cs), +(261,715,o), +(236,692,o), +(236,658,cs), +(236,625,o), +(261,602,o), +(293,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = w; +}, +{ +pos = (134,0); +ref = dieresiscomb; +} +); +width = 768; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = w; +}, +{ +pos = (134,0); +ref = dieresis; +} +); +width = 768; +} +); +unicode = 7813; +}, +{ +color = 10; +glyphname = wgrave; +kernLeft = w; +kernRight = w; +lastChange = "2024-03-21 13:48:17 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = w; +}, +{ +pos = (176,0); +ref = gravecomb; +} +); +width = 851; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (384,0); +}, +{ +name = top; +pos = (384,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(235,0,l), +(111,530,l), +(10,530,l), +(141,0,l) +); +}, +{ +closed = 1; +nodes = ( +(283,0,l), +(407,530,l), +(322,530,l), +(197,0,l) +); +}, +{ +closed = 1; +nodes = ( +(579,0,l), +(451,530,l), +(361,530,l), +(485,0,l) +); +}, +{ +closed = 1; +nodes = ( +(627,0,l), +(758,530,l), +(661,530,l), +(541,0,l) +); +}, +{ +closed = 1; +nodes = ( +(437,585,l), +(367,725,l), +(241,725,l), +(351,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = w; +}, +{ +pos = (134,0); +ref = gravecomb; +} +); +width = 768; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = w; +}, +{ +pos = (134,0); +ref = grave; +} +); +width = 768; +} +); +unicode = 7809; +}, +{ +color = 6; +glyphname = x; +kernLeft = x; +kernRight = x; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(517,0,l), +(183,530,l), +(15,530,l), +(349,0,l) +); +}, +{ +closed = 1; +nodes = ( +(168,0,l), +(285,209,l), +(326,253,l), +(507,530,l), +(344,530,l), +(237,337,l), +(195,292,l), +(5,0,l) +); +} +); +width = 522; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(491,0,l), +(141,530,l), +(25,530,l), +(375,0,l) +); +}, +{ +closed = 1; +nodes = ( +(126,0,l), +(261,218,l), +(296,253,l), +(481,530,l), +(370,530,l), +(245,328,l), +(210,292,l), +(15,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(491,0,l), +(141,530,l), +(25,530,l), +(375,0,l) +); +}, +{ +closed = 1; +nodes = ( +(126,0,l), +(261,218,l), +(296,253,l), +(481,530,l), +(370,530,l), +(245,328,l), +(210,292,l), +(15,0,l) +); +} +); +width = 506; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(491,0,l), +(141,530,l), +(25,530,l), +(375,0,l) +); +}, +{ +closed = 1; +nodes = ( +(261,218,l), +(296,253,l), +(481,530,l), +(370,530,l), +(245,328,l), +(210,292,l), +(15,0,l), +(126,0,l) +); +} +); +width = 506; +} +); +unicode = 120; +}, +{ +color = 6; +glyphname = y; +kernLeft = v; +kernRight = v; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (275,530); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(268,-190,o), +(344,-154,o), +(388,0,cs), +(537,530,l), +(380,530,l), +(250,0,ls), +(241,-38,o), +(209,-58,o), +(148,-58,c), +(111,-58,o), +(77,-50,o), +(49,-42,c), +(49,-175,l), +(85,-185,o), +(121,-190,o), +(164,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(300,0,l), +(166,530,l), +(5,530,l), +(154,0,l) +); +} +); +width = 542; +}, +{ +anchors = ( +{ +name = top; +pos = (258,530); +} +); +background = { +anchors = ( +{ +name = top; +pos = (258,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(225,-185,o), +(285,-144,o), +(331,0,cs), +(500,530,l), +(399,530,l), +(238,0,ls), +(216,-72,o), +(182,-94,o), +(121,-94,c), +(98,-94,o), +(74,-90,o), +(50,-83,c), +(50,-175,l), +(73,-182,o), +(96,-185,o), +(125,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(278,0,l), +(113,530,l), +(8,530,l), +(177,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(225,-185,o), +(285,-144,o), +(331,0,cs), +(500,530,l), +(399,530,l), +(238,0,ls), +(216,-72,o), +(182,-94,o), +(121,-94,c), +(98,-94,o), +(74,-90,o), +(50,-83,c), +(50,-175,l), +(73,-182,o), +(96,-185,o), +(125,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(278,0,l), +(113,530,l), +(8,530,l), +(177,0,l) +); +} +); +width = 508; +}, +{ +anchors = ( +{ +name = top; +pos = (258,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(278,0,l), +(113,530,l), +(8,530,l), +(177,0,l) +); +}, +{ +closed = 1; +nodes = ( +(216,-72,o), +(182,-94,o), +(121,-94,c), +(98,-94,o), +(74,-90,o), +(50,-83,c), +(50,-175,l), +(73,-182,o), +(96,-185,o), +(125,-185,c), +(225,-185,o), +(285,-144,o), +(331,0,cs), +(500,530,l), +(399,530,l), +(238,0,ls) +); +} +); +width = 508; +} +); +unicode = 121; +}, +{ +color = 10; +glyphname = yacute; +kernLeft = v; +kernRight = v; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = y; +}, +{ +pos = (144,0); +ref = acutecomb; +} +); +width = 542; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (258,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(225,-185,o), +(285,-144,o), +(331,0,cs), +(500,530,l), +(399,530,l), +(238,0,ls), +(216,-72,o), +(182,-94,o), +(121,-94,c), +(98,-94,o), +(74,-90,o), +(50,-83,c), +(50,-175,l), +(73,-182,o), +(96,-185,o), +(125,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(278,0,l), +(113,530,l), +(8,530,l), +(177,0,l) +); +}, +{ +closed = 1; +nodes = ( +(291,585,l), +(401,725,l), +(275,725,l), +(205,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = y; +}, +{ +pos = (98,0); +ref = acutecomb; +} +); +width = 508; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = y; +}, +{ +pos = (98,0); +ref = acute; +} +); +width = 508; +} +); +unicode = 253; +}, +{ +color = 10; +glyphname = ycircumflex; +kernLeft = v; +kernRight = v; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = y; +}, +{ +pos = (25,0); +ref = circumflexcomb; +} +); +width = 542; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (258,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(225,-185,o), +(285,-144,o), +(331,0,cs), +(500,530,l), +(399,530,l), +(238,0,ls), +(216,-72,o), +(182,-94,o), +(121,-94,c), +(98,-94,o), +(74,-90,o), +(50,-83,c), +(50,-175,l), +(73,-182,o), +(96,-185,o), +(125,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(278,0,l), +(113,530,l), +(8,530,l), +(177,0,l) +); +}, +{ +closed = 1; +nodes = ( +(414,585,l), +(314,725,l), +(208,725,l), +(326,585,l) +); +}, +{ +closed = 1; +nodes = ( +(190,585,l), +(308,725,l), +(202,725,l), +(102,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = y; +}, +{ +pos = (8,0); +ref = circumflexcomb; +} +); +width = 508; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = y; +}, +{ +pos = (8,0); +ref = circumflex; +} +); +width = 508; +} +); +unicode = 375; +}, +{ +color = 10; +glyphname = ydieresis; +kernLeft = v; +kernRight = v; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = y; +}, +{ +pos = (25,0); +ref = dieresiscomb; +} +); +width = 542; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (258,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(225,-185,o), +(285,-144,o), +(331,0,cs), +(500,530,l), +(399,530,l), +(238,0,ls), +(216,-72,o), +(182,-94,o), +(121,-94,c), +(98,-94,o), +(74,-90,o), +(50,-83,c), +(50,-175,l), +(73,-182,o), +(96,-185,o), +(125,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(278,0,l), +(113,530,l), +(8,530,l), +(177,0,l) +); +}, +{ +closed = 1; +nodes = ( +(381,602,o), +(406,625,o), +(406,658,cs), +(406,692,o), +(381,715,o), +(349,715,cs), +(317,715,o), +(292,692,o), +(292,658,cs), +(292,625,o), +(317,602,o), +(349,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(199,602,o), +(224,625,o), +(224,658,cs), +(224,692,o), +(199,715,o), +(167,715,cs), +(135,715,o), +(110,692,o), +(110,658,cs), +(110,625,o), +(135,602,o), +(167,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = y; +}, +{ +pos = (8,0); +ref = dieresiscomb; +} +); +width = 508; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = y; +}, +{ +pos = (8,0); +ref = dieresis; +} +); +width = 508; +} +); +unicode = 255; +}, +{ +color = 10; +glyphname = ygrave; +kernLeft = v; +kernRight = v; +lastChange = "2024-03-21 13:48:17 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = y; +}, +{ +pos = (25,0); +ref = gravecomb; +} +); +width = 542; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (258,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(225,-185,o), +(285,-144,o), +(331,0,cs), +(500,530,l), +(399,530,l), +(238,0,ls), +(216,-72,o), +(182,-94,o), +(121,-94,c), +(98,-94,o), +(74,-90,o), +(50,-83,c), +(50,-175,l), +(73,-182,o), +(96,-185,o), +(125,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(278,0,l), +(113,530,l), +(8,530,l), +(177,0,l) +); +}, +{ +closed = 1; +nodes = ( +(311,585,l), +(241,725,l), +(115,725,l), +(225,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = y; +}, +{ +pos = (8,0); +ref = gravecomb; +} +); +width = 508; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = y; +}, +{ +pos = (8,0); +ref = grave; +} +); +width = 508; +} +); +unicode = 7923; +}, +{ +color = 10; +glyphname = ymacron; +kernLeft = v; +kernRight = v; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = y; +}, +{ +pos = (25,0); +ref = macroncomb; +} +); +width = 542; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (258,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(225,-185,o), +(285,-144,o), +(331,0,cs), +(500,530,l), +(399,530,l), +(238,0,ls), +(216,-72,o), +(182,-94,o), +(121,-94,c), +(98,-94,o), +(74,-90,o), +(50,-83,c), +(50,-175,l), +(73,-182,o), +(96,-185,o), +(125,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(278,0,l), +(113,530,l), +(8,530,l), +(177,0,l) +); +}, +{ +closed = 1; +nodes = ( +(396,621,l), +(396,705,l), +(120,705,l), +(120,621,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = y; +}, +{ +pos = (8,0); +ref = macroncomb; +} +); +width = 508; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = y; +}, +{ +pos = (8,0); +ref = macron; +} +); +width = 508; +} +); +unicode = 563; +}, +{ +color = 10; +glyphname = ytilde; +kernLeft = v; +kernRight = v; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = y; +}, +{ +pos = (25,0); +ref = tildecomb; +} +); +width = 542; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (258,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(225,-185,o), +(285,-144,o), +(331,0,cs), +(500,530,l), +(399,530,l), +(238,0,ls), +(216,-72,o), +(182,-94,o), +(121,-94,c), +(98,-94,o), +(74,-90,o), +(50,-83,c), +(50,-175,l), +(73,-182,o), +(96,-185,o), +(125,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(278,0,l), +(113,530,l), +(8,530,l), +(177,0,l) +); +}, +{ +closed = 1; +nodes = ( +(176,585,l), +(177,624,o), +(186,642,o), +(205,642,c), +(237,642,o), +(257,585,o), +(316,585,c), +(369,585,o), +(402,639,o), +(408,725,c), +(340,725,l), +(339,686,o), +(330,668,o), +(311,668,c), +(280,668,o), +(259,725,o), +(200,725,c), +(147,725,o), +(114,671,o), +(108,585,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = y; +}, +{ +pos = (8,0); +ref = tildecomb; +} +); +width = 508; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = y; +}, +{ +pos = (8,0); +ref = tilde; +} +); +width = 508; +} +); +unicode = 7929; +}, +{ +color = 6; +glyphname = z; +kernLeft = z; +kernRight = z; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (250,0); +}, +{ +name = center; +pos = (250,265); +}, +{ +name = top; +pos = (250,530); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(471,0,l), +(471,123,l), +(223,123,l), +(461,433,l), +(461,530,l), +(38,530,l), +(38,407,l), +(266,407,l), +(28,97,l), +(28,0,l) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = bottom; +pos = (244,0); +}, +{ +name = center; +pos = (244,265); +}, +{ +name = top; +pos = (244,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (244,0); +}, +{ +name = center; +pos = (244,265); +}, +{ +name = top; +pos = (244,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(153,52,l), +(440,478,l), +(324,478,l), +(37,52,l) +); +}, +{ +closed = 1; +nodes = ( +(450,0,l), +(450,87,l), +(77,87,l), +(37,52,l), +(37,0,l) +); +}, +{ +closed = 1; +nodes = ( +(400,443,l), +(440,478,l), +(440,530,l), +(47,530,l), +(47,443,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(450,0,l), +(450,87,l), +(177,87,l), +(440,478,l), +(440,530,l), +(47,530,l), +(47,443,l), +(300,443,l), +(37,52,l), +(37,0,l) +); +} +); +width = 487; +}, +{ +anchors = ( +{ +name = bottom; +pos = (251,0); +}, +{ +name = top; +pos = (251,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(155,0,l), +(155,530,l), +(55,530,l), +(55,0,l) +); +}, +{ +closed = 1; +nodes = ( +(395,0,l), +(495,0,l), +(495,332,l), +(495,460,o), +(420,540,o), +(313,540,c), +(204,540,o), +(122,451,o), +(122,309,c), +(155,309,l), +(155,406,o), +(208,457,o), +(275,457,c), +(342,457,o), +(395,406,o), +(395,309,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(47,443,l), +(400,443,l), +(440,478,l), +(440,530,l), +(47,530,l) +); +}, +{ +closed = 1; +nodes = ( +(37,0,l), +(450,0,l), +(450,87,l), +(77,87,l), +(37,52,l) +); +}, +{ +closed = 1; +nodes = ( +(153,52,l), +(440,478,l), +(324,478,l), +(37,52,l) +); +} +); +width = 487; +} +); +unicode = 122; +}, +{ +color = 10; +glyphname = zacute; +kernLeft = z; +kernRight = z; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = z; +}, +{ +pos = (119,0); +ref = acutecomb; +} +); +width = 499; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (244,0); +}, +{ +name = center; +pos = (244,265); +}, +{ +name = top; +pos = (244,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(153,52,l), +(440,478,l), +(324,478,l), +(37,52,l) +); +}, +{ +closed = 1; +nodes = ( +(450,0,l), +(450,87,l), +(77,87,l), +(37,52,l), +(37,0,l) +); +}, +{ +closed = 1; +nodes = ( +(400,443,l), +(440,478,l), +(440,530,l), +(47,530,l), +(47,443,l) +); +}, +{ +closed = 1; +nodes = ( +(277,585,l), +(387,725,l), +(261,725,l), +(191,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = z; +}, +{ +pos = (84,0); +ref = acutecomb; +} +); +width = 487; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = z; +}, +{ +pos = (84,0); +ref = acute; +} +); +width = 487; +} +); +unicode = 378; +}, +{ +color = 10; +glyphname = zcaron; +kernLeft = z; +kernRight = z; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = z; +}, +{ +ref = caroncomb; +} +); +width = 499; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (244,0); +}, +{ +name = center; +pos = (244,265); +}, +{ +name = top; +pos = (244,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(153,52,l), +(440,478,l), +(324,478,l), +(37,52,l) +); +}, +{ +closed = 1; +nodes = ( +(450,0,l), +(450,87,l), +(77,87,l), +(37,52,l), +(37,0,l) +); +}, +{ +closed = 1; +nodes = ( +(400,443,l), +(440,478,l), +(440,530,l), +(47,530,l), +(47,443,l) +); +}, +{ +closed = 1; +nodes = ( +(300,585,l), +(400,725,l), +(312,725,l), +(194,585,l) +); +}, +{ +closed = 1; +nodes = ( +(294,585,l), +(176,725,l), +(88,725,l), +(188,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = z; +}, +{ +pos = (-6,0); +ref = caroncomb; +} +); +width = 487; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = z; +}, +{ +pos = (-6,0); +ref = caron; +} +); +width = 487; +} +); +unicode = 382; +}, +{ +color = 10; +glyphname = zdotaccent; +kernLeft = z; +kernRight = z; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = z; +}, +{ +ref = dotaccentcomb; +} +); +width = 499; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (244,0); +}, +{ +name = center; +pos = (244,265); +}, +{ +name = top; +pos = (244,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(153,52,l), +(440,478,l), +(324,478,l), +(37,52,l) +); +}, +{ +closed = 1; +nodes = ( +(450,0,l), +(450,87,l), +(77,87,l), +(37,52,l), +(37,0,l) +); +}, +{ +closed = 1; +nodes = ( +(400,443,l), +(440,478,l), +(440,530,l), +(47,530,l), +(47,443,l) +); +}, +{ +closed = 1; +nodes = ( +(279,602,o), +(306,627,o), +(306,663,cs), +(306,700,o), +(279,725,o), +(244,725,cs), +(209,725,o), +(182,700,o), +(182,663,cs), +(182,627,o), +(209,602,o), +(244,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = z; +}, +{ +pos = (-6,0); +ref = dotaccentcomb; +} +); +width = 487; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = z; +}, +{ +pos = (-6,0); +ref = dotaccent; +} +); +width = 487; +} +); +unicode = 380; +}, +{ +color = 10; +glyphname = i.trk; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = i; +} +); +width = 255; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (115,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(150,602,o), +(177,627,o), +(177,663,cs), +(177,700,o), +(150,725,o), +(115,725,cs), +(80,725,o), +(53,700,o), +(53,663,cs), +(53,627,o), +(80,602,o), +(115,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = i; +} +); +width = 230; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = i; +} +); +width = 230; +} +); +}, +{ +color = 6; +glyphname = f_f; +kernLeft = f; +kernRight = f; +lastChange = "2024-03-21 11:24:28 +0000"; +layers = ( +{ +anchors = ( +{ +name = caret_1; +pos = (346.5,0); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(559,0,l), +(559,541,l), +(559,582,o), +(584,603,o), +(630,603,c), +(656,603,o), +(679,598,o), +(703,592,c), +(703,715,l), +(671,724,o), +(640,730,o), +(599,730,c), +(482,730,o), +(410,665,o), +(410,536,c), +(410,0,l) +); +}, +{ +closed = 1; +nodes = ( +(223,0,l), +(223,541,l), +(223,582,o), +(248,603,o), +(294,603,c), +(320,603,o), +(341,599,o), +(361,594,c), +(361,717,l), +(333,725,o), +(304,730,o), +(263,730,c), +(146,730,o), +(74,665,o), +(74,536,c), +(74,0,l) +); +}, +{ +closed = 1; +nodes = ( +(697,407,l), +(697,530,l), +(8,530,l), +(8,407,l) +); +} +); +width = 693; +}, +{ +anchors = ( +{ +name = caret_1; +pos = (331.5,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(631,443,l), +(631,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,606,o), +(521,636,o), +(574,636,c), +(597,636,o), +(616,632,o), +(636,625,c), +(636,715,l), +(611,722,o), +(591,725,o), +(564,725,c), +(456,725,o), +(393,667,o), +(393,550,c), +(393,0,l), +(493,0,l), +(493,557,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(505,0,l), +(505,557,l), +(505,606,o), +(533,636,o), +(586,636,c), +(609,636,o), +(628,632,o), +(648,625,c), +(648,715,l), +(623,722,o), +(603,725,o), +(576,725,c), +(468,725,o), +(405,667,o), +(405,550,c), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(185,0,l), +(185,557,l), +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l) +); +}, +{ +closed = 1; +nodes = ( +(643,443,l), +(643,530,l), +(10,530,l), +(10,443,l) +); +} +); +width = 663; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(631,443,l), +(631,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,606,o), +(521,636,o), +(574,636,c), +(597,636,o), +(616,632,o), +(636,625,c), +(636,715,l), +(611,722,o), +(591,725,o), +(564,725,c), +(456,725,o), +(393,667,o), +(393,550,c), +(393,0,l), +(493,0,l), +(493,557,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(505,606,o), +(533,636,o), +(586,636,c), +(609,636,o), +(628,632,o), +(648,625,c), +(648,715,l), +(623,722,o), +(603,725,o), +(576,725,c), +(468,725,o), +(405,667,o), +(405,550,c), +(405,0,l), +(505,0,l), +(505,557,l) +); +}, +{ +closed = 1; +nodes = ( +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l), +(185,0,l), +(185,557,l) +); +}, +{ +closed = 1; +nodes = ( +(643,443,l), +(643,530,l), +(10,530,l), +(10,443,l) +); +} +); +width = 663; +} +); +unicode = 64256; +}, +{ +color = 6; +glyphname = f_f_i; +kernLeft = f; +kernRight = i; +lastChange = "2024-03-21 11:24:28 +0000"; +layers = ( +{ +anchors = ( +{ +name = caret_1; +pos = (316,0); +}, +{ +name = caret_2; +pos = (632,0); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(559,0,l), +(559,541,l), +(559,582,o), +(584,603,o), +(630,603,c), +(656,603,o), +(677,599,o), +(697,594,c), +(697,717,l), +(669,725,o), +(640,730,o), +(599,730,c), +(482,730,o), +(410,665,o), +(410,536,c), +(410,0,l) +); +}, +{ +closed = 1; +nodes = ( +(223,0,l), +(223,541,l), +(223,582,o), +(248,603,o), +(294,603,c), +(320,603,o), +(341,599,o), +(361,594,c), +(361,717,l), +(333,725,o), +(304,730,o), +(263,730,c), +(146,730,o), +(74,665,o), +(74,536,c), +(74,0,l) +); +}, +{ +closed = 1; +nodes = ( +(767,407,l), +(767,530,l), +(8,530,l), +(8,407,l) +); +}, +{ +closed = 1; +nodes = ( +(895,0,l), +(895,530,l), +(746,530,l), +(746,0,l) +); +}, +{ +closed = 1; +nodes = ( +(871,580,o), +(909,614,o), +(909,667,cs), +(909,720,o), +(871,755,o), +(820,755,cs), +(770,755,o), +(732,720,o), +(732,667,cs), +(732,614,o), +(770,580,o), +(820,580,cs) +); +} +); +width = 948; +}, +{ +anchors = ( +{ +name = caret_1; +pos = (296.667,0); +}, +{ +name = caret_2; +pos = (593.333,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(408,443,l), +(408,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,0,l), +(493,530,l), +(393,530,l), +(393,0,l) +); +}, +{ +closed = 1; +nodes = ( +(478,602,o), +(505,627,o), +(505,663,cs), +(505,700,o), +(478,725,o), +(443,725,cs), +(408,725,o), +(381,700,o), +(381,663,cs), +(381,627,o), +(408,602,o), +(443,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(505,0,l), +(505,557,l), +(505,606,o), +(533,636,o), +(586,636,c), +(609,636,o), +(628,632,o), +(648,625,c), +(648,715,l), +(623,722,o), +(603,725,o), +(576,725,c), +(468,725,o), +(405,667,o), +(405,550,c), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(185,0,l), +(185,557,l), +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l) +); +}, +{ +closed = 1; +nodes = ( +(773,443,l), +(773,530,l), +(10,530,l), +(10,443,l) +); +}, +{ +closed = 1; +nodes = ( +(825,0,l), +(825,530,l), +(725,530,l), +(725,0,l) +); +}, +{ +closed = 1; +nodes = ( +(810,602,o), +(837,627,o), +(837,663,cs), +(837,700,o), +(810,725,o), +(775,725,cs), +(740,725,o), +(713,700,o), +(713,663,cs), +(713,627,o), +(740,602,o), +(775,602,cs) +); +} +); +width = 890; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(408,443,l), +(408,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,0,l), +(493,530,l), +(393,530,l), +(393,0,l) +); +}, +{ +closed = 1; +nodes = ( +(478,602,o), +(505,627,o), +(505,663,cs), +(505,700,o), +(478,725,o), +(443,725,cs), +(408,725,o), +(381,700,o), +(381,663,cs), +(381,627,o), +(408,602,o), +(443,602,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(505,606,o), +(533,636,o), +(586,636,c), +(609,636,o), +(628,632,o), +(648,625,c), +(648,715,l), +(623,722,o), +(603,725,o), +(576,725,c), +(468,725,o), +(405,667,o), +(405,550,c), +(405,0,l), +(505,0,l), +(505,557,l) +); +}, +{ +closed = 1; +nodes = ( +(825,0,l), +(825,530,l), +(725,530,l), +(725,0,l) +); +}, +{ +closed = 1; +nodes = ( +(810,602,o), +(837,627,o), +(837,663,cs), +(837,700,o), +(810,725,o), +(775,725,cs), +(740,725,o), +(713,700,o), +(713,663,cs), +(713,627,o), +(740,602,o), +(775,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l), +(185,0,l), +(185,557,l) +); +}, +{ +closed = 1; +nodes = ( +(773,443,l), +(773,530,l), +(10,530,l), +(10,443,l) +); +} +); +width = 890; +} +); +unicode = 64259; +}, +{ +color = 6; +glyphname = f_f_ij; +kernLeft = f; +kernRight = q; +lastChange = "2024-03-21 11:24:28 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom_1; +pos = (201,0); +}, +{ +name = bottom_2; +pos = (602,0); +}, +{ +name = bottom_3; +pos = (1003,0); +}, +{ +name = caret_1; +pos = (401,0); +}, +{ +name = caret_2; +pos = (802,0); +}, +{ +name = top_1; +pos = (201,715); +}, +{ +name = top_2; +pos = (602,715); +}, +{ +name = top_3; +pos = (1003,715); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(559,0,l), +(559,541,l), +(559,582,o), +(584,603,o), +(630,603,c), +(656,603,o), +(677,599,o), +(697,594,c), +(697,717,l), +(669,725,o), +(640,730,o), +(599,730,c), +(482,730,o), +(410,665,o), +(410,536,c), +(410,0,l) +); +}, +{ +closed = 1; +nodes = ( +(223,0,l), +(223,541,l), +(223,582,o), +(248,603,o), +(294,603,c), +(320,603,o), +(341,599,o), +(361,594,c), +(361,717,l), +(333,725,o), +(304,730,o), +(263,730,c), +(146,730,o), +(74,665,o), +(74,536,c), +(74,0,l) +); +}, +{ +closed = 1; +nodes = ( +(767,407,l), +(767,530,l), +(8,530,l), +(8,407,l) +); +}, +{ +closed = 1; +nodes = ( +(895,0,l), +(895,530,l), +(746,530,l), +(746,0,l) +); +}, +{ +closed = 1; +nodes = ( +(1079,-190,o), +(1150,-125,o), +(1150,4,c), +(1150,530,l), +(1001,530,l), +(1001,9,l), +(1001,-33,o), +(977,-54,o), +(931,-54,c), +(908,-54,o), +(888,-49,o), +(868,-42,c), +(868,-175,l), +(896,-184,o), +(924,-190,o), +(962,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(871,580,o), +(909,614,o), +(909,667,cs), +(909,720,o), +(871,755,o), +(820,755,cs), +(770,755,o), +(732,720,o), +(732,667,cs), +(732,614,o), +(770,580,o), +(820,580,cs) +); +}, +{ +closed = 1; +nodes = ( +(1126,580,o), +(1164,614,o), +(1164,667,cs), +(1164,720,o), +(1126,755,o), +(1075,755,cs), +(1025,755,o), +(987,720,o), +(987,667,cs), +(987,614,o), +(1025,580,o), +(1075,580,cs) +); +} +); +width = 1203; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (187,0); +}, +{ +name = bottom_2; +pos = (560,0); +}, +{ +name = bottom_3; +pos = (933,0); +}, +{ +name = caret_1; +pos = (373.333,0); +}, +{ +name = caret_2; +pos = (746.667,0); +}, +{ +name = top_1; +pos = (187,715); +}, +{ +name = top_2; +pos = (560,715); +}, +{ +name = top_3; +pos = (933,715); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(408,443,l), +(408,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,0,l), +(493,530,l), +(393,530,l), +(393,0,l) +); +}, +{ +closed = 1; +nodes = ( +(478,602,o), +(505,627,o), +(505,663,cs), +(505,700,o), +(478,725,o), +(443,725,cs), +(408,725,o), +(381,700,o), +(381,663,cs), +(381,627,o), +(408,602,o), +(443,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(505,0,l), +(505,557,l), +(505,606,o), +(533,636,o), +(586,636,c), +(609,636,o), +(628,632,o), +(648,625,c), +(648,715,l), +(623,722,o), +(603,725,o), +(576,725,c), +(468,725,o), +(405,667,o), +(405,550,c), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(185,0,l), +(185,557,l), +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l) +); +}, +{ +closed = 1; +nodes = ( +(773,443,l), +(773,530,l), +(10,530,l), +(10,443,l) +); +}, +{ +closed = 1; +nodes = ( +(825,0,l), +(825,530,l), +(725,530,l), +(725,0,l) +); +}, +{ +closed = 1; +nodes = ( +(997,-185,o), +(1055,-123,o), +(1055,-10,c), +(1055,530,l), +(955,530,l), +(955,-7,l), +(955,-70,o), +(930,-94,o), +(873,-94,c), +(856,-94,o), +(835,-90,o), +(817,-83,c), +(817,-175,l), +(840,-182,o), +(863,-185,o), +(891,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(810,602,o), +(837,627,o), +(837,663,cs), +(837,700,o), +(810,725,o), +(775,725,cs), +(740,725,o), +(713,700,o), +(713,663,cs), +(713,627,o), +(740,602,o), +(775,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(1040,602,o), +(1067,627,o), +(1067,663,cs), +(1067,700,o), +(1040,725,o), +(1005,725,cs), +(970,725,o), +(943,700,o), +(943,663,cs), +(943,627,o), +(970,602,o), +(1005,602,cs) +); +} +); +width = 1120; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(408,443,l), +(408,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,0,l), +(493,530,l), +(393,530,l), +(393,0,l) +); +}, +{ +closed = 1; +nodes = ( +(478,602,o), +(505,627,o), +(505,663,cs), +(505,700,o), +(478,725,o), +(443,725,cs), +(408,725,o), +(381,700,o), +(381,663,cs), +(381,627,o), +(408,602,o), +(443,602,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(505,606,o), +(533,636,o), +(586,636,c), +(609,636,o), +(628,632,o), +(648,625,c), +(648,715,l), +(623,722,o), +(603,725,o), +(576,725,c), +(468,725,o), +(405,667,o), +(405,550,c), +(405,0,l), +(505,0,l), +(505,557,l) +); +}, +{ +closed = 1; +nodes = ( +(825,0,l), +(825,530,l), +(725,530,l), +(725,0,l) +); +}, +{ +closed = 1; +nodes = ( +(810,602,o), +(837,627,o), +(837,663,cs), +(837,700,o), +(810,725,o), +(775,725,cs), +(740,725,o), +(713,700,o), +(713,663,cs), +(713,627,o), +(740,602,o), +(775,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(1040,602,o), +(1067,627,o), +(1067,663,cs), +(1067,700,o), +(1040,725,o), +(1005,725,cs), +(970,725,o), +(943,700,o), +(943,663,cs), +(943,627,o), +(970,602,o), +(1005,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(955,-70,o), +(930,-94,o), +(873,-94,c), +(856,-94,o), +(835,-90,o), +(817,-83,c), +(817,-175,l), +(840,-182,o), +(863,-185,o), +(891,-185,c), +(997,-185,o), +(1055,-123,o), +(1055,-10,c), +(1055,530,l), +(955,530,l), +(955,-7,l) +); +}, +{ +closed = 1; +nodes = ( +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l), +(185,0,l), +(185,557,l) +); +}, +{ +closed = 1; +nodes = ( +(773,443,l), +(773,530,l), +(10,530,l), +(10,443,l) +); +} +); +width = 1120; +} +); +}, +{ +color = 6; +glyphname = f_f_l; +kernLeft = f; +kernRight = l; +lastChange = "2024-03-21 11:24:28 +0000"; +layers = ( +{ +anchors = ( +{ +name = caret_1; +pos = (316,0); +}, +{ +name = caret_2; +pos = (632,0); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(559,0,l), +(559,541,l), +(559,582,o), +(584,603,o), +(630,603,c), +(656,603,o), +(677,599,o), +(697,594,c), +(697,717,l), +(669,725,o), +(640,730,o), +(599,730,c), +(482,730,o), +(410,665,o), +(410,536,c), +(410,0,l) +); +}, +{ +closed = 1; +nodes = ( +(223,0,l), +(223,541,l), +(223,582,o), +(248,603,o), +(294,603,c), +(320,603,o), +(341,599,o), +(361,594,c), +(361,717,l), +(333,725,o), +(304,730,o), +(263,730,c), +(146,730,o), +(74,665,o), +(74,536,c), +(74,0,l) +); +}, +{ +closed = 1; +nodes = ( +(697,407,l), +(697,530,l), +(8,530,l), +(8,407,l) +); +}, +{ +closed = 1; +nodes = ( +(895,0,l), +(895,715,l), +(746,715,l), +(746,0,l) +); +} +); +width = 948; +}, +{ +anchors = ( +{ +name = caret_1; +pos = (296.667,0); +}, +{ +name = caret_2; +pos = (593.333,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(631,443,l), +(631,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,606,o), +(521,636,o), +(574,636,c), +(597,636,o), +(616,632,o), +(636,625,c), +(636,715,l), +(611,722,o), +(591,725,o), +(564,725,c), +(456,725,o), +(393,667,o), +(393,550,c), +(393,0,l), +(493,0,l), +(493,557,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(505,0,l), +(505,557,l), +(505,606,o), +(533,636,o), +(586,636,c), +(609,636,o), +(628,632,o), +(648,625,c), +(648,715,l), +(623,722,o), +(603,725,o), +(576,725,c), +(468,725,o), +(405,667,o), +(405,550,c), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(185,0,l), +(185,557,l), +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l) +); +}, +{ +closed = 1; +nodes = ( +(643,443,l), +(643,530,l), +(10,530,l), +(10,443,l) +); +}, +{ +closed = 1; +nodes = ( +(825,0,l), +(825,715,l), +(725,715,l), +(725,0,l) +); +} +); +width = 890; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(631,443,l), +(631,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,606,o), +(521,636,o), +(574,636,c), +(597,636,o), +(616,632,o), +(636,625,c), +(636,715,l), +(611,722,o), +(591,725,o), +(564,725,c), +(456,725,o), +(393,667,o), +(393,550,c), +(393,0,l), +(493,0,l), +(493,557,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(825,0,l), +(825,715,l), +(725,715,l), +(725,0,l) +); +}, +{ +closed = 1; +nodes = ( +(505,606,o), +(533,636,o), +(586,636,c), +(609,636,o), +(628,632,o), +(648,625,c), +(648,715,l), +(623,722,o), +(603,725,o), +(576,725,c), +(468,725,o), +(405,667,o), +(405,550,c), +(405,0,l), +(505,0,l), +(505,557,l) +); +}, +{ +closed = 1; +nodes = ( +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l), +(185,0,l), +(185,557,l) +); +}, +{ +closed = 1; +nodes = ( +(643,443,l), +(643,530,l), +(10,530,l), +(10,443,l) +); +} +); +width = 890; +} +); +unicode = 64260; +}, +{ +color = 6; +glyphname = f_i; +kernLeft = f; +kernRight = i; +lastChange = "2024-03-21 11:24:28 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom_1; +pos = (153,0); +}, +{ +name = bottom_2; +pos = (459,0); +}, +{ +name = caret_1; +pos = (306,0); +}, +{ +name = top_1; +pos = (153,715); +}, +{ +name = top_2; +pos = (459,715); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(551,0,l), +(551,530,l), +(402,530,l), +(402,0,l) +); +}, +{ +closed = 1; +nodes = ( +(527,580,o), +(565,614,o), +(565,667,cs), +(565,720,o), +(527,755,o), +(476,755,cs), +(426,755,o), +(388,720,o), +(388,667,cs), +(388,614,o), +(426,580,o), +(476,580,cs) +); +}, +{ +closed = 1; +nodes = ( +(220,582,o), +(245,603,o), +(291,603,c), +(312,603,o), +(333,601,o), +(353,598,c), +(353,721,l), +(325,727,o), +(301,730,o), +(260,730,c), +(143,730,o), +(71,665,o), +(71,536,c), +(71,0,l), +(220,0,l), +(220,541,l) +); +}, +{ +closed = 1; +nodes = ( +(458,407,l), +(458,530,l), +(5,530,l), +(5,407,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(223,0,l), +(223,541,l), +(223,582,o), +(248,603,o), +(294,603,c), +(320,603,o), +(341,599,o), +(361,594,c), +(361,717,l), +(333,725,o), +(304,730,o), +(263,730,c), +(146,730,o), +(74,665,o), +(74,536,c), +(74,0,l) +); +}, +{ +closed = 1; +nodes = ( +(431,407,l), +(431,530,l), +(8,530,l), +(8,407,l) +); +}, +{ +closed = 1; +nodes = ( +(559,0,l), +(559,530,l), +(410,530,l), +(410,0,l) +); +}, +{ +closed = 1; +nodes = ( +(535,580,o), +(573,614,o), +(573,667,cs), +(573,720,o), +(535,755,o), +(484,755,cs), +(434,755,o), +(396,720,o), +(396,667,cs), +(396,614,o), +(434,580,o), +(484,580,cs) +); +} +); +width = 612; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (143,0); +}, +{ +name = bottom_2; +pos = (428,0); +}, +{ +name = caret_1; +pos = (285,0); +}, +{ +name = top_1; +pos = (143,715); +}, +{ +name = top_2; +pos = (428,715); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(408,443,l), +(408,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,0,l), +(493,530,l), +(393,530,l), +(393,0,l) +); +}, +{ +closed = 1; +nodes = ( +(478,602,o), +(505,627,o), +(505,663,cs), +(505,700,o), +(478,725,o), +(443,725,cs), +(408,725,o), +(381,700,o), +(381,663,cs), +(381,627,o), +(408,602,o), +(443,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,0,l), +(185,557,l), +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l) +); +}, +{ +closed = 1; +nodes = ( +(453,443,l), +(453,530,l), +(10,530,l), +(10,443,l) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(490,602,o), +(517,627,o), +(517,663,cs), +(517,700,o), +(490,725,o), +(455,725,cs), +(420,725,o), +(393,700,o), +(393,663,cs), +(393,627,o), +(420,602,o), +(455,602,cs) +); +} +); +width = 570; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(408,443,l), +(408,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,0,l), +(493,530,l), +(393,530,l), +(393,0,l) +); +}, +{ +closed = 1; +nodes = ( +(478,602,o), +(505,627,o), +(505,663,cs), +(505,700,o), +(478,725,o), +(443,725,cs), +(408,725,o), +(381,700,o), +(381,663,cs), +(381,627,o), +(408,602,o), +(443,602,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l), +(185,0,l), +(185,557,l) +); +}, +{ +closed = 1; +nodes = ( +(453,443,l), +(453,530,l), +(10,530,l), +(10,443,l) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(490,602,o), +(517,627,o), +(517,663,cs), +(517,700,o), +(490,725,o), +(455,725,cs), +(420,725,o), +(393,700,o), +(393,663,cs), +(393,627,o), +(420,602,o), +(455,602,cs) +); +} +); +width = 570; +} +); +}, +{ +color = 6; +glyphname = f_ij; +kernLeft = f; +kernRight = q; +lastChange = "2024-03-21 11:24:28 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom_1; +pos = (217,0); +}, +{ +name = bottom_2; +pos = (650,0); +}, +{ +name = caret_1; +pos = (433.5,0); +}, +{ +name = top_1; +pos = (217,715); +}, +{ +name = top_2; +pos = (650,715); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(551,0,l), +(551,530,l), +(402,530,l), +(402,0,l) +); +}, +{ +closed = 1; +nodes = ( +(527,580,o), +(565,614,o), +(565,667,cs), +(565,720,o), +(527,755,o), +(476,755,cs), +(426,755,o), +(388,720,o), +(388,667,cs), +(388,614,o), +(426,580,o), +(476,580,cs) +); +}, +{ +closed = 1; +nodes = ( +(220,582,o), +(245,603,o), +(291,603,c), +(312,603,o), +(333,601,o), +(353,598,c), +(353,721,l), +(325,727,o), +(301,730,o), +(260,730,c), +(143,730,o), +(71,665,o), +(71,536,c), +(71,0,l), +(220,0,l), +(220,541,l) +); +}, +{ +closed = 1; +nodes = ( +(458,407,l), +(458,530,l), +(5,530,l), +(5,407,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(223,0,l), +(223,541,l), +(223,582,o), +(248,603,o), +(294,603,c), +(320,603,o), +(341,599,o), +(361,594,c), +(361,717,l), +(333,725,o), +(304,730,o), +(263,730,c), +(146,730,o), +(74,665,o), +(74,536,c), +(74,0,l) +); +}, +{ +closed = 1; +nodes = ( +(431,407,l), +(431,530,l), +(8,530,l), +(8,407,l) +); +}, +{ +closed = 1; +nodes = ( +(559,0,l), +(559,530,l), +(410,530,l), +(410,0,l) +); +}, +{ +closed = 1; +nodes = ( +(743,-190,o), +(814,-125,o), +(814,4,c), +(814,530,l), +(665,530,l), +(665,9,l), +(665,-33,o), +(641,-54,o), +(595,-54,c), +(572,-54,o), +(552,-49,o), +(532,-42,c), +(532,-175,l), +(560,-184,o), +(588,-190,o), +(626,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(535,580,o), +(573,614,o), +(573,667,cs), +(573,720,o), +(535,755,o), +(484,755,cs), +(434,755,o), +(396,720,o), +(396,667,cs), +(396,614,o), +(434,580,o), +(484,580,cs) +); +}, +{ +closed = 1; +nodes = ( +(790,580,o), +(828,614,o), +(828,667,cs), +(828,720,o), +(790,755,o), +(739,755,cs), +(689,755,o), +(651,720,o), +(651,667,cs), +(651,614,o), +(689,580,o), +(739,580,cs) +); +} +); +width = 867; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (200,0); +}, +{ +name = bottom_2; +pos = (600,0); +}, +{ +name = caret_1; +pos = (400,0); +}, +{ +name = top_1; +pos = (200,715); +}, +{ +name = top_2; +pos = (600,715); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(408,443,l), +(408,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,0,l), +(493,530,l), +(393,530,l), +(393,0,l) +); +}, +{ +closed = 1; +nodes = ( +(478,602,o), +(505,627,o), +(505,663,cs), +(505,700,o), +(478,725,o), +(443,725,cs), +(408,725,o), +(381,700,o), +(381,663,cs), +(381,627,o), +(408,602,o), +(443,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,0,l), +(185,557,l), +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l) +); +}, +{ +closed = 1; +nodes = ( +(453,443,l), +(453,530,l), +(10,530,l), +(10,443,l) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(677,-185,o), +(735,-123,o), +(735,-10,c), +(735,530,l), +(635,530,l), +(635,-7,l), +(635,-70,o), +(610,-94,o), +(553,-94,c), +(536,-94,o), +(515,-90,o), +(497,-83,c), +(497,-175,l), +(520,-182,o), +(543,-185,o), +(571,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(490,602,o), +(517,627,o), +(517,663,cs), +(517,700,o), +(490,725,o), +(455,725,cs), +(420,725,o), +(393,700,o), +(393,663,cs), +(393,627,o), +(420,602,o), +(455,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(720,602,o), +(747,627,o), +(747,663,cs), +(747,700,o), +(720,725,o), +(685,725,cs), +(650,725,o), +(623,700,o), +(623,663,cs), +(623,627,o), +(650,602,o), +(685,602,cs) +); +} +); +width = 800; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(408,443,l), +(408,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,0,l), +(493,530,l), +(393,530,l), +(393,0,l) +); +}, +{ +closed = 1; +nodes = ( +(478,602,o), +(505,627,o), +(505,663,cs), +(505,700,o), +(478,725,o), +(443,725,cs), +(408,725,o), +(381,700,o), +(381,663,cs), +(381,627,o), +(408,602,o), +(443,602,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l), +(185,0,l), +(185,557,l) +); +}, +{ +closed = 1; +nodes = ( +(453,443,l), +(453,530,l), +(10,530,l), +(10,443,l) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(490,602,o), +(517,627,o), +(517,663,cs), +(517,700,o), +(490,725,o), +(455,725,cs), +(420,725,o), +(393,700,o), +(393,663,cs), +(393,627,o), +(420,602,o), +(455,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(720,602,o), +(747,627,o), +(747,663,cs), +(747,700,o), +(720,725,o), +(685,725,cs), +(650,725,o), +(623,700,o), +(623,663,cs), +(623,627,o), +(650,602,o), +(685,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(635,-70,o), +(610,-94,o), +(553,-94,c), +(536,-94,o), +(515,-90,o), +(497,-83,c), +(497,-175,l), +(520,-182,o), +(543,-185,o), +(571,-185,c), +(677,-185,o), +(735,-123,o), +(735,-10,c), +(735,530,l), +(635,530,l), +(635,-7,l) +); +} +); +width = 800; +} +); +}, +{ +color = 6; +glyphname = f_l; +kernLeft = f; +kernRight = l; +lastChange = "2024-03-21 11:24:28 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom_1; +pos = (153,0); +}, +{ +name = bottom_2; +pos = (459,0); +}, +{ +name = caret_1; +pos = (306,0); +}, +{ +name = top_1; +pos = (153,715); +}, +{ +name = top_2; +pos = (459,715); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(223,0,l), +(223,541,l), +(223,582,o), +(248,603,o), +(294,603,c), +(320,603,o), +(341,599,o), +(361,594,c), +(361,717,l), +(333,725,o), +(304,730,o), +(263,730,c), +(146,730,o), +(74,665,o), +(74,536,c), +(74,0,l) +); +}, +{ +closed = 1; +nodes = ( +(361,407,l), +(361,530,l), +(8,530,l), +(8,407,l) +); +}, +{ +closed = 1; +nodes = ( +(559,0,l), +(559,715,l), +(410,715,l), +(410,0,l) +); +} +); +width = 612; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (143,0); +}, +{ +name = bottom_2; +pos = (428,0); +}, +{ +name = caret_1; +pos = (285,0); +}, +{ +name = top_1; +pos = (143,715); +}, +{ +name = top_2; +pos = (428,715); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(631,443,l), +(631,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,606,o), +(521,636,o), +(574,636,c), +(597,636,o), +(616,632,o), +(636,625,c), +(636,715,l), +(611,722,o), +(591,725,o), +(564,725,c), +(456,725,o), +(393,667,o), +(393,550,c), +(393,0,l), +(493,0,l), +(493,557,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,0,l), +(185,557,l), +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l) +); +}, +{ +closed = 1; +nodes = ( +(323,443,l), +(323,530,l), +(10,530,l), +(10,443,l) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,715,l), +(405,715,l), +(405,0,l) +); +} +); +width = 570; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(631,443,l), +(631,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,606,o), +(521,636,o), +(574,636,c), +(597,636,o), +(616,632,o), +(636,625,c), +(636,715,l), +(611,722,o), +(591,725,o), +(564,725,c), +(456,725,o), +(393,667,o), +(393,550,c), +(393,0,l), +(493,0,l), +(493,557,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(505,0,l), +(505,715,l), +(405,715,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l), +(185,0,l), +(185,557,l) +); +}, +{ +closed = 1; +nodes = ( +(323,443,l), +(323,530,l), +(10,530,l), +(10,443,l) +); +} +); +width = 570; +} +); +}, +{ +color = 6; +glyphname = fi; +kernLeft = f; +kernRight = i; +lastChange = "2024-03-21 11:24:28 +0000"; +layers = ( +{ +anchors = ( +{ +name = caret_1; +pos = (306,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(551,0,l), +(551,530,l), +(402,530,l), +(402,0,l) +); +}, +{ +closed = 1; +nodes = ( +(527,580,o), +(565,614,o), +(565,667,cs), +(565,720,o), +(527,755,o), +(476,755,cs), +(426,755,o), +(388,720,o), +(388,667,cs), +(388,614,o), +(426,580,o), +(476,580,cs) +); +}, +{ +closed = 1; +nodes = ( +(220,582,o), +(245,603,o), +(291,603,c), +(312,603,o), +(333,601,o), +(353,598,c), +(353,721,l), +(325,727,o), +(301,730,o), +(260,730,c), +(143,730,o), +(71,665,o), +(71,536,c), +(71,0,l), +(220,0,l), +(220,541,l) +); +}, +{ +closed = 1; +nodes = ( +(458,407,l), +(458,530,l), +(5,530,l), +(5,407,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(223,0,l), +(223,541,l), +(223,582,o), +(248,603,o), +(294,603,c), +(320,603,o), +(341,599,o), +(361,594,c), +(361,717,l), +(333,725,o), +(304,730,o), +(263,730,c), +(146,730,o), +(74,665,o), +(74,536,c), +(74,0,l) +); +}, +{ +closed = 1; +nodes = ( +(431,407,l), +(431,530,l), +(8,530,l), +(8,407,l) +); +}, +{ +closed = 1; +nodes = ( +(559,0,l), +(559,530,l), +(410,530,l), +(410,0,l) +); +}, +{ +closed = 1; +nodes = ( +(535,580,o), +(573,614,o), +(573,667,cs), +(573,720,o), +(535,755,o), +(484,755,cs), +(434,755,o), +(396,720,o), +(396,667,cs), +(396,614,o), +(434,580,o), +(484,580,cs) +); +} +); +width = 612; +}, +{ +anchors = ( +{ +name = caret_1; +pos = (285,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(408,443,l), +(408,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,0,l), +(493,530,l), +(393,530,l), +(393,0,l) +); +}, +{ +closed = 1; +nodes = ( +(478,602,o), +(505,627,o), +(505,663,cs), +(505,700,o), +(478,725,o), +(443,725,cs), +(408,725,o), +(381,700,o), +(381,663,cs), +(381,627,o), +(408,602,o), +(443,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,0,l), +(185,557,l), +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l) +); +}, +{ +closed = 1; +nodes = ( +(453,443,l), +(453,530,l), +(10,530,l), +(10,443,l) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(490,602,o), +(517,627,o), +(517,663,cs), +(517,700,o), +(490,725,o), +(455,725,cs), +(420,725,o), +(393,700,o), +(393,663,cs), +(393,627,o), +(420,602,o), +(455,602,cs) +); +} +); +width = 570; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(408,443,l), +(408,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,0,l), +(493,530,l), +(393,530,l), +(393,0,l) +); +}, +{ +closed = 1; +nodes = ( +(478,602,o), +(505,627,o), +(505,663,cs), +(505,700,o), +(478,725,o), +(443,725,cs), +(408,725,o), +(381,700,o), +(381,663,cs), +(381,627,o), +(408,602,o), +(443,602,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l), +(185,0,l), +(185,557,l) +); +}, +{ +closed = 1; +nodes = ( +(453,443,l), +(453,530,l), +(10,530,l), +(10,443,l) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(490,602,o), +(517,627,o), +(517,663,cs), +(517,700,o), +(490,725,o), +(455,725,cs), +(420,725,o), +(393,700,o), +(393,663,cs), +(393,627,o), +(420,602,o), +(455,602,cs) +); +} +); +width = 570; +} +); +unicode = 64257; +}, +{ +color = 6; +glyphname = fl; +kernLeft = f; +kernRight = l; +lastChange = "2024-03-21 11:24:28 +0000"; +layers = ( +{ +anchors = ( +{ +name = caret_1; +pos = (306,0); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(223,0,l), +(223,541,l), +(223,582,o), +(248,603,o), +(294,603,c), +(320,603,o), +(341,599,o), +(361,594,c), +(361,717,l), +(333,725,o), +(304,730,o), +(263,730,c), +(146,730,o), +(74,665,o), +(74,536,c), +(74,0,l) +); +}, +{ +closed = 1; +nodes = ( +(361,407,l), +(361,530,l), +(8,530,l), +(8,407,l) +); +}, +{ +closed = 1; +nodes = ( +(559,0,l), +(559,715,l), +(410,715,l), +(410,0,l) +); +} +); +width = 612; +}, +{ +anchors = ( +{ +name = caret_1; +pos = (285,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(631,443,l), +(631,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,606,o), +(521,636,o), +(574,636,c), +(597,636,o), +(616,632,o), +(636,625,c), +(636,715,l), +(611,722,o), +(591,725,o), +(564,725,c), +(456,725,o), +(393,667,o), +(393,550,c), +(393,0,l), +(493,0,l), +(493,557,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,0,l), +(185,557,l), +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l) +); +}, +{ +closed = 1; +nodes = ( +(323,443,l), +(323,530,l), +(10,530,l), +(10,443,l) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,715,l), +(405,715,l), +(405,0,l) +); +} +); +width = 570; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(631,443,l), +(631,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,606,o), +(521,636,o), +(574,636,c), +(597,636,o), +(616,632,o), +(636,625,c), +(636,715,l), +(611,722,o), +(591,725,o), +(564,725,c), +(456,725,o), +(393,667,o), +(393,550,c), +(393,0,l), +(493,0,l), +(493,557,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(505,0,l), +(505,715,l), +(405,715,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l), +(185,0,l), +(185,557,l) +); +}, +{ +closed = 1; +nodes = ( +(323,443,l), +(323,530,l), +(10,530,l), +(10,443,l) +); +} +); +width = 570; +} +); +unicode = 64258; +}, +{ +color = 6; +glyphname = ordfeminine; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(298,384,l), +(292,407,o), +(289,429,o), +(289,452,cs), +(289,581,l), +(289,656,o), +(239,700,o), +(159,700,cs), +(79,700,o), +(29,668,o), +(13,598,c), +(112,580,l), +(117,608,o), +(132,618,o), +(151,618,c), +(168,618,o), +(184,607,o), +(184,575,c), +(184,445,ls), +(184,425,o), +(187,404,o), +(192,384,c) +); +}, +{ +closed = 1; +nodes = ( +(166,374,o), +(204,427,o), +(204,512,c), +(184,512,l), +(184,473,o), +(158,452,o), +(133,452,c), +(117,452,o), +(110,461,o), +(110,473,c), +(110,484,o), +(119,495,o), +(140,500,cs), +(219,518,l), +(219,578,l), +(105,556,ls), +(42,544,o), +(10,509,o), +(10,464,c), +(10,408,o), +(47,374,o), +(95,374,c) +); +} +); +width = 317; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(30,42,o), +(98,-10,o), +(187,-10,c), +(300,-10,o), +(402,79,o), +(402,221,c), +(369,221,l), +(369,124,o), +(290,69,o), +(214,69,c), +(160,69,o), +(130,96,o), +(130,135,c), +(130,177,o), +(158,206,o), +(225,222,cs), +(389,260,l), +(389,320,l), +(192,284,ls), +(87,265,o), +(30,207,o), +(30,128,c) +); +}, +{ +closed = 1; +nodes = ( +(469,463,o), +(396,540,o), +(266,540,cs), +(160,540,o), +(76.435,486,o), +(45,384,c), +(139,353,l), +(158,433,o), +(199,465,o), +(260,465,c), +(326,465,o), +(369,422,o), +(369,325,c), +(369,0,l), +(469,0,l), +(469,337,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(288,384,l), +(282,407,o), +(279,429,o), +(279,452,cs), +(279,581,l), +(279,654,o), +(233,698,o), +(154,698,cs), +(85,698,o), +(37,666,o), +(20,603,c), +(97,585,l), +(104,618,o), +(123,632,o), +(150,632,c), +(177,632,o), +(199,616,o), +(199,575,c), +(199,445,ls), +(199,425,o), +(202,404,o), +(206,384,c) +); +}, +{ +closed = 1; +nodes = ( +(171,376,o), +(218,428,o), +(218,512,c), +(199,512,l), +(199,466,o), +(163,441,o), +(128,441,c), +(106,441,o), +(95,453,o), +(95,468,c), +(95,484,o), +(106,499,o), +(137,506,cs), +(221,524,l), +(221,575,l), +(108,556,ls), +(44,544,o), +(16,507,o), +(16,462,c), +(16,410,o), +(47,376,o), +(106,376,c) +); +} +); +width = 311; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(30,42,o), +(98,-10,o), +(187,-10,c), +(300,-10,o), +(402,79,o), +(402,221,c), +(369,221,l), +(369,124,o), +(290,69,o), +(214,69,c), +(160,69,o), +(130,96,o), +(130,135,c), +(130,177,o), +(158,206,o), +(225,222,cs), +(389,260,l), +(389,320,l), +(192,284,ls), +(87,265,o), +(30,207,o), +(30,128,c) +); +}, +{ +closed = 1; +nodes = ( +(469,463,o), +(396,540,o), +(266,540,cs), +(160,540,o), +(76.435,486,o), +(45,384,c), +(139,353,l), +(158,433,o), +(199,465,o), +(260,465,c), +(326,465,o), +(369,422,o), +(369,325,c), +(369,0,l), +(469,0,l), +(469,337,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(16,410,o), +(47,376,o), +(106,376,c), +(171,376,o), +(218,428,o), +(218,512,c), +(199,512,l), +(199,466,o), +(163,441,o), +(128,441,c), +(106,441,o), +(95,453,o), +(95,468,c), +(95,484,o), +(106,499,o), +(137,506,cs), +(221,524,l), +(221,575,l), +(108,556,ls), +(44,544,o), +(16,507,o), +(16,462,c) +); +}, +{ +closed = 1; +nodes = ( +(279,654,o), +(233,698,o), +(154,698,cs), +(85,698,o), +(37,666,o), +(20,603,c), +(97,585,l), +(104,618,o), +(123,632,o), +(150,632,c), +(177,632,o), +(199,616,o), +(199,575,c), +(199,445,ls), +(199,425,o), +(202,404,o), +(206,384,c), +(288,384,l), +(282,407,o), +(279,429,o), +(279,452,cs), +(279,581,l) +); +} +); +width = 311; +} +); +unicode = 170; +}, +{ +color = 6; +glyphname = ordmasculine; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(262,374,o), +(327,440,o), +(327,537,cs), +(327,634,o), +(262,700,o), +(169,700,cs), +(76,700,o), +(12,634,o), +(12,537,cs), +(12,440,o), +(76,374,o), +(169,374,cs) +); +}, +{ +closed = 1; +nodes = ( +(138,467,o), +(119,494,o), +(119,537,cs), +(119,580,o), +(138,607,o), +(169,607,cs), +(201,607,o), +(220,580,o), +(220,537,cs), +(220,494,o), +(201,467,o), +(169,467,cs) +); +} +); +width = 338; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(160,530,l), +(60,530,l), +(60,0,l) +); +}, +{ +closed = 1; +nodes = ( +(400,0,l), +(500,0,l), +(500,332,l), +(500,460,o), +(425,540,o), +(318,540,c), +(209,540,o), +(127,451,o), +(127,309,c), +(160,309,l), +(160,406,o), +(213,457,o), +(280,457,c), +(347,457,o), +(400,406,o), +(400,309,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(251,376,o), +(313,440,o), +(313,537,cs), +(313,634,o), +(251,698,o), +(164,698,cs), +(77,698,o), +(16,634,o), +(16,537,cs), +(16,440,o), +(77,376,o), +(164,376,cs) +); +}, +{ +closed = 1; +nodes = ( +(124,449,o), +(98,478,o), +(98,537,cs), +(98,596,o), +(124,625,o), +(164,625,cs), +(205,625,o), +(230,596,o), +(230,537,cs), +(230,478,o), +(205,449,o), +(164,449,cs) +); +} +); +width = 328; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(160,530,l), +(60,530,l), +(60,0,l) +); +}, +{ +closed = 1; +nodes = ( +(400,0,l), +(500,0,l), +(500,332,l), +(500,460,o), +(425,540,o), +(318,540,c), +(209,540,o), +(127,451,o), +(127,309,c), +(160,309,l), +(160,406,o), +(213,457,o), +(280,457,c), +(347,457,o), +(400,406,o), +(400,309,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(251,376,o), +(313,440,o), +(313,537,cs), +(313,634,o), +(251,698,o), +(164,698,cs), +(77,698,o), +(16,634,o), +(16,537,cs), +(16,440,o), +(77,376,o), +(164,376,cs) +); +}, +{ +closed = 1; +nodes = ( +(124,449,o), +(98,478,o), +(98,537,cs), +(98,596,o), +(124,625,o), +(164,625,cs), +(205,625,o), +(230,596,o), +(230,537,cs), +(230,478,o), +(205,449,o), +(164,449,cs) +); +} +); +width = 328; +} +); +unicode = 186; +}, +{ +color = 6; +glyphname = Delta; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(672,0,l), +(451,690,l), +(296,690,l), +(506,0,l) +); +}, +{ +closed = 1; +nodes = ( +(543,0,l), +(543,141,l), +(125,141,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(160,0,l), +(364,690,l), +(218,690,l), +(-3,0,l) +); +} +); +width = 668; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(642,0,l), +(403,690,l), +(301,690,l), +(532,0,l) +); +}, +{ +closed = 1; +nodes = ( +(561,0,l), +(561,96,l), +(93,96,l), +(93,0,l) +); +}, +{ +closed = 1; +nodes = ( +(119,0,l), +(345,690,l), +(251,690,l), +(12,0,l) +); +} +); +width = 654; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(93,0,l), +(561,0,l), +(561,96,l), +(93,96,l) +); +}, +{ +closed = 1; +nodes = ( +(301,690,l), +(532,0,l), +(642,0,l), +(403,690,l) +); +}, +{ +closed = 1; +nodes = ( +(251,690,l), +(12,0,l), +(119,0,l), +(345,690,l) +); +} +); +width = 654; +} +); +unicode = 916; +}, +{ +color = 6; +glyphname = Omega; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(325,294,l), +(253,301,o), +(198,347,o), +(198,422,cs), +(198,504,o), +(261,558,o), +(355,558,c), +(449,558,o), +(512,504,o), +(512,422,cs), +(512,347,o), +(457,301,o), +(385,294,c), +(385,173,l), +(572,185,o), +(670,286,o), +(670,425,cs), +(670,589,o), +(543,704,o), +(355,704,c), +(167,704,o), +(40,589,o), +(40,425,cs), +(40,286,o), +(138,185,o), +(325,173,c) +); +}, +{ +closed = 1; +nodes = ( +(325,0,l), +(325,147,l), +(40,147,l), +(40,0,l) +); +}, +{ +closed = 1; +nodes = ( +(325,0,l), +(325,225,l), +(200,225,l), +(200,0,l) +); +}, +{ +closed = 1; +nodes = ( +(510,0,l), +(510,225,l), +(385,225,l), +(385,0,l) +); +}, +{ +closed = 1; +nodes = ( +(670,0,l), +(670,147,l), +(385,147,l), +(385,0,l) +); +} +); +width = 710; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(300,205,l), +(210,228,o), +(146,298,o), +(146,412,cs), +(146,521,o), +(224,593,o), +(345,593,c), +(466,593,o), +(544,521,o), +(544,412,cs), +(544,298,o), +(480,228,o), +(390,205,c), +(390,128,l), +(536,153,o), +(650,256,o), +(650,415,cs), +(650,585,o), +(527,700,o), +(345,700,c), +(163,700,o), +(40,585,o), +(40,415,cs), +(40,256,o), +(154,153,o), +(300,128,c) +); +}, +{ +closed = 1; +nodes = ( +(300,0,l), +(300,96,l), +(40,96,l), +(40,0,l) +); +}, +{ +closed = 1; +nodes = ( +(300,0,l), +(300,180,l), +(200,180,l), +(200,0,l) +); +}, +{ +closed = 1; +nodes = ( +(490,0,l), +(490,180,l), +(390,180,l), +(390,0,l) +); +}, +{ +closed = 1; +nodes = ( +(650,0,l), +(650,96,l), +(390,96,l), +(390,0,l) +); +} +); +width = 690; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(650,0,l), +(650,96,l), +(390,96,l), +(390,0,l) +); +}, +{ +closed = 1; +nodes = ( +(490,180,l), +(390,180,l), +(390,0,l), +(490,0,l) +); +}, +{ +closed = 1; +nodes = ( +(466,593,o), +(544,521,o), +(544,412,cs), +(544,298,o), +(480,228.1,o), +(390,205,c), +(390,128,l), +(536,152.866,o), +(650,256.477,o), +(650,415,cs), +(650,585,o), +(527,700,o), +(345,700,c), +(163,700,o), +(40,585,o), +(40,415,cs), +(40,256.477,o), +(154,152.866,o), +(300,128,c), +(300,205,l), +(210,228.1,o), +(146,298,o), +(146,412,cs), +(146,521,o), +(224,593,o), +(345,593,c) +); +}, +{ +closed = 1; +nodes = ( +(300,96,l), +(40,96,l), +(40,0,l), +(300,0,l) +); +}, +{ +closed = 1; +nodes = ( +(300,0,l), +(300,180,l), +(200,180,l), +(200,0,l) +); +} +); +width = 690; +} +); +unicode = 937; +}, +{ +color = 6; +glyphname = mu; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(400,530,l), +(400,0,l), +(500,0,l), +(500,530,l) +); +}, +{ +closed = 1; +nodes = ( +(160,530,l), +(60,530,l), +(60,-175,l), +(160,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(134,70,o), +(191,-10,o), +(278,-10,c), +(366,-10,o), +(429,79,o), +(429,221,c), +(400,221,l), +(400,127,o), +(347,78,o), +(280,78,c), +(213,78,o), +(160,127,o), +(160,221,c), +(134,198,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(202,-175,l), +(202,530,l), +(53,530,l), +(53,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(355,-14,o), +(400,73,o), +(400,226,c), +(384,226,l), +(384,155,o), +(346,118,o), +(293,118,c), +(240,118,o), +(202,155,o), +(202,226,c), +(183,196,l), +(183,64,o), +(224,-14,o), +(289,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(533,0,l), +(533,530,l), +(384,530,l), +(384,0,l) +); +} +); +width = 586; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,-175,l), +(165,530,l), +(65,530,l), +(65,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(371,-10,o), +(434,79,o), +(434,221,c), +(405,221,l), +(405,127,o), +(352,78,o), +(285,78,c), +(218,78,o), +(165,127,o), +(165,221,c), +(139,198,l), +(139,70,o), +(196,-10,o), +(283,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +} +); +width = 570; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(405,530,l), +(405,0,l), +(505,0,l), +(505,530,l) +); +}, +{ +closed = 1; +nodes = ( +(165,530,l), +(65,530,l), +(65,-175,l), +(165,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(139,70,o), +(196,-10,o), +(283,-10,c), +(371,-10,o), +(434,79,o), +(434,221,c), +(405,221,l), +(405,127,o), +(352,78,o), +(285,78,c), +(218,78,o), +(165,127,o), +(165,221,c), +(139,198,l) +); +} +); +width = 570; +} +); +unicode = 956; +}, +{ +color = 6; +glyphname = pi; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(15,443,l), +(593,443,l), +(593,530,l), +(15,530,l) +); +}, +{ +closed = 1; +nodes = ( +(485,530,l), +(385,530,l), +(385,140,l), +(385,44,o), +(436,-10,o), +(527,-10,c), +(551,-10,o), +(571,-7,o), +(593,0,c), +(593,89,l), +(576,83,o), +(561,80,o), +(545,80,c), +(508,80,o), +(485,96,o), +(485,143,c) +); +}, +{ +closed = 1; +nodes = ( +(215,530,l), +(115,530,l), +(115,0,l), +(215,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(581,-14,o), +(605,-9,o), +(630,0,c), +(630,126,l), +(612,120,o), +(596,117,o), +(579,117,c), +(542,117,o), +(525,136,o), +(525,178,c), +(525,530,l), +(376,530,l), +(376,164,l), +(376,51,o), +(442,-14,o), +(552,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(251,0,l), +(251,530,l), +(102,530,l), +(102,0,l) +); +}, +{ +closed = 1; +nodes = ( +(630,402,l), +(630,530,l), +(10,530,l), +(10,402,l) +); +} +); +width = 645; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(551,-10,o), +(571,-7,o), +(593,0,c), +(593,89,l), +(576,83,o), +(561,80,o), +(545,80,c), +(508,80,o), +(485,96,o), +(485,143,c), +(485,530,l), +(385,530,l), +(385,140,l), +(385,44,o), +(436,-10,o), +(527,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(215,0,l), +(215,530,l), +(115,530,l), +(115,0,l) +); +}, +{ +closed = 1; +nodes = ( +(593,443,l), +(593,530,l), +(15,530,l), +(15,443,l) +); +} +); +width = 613; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(485,530,l), +(385,530,l), +(385,140,l), +(385,44,o), +(436,-10,o), +(527,-10,c), +(551,-10,o), +(571.022,-7,o), +(593,0,c), +(593,89,l), +(576,83,o), +(561,80,o), +(545,80,c), +(508,80,o), +(485,96,o), +(485,143,c) +); +}, +{ +closed = 1; +nodes = ( +(15,443,l), +(593,443,l), +(593,530,l), +(15,530,l) +); +}, +{ +closed = 1; +nodes = ( +(215,530,l), +(115,530,l), +(115,0,l), +(215,0,l) +); +} +); +width = 613; +} +); +unicode = 960; +}, +{ +color = 6; +glyphname = zero; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(479,-14,o), +(586,109,o), +(586,345,cs), +(586,581,o), +(479,704,o), +(313,704,cs), +(147,704,o), +(40,581,o), +(40,345,cs), +(40,109,o), +(147,-14,o), +(313,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(240,132,o), +(198,194,o), +(198,345,cs), +(198,496,o), +(240,558,o), +(313,558,cs), +(386,558,o), +(428,496,o), +(428,345,cs), +(428,194,o), +(386,132,o), +(313,132,cs) +); +} +); +width = 626; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(463,-10,o), +(566,113,o), +(566,345,cs), +(566,578,o), +(463,700,o), +(305,700,cs), +(148,700,o), +(45,578,o), +(45,345,cs), +(45,113,o), +(148,-10,o), +(305,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(210,87,o), +(154,163,o), +(154,345,cs), +(154,528,o), +(210,603,o), +(305,603,cs), +(401,603,o), +(457,528,o), +(457,345,cs), +(457,163,o), +(401,87,o), +(305,87,cs) +); +} +); +width = 611; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(463.019,-10,o), +(566,113,o), +(566,345,cs), +(566,578,o), +(463.019,700,o), +(305,700,cs), +(147.974,700,o), +(45,578,o), +(45,345,cs), +(45,113,o), +(147.974,-10,o), +(305,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(210.062,87,o), +(154,163,o), +(154,345,cs), +(154,528,o), +(210.062,603,o), +(305,603,cs), +(400.925,603,o), +(457,528,o), +(457,345,cs), +(457,163,o), +(400.925,87,o), +(305,87,cs) +); +} +); +width = 611; +} +); +unicode = 48; +}, +{ +color = 6; +glyphname = one; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(297,0,l), +(297,690,l), +(142,690,l), +(142,0,l) +); +}, +{ +closed = 1; +nodes = ( +(120,488,o), +(187,569,o), +(228,690,c), +(110,690,l), +(86,658,o), +(51,630,o), +(6,612,c), +(6,460,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(295,0,l), +(295,690,l), +(174,690,l), +(140,520,l), +(140,0,l) +); +}, +{ +closed = 1; +nodes = ( +(196,463,l), +(174,690,l), +(156,608,o), +(115,576,o), +(12,567,c), +(12,463,l) +); +} +); +width = 377; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(261,0,l), +(261,690,l), +(156,690,l), +(156,0,l) +); +}, +{ +closed = 1; +nodes = ( +(104,517,o), +(170,590.954,o), +(212,690,c), +(124,690,l), +(103,653.943,o), +(66,621.321,o), +(15,599,c), +(15,492,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(250,0,l), +(250,690,l), +(170,690,l), +(145,572,l), +(145,0,l) +); +}, +{ +closed = 1; +nodes = ( +(196,499,l), +(170,690,l), +(152,608,o), +(115,584,o), +(22,575,c), +(22,499,l) +); +} +); +width = 350; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(261,0,l), +(261,690,l), +(156,690,l), +(156,0,l) +); +}, +{ +closed = 1; +nodes = ( +(104,517,o), +(170,590.954,o), +(212,690,c), +(124,690,l), +(103,653.943,o), +(66,621.321,o), +(15,599,c), +(15,492,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(250,0,l), +(250,690,l), +(170,690,l), +(145,572,l), +(145,0,l) +); +}, +{ +closed = 1; +nodes = ( +(196,499,l), +(170,690,l), +(152,608,o), +(115,584,o), +(22,575,c), +(22,499,l) +); +} +); +width = 350; +} +); +unicode = 49; +}, +{ +color = 6; +glyphname = two; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(402,261,ls), +(486,336,o), +(528,402,o), +(528,486,c), +(528,617,o), +(428,704,o), +(297,704,c), +(162,704,o), +(57,629,o), +(38,459,c), +(192,439,l), +(201,531,o), +(238,563,o), +(287,563,c), +(333,563,o), +(369,534,o), +(369,483,c), +(369,435,o), +(332,386,o), +(271,331,cs), +(38,104,l), +(213,89,l) +); +}, +{ +closed = 1; +nodes = ( +(550,0,l), +(550,140,l), +(109,140,l), +(38,104,l), +(38,0,l) +); +} +); +width = 584; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(378,267,ls), +(461,350,o), +(508,403,o), +(508,499,c), +(508,620,o), +(410,700,o), +(286,700,c), +(158,700,o), +(63,623,o), +(45,473,c), +(148,453,l), +(160,557,o), +(208,608,o), +(281,608,c), +(352,608,o), +(399,566,o), +(399,493,c), +(399,443,o), +(372,391,o), +(312,331,cs), +(48,67,l), +(161,52,l) +); +}, +{ +closed = 1; +nodes = ( +(527,0,l), +(527,100,l), +(128,100,l), +(48,67,l), +(48,0,l) +); +} +); +width = 570; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(508,620,o), +(410,700,o), +(286,700,c), +(158,700,o), +(62.885,623,o), +(45,473,c), +(148,453,l), +(160.071,557,o), +(208,608,o), +(281,608,c), +(352,608,o), +(399,566,o), +(399,493,c), +(399,443,o), +(372,391,o), +(312,331,cs), +(48,67,l), +(161,52,l), +(378,267,ls), +(461,350,o), +(508,403,o), +(508,499,c) +); +}, +{ +closed = 1; +nodes = ( +(527,100,l), +(128,100,l), +(48,67,l), +(48,0,l), +(527,0,l) +); +} +); +width = 570; +} +); +unicode = 50; +}, +{ +color = 6; +glyphname = three; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(442,-14,o), +(550,79,o), +(550,233,c), +(550,350,o), +(470,438,o), +(369,438,c), +(338,438,o), +(310,435,o), +(284,429,c), +(295,372,l), +(536,586,l), +(402,638,l), +(183,411,l), +(183,332,l), +(267,332,l), +(355,332,o), +(395,292,o), +(395,227,c), +(395,164,o), +(352,126,o), +(287,126,c), +(230,126,o), +(181,154,o), +(174,242,c), +(22,210,l), +(40,60,o), +(143,-14,o), +(286,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(465,550,l), +(536,586,l), +(536,690,l), +(40,690,l), +(40,550,l) +); +} +); +width = 584; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(437,-10,o), +(527,90,o), +(527,223,c), +(527,348,o), +(439,428,o), +(338,428,c), +(316,428,o), +(302,425,o), +(284,414,c), +(271,381,l), +(513,623,l), +(398,638,l), +(189,417,l), +(189,352,l), +(266,352,l), +(371,352,o), +(418,300,o), +(418,217,c), +(418,144,o), +(370,85,o), +(282,85,c), +(202,85,o), +(148,129,o), +(139,224,c), +(35,201,l), +(56,63,o), +(151,-10,o), +(283,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(433,590,l), +(513,623,l), +(513,690,l), +(54,690,l), +(54,590,l) +); +} +); +width = 572; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(54,590,l), +(433,590,l), +(513,623,l), +(513,690,l), +(54,690,l) +); +}, +{ +closed = 1; +nodes = ( +(271,381,l), +(513,623,l), +(398,638,l), +(189,417,l), +(189,352,l), +(266,352,l), +(371,352,o), +(418,300,o), +(418,217,c), +(418,143.563,o), +(370,85,o), +(282,85,c), +(202,85,o), +(148.333,129.227,o), +(139,224,c), +(35,201,l), +(56.151,63,o), +(151,-10,o), +(283,-10,c), +(437,-10,o), +(527,90.149,o), +(527,223,c), +(527,347.963,o), +(439,428,o), +(338,428,c), +(316,428,o), +(302,425,o), +(284,414,c) +); +} +); +width = 572; +} +); +unicode = 51; +}, +{ +color = 6; +glyphname = four; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(149,204,l), +(404,690,l), +(266,690,l), +(6,204,l) +); +}, +{ +closed = 1; +nodes = ( +(564,118,l), +(564,248,l), +(46,248,l), +(6,204,l), +(6,118,l) +); +}, +{ +closed = 1; +nodes = ( +(475,0,l), +(475,690,l), +(320,690,l), +(320,0,l) +); +} +); +width = 570; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(114,193,l), +(384,690,l), +(282,690,l), +(12,193,l) +); +}, +{ +closed = 1; +nodes = ( +(547,141,l), +(547,237,l), +(52,237,l), +(12,193,l), +(12,141,l) +); +}, +{ +closed = 1; +nodes = ( +(447,0,l), +(447,690,l), +(342,690,l), +(342,0,l) +); +} +); +width = 562; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(12,141,l), +(547,141,l), +(547,237,l), +(52,237,l), +(12,193,l) +); +}, +{ +closed = 1; +nodes = ( +(447,0,l), +(447,690,l), +(342,690,l), +(342,0,l) +); +}, +{ +closed = 1; +nodes = ( +(114,193,l), +(384,690,l), +(282,690,l), +(12,193,l) +); +} +); +width = 562; +} +); +unicode = 52; +}, +{ +color = 6; +glyphname = five; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(447,-14,o), +(555,81,o), +(555,238,c), +(555,369,o), +(464,468,o), +(344,468,c), +(255,468,o), +(195,417,o), +(178,334,c), +(195,334,l), +(227,638,l), +(141,550,l), +(523,550,l), +(523,690,l), +(88,690,l), +(54,277,l), +(186,277,l), +(201,312,o), +(238,344,o), +(291,344,c), +(358,344,o), +(400,296,o), +(400,232,c), +(400,166,o), +(358,126,o), +(293,126,c), +(240,126,o), +(201,154,o), +(190,213,c), +(37,181,l), +(59,60,o), +(153,-14,o), +(286,-14,c) +); +} +); +width = 595; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(434,-10,o), +(532,90,o), +(532,229,c), +(532,366,o), +(436,464,o), +(306,464,c), +(222,464,o), +(158,416,o), +(130,338,c), +(147,338,l), +(179,638,l), +(134,590,l), +(502,590,l), +(502,690,l), +(94,690,l), +(60,304,l), +(138,304,l), +(161,342,o), +(211,375,o), +(277,375,c), +(372,375,o), +(423,309,o), +(423,223,c), +(423,144,o), +(367,85,o), +(282,85,c), +(209,85,o), +(158,129,o), +(149,204,c), +(45,181,l), +(66,63,o), +(159,-10,o), +(281,-10,c) +); +} +); +width = 582; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(138,304,l), +(161.322,342,o), +(210.765,375,o), +(277,375,c), +(371.755,375,o), +(423,309,o), +(423,223,c), +(423,143.627,o), +(366.974,85,o), +(282,85,c), +(208.754,85,o), +(158.283,128.515,o), +(149,204,c), +(45,181,l), +(66.104,63,o), +(158.593,-10,o), +(281,-10,c), +(433.908,-10,o), +(532,90,o), +(532,229,c), +(532,365.913,o), +(436.121,464,o), +(306,464,c), +(221.785,464,o), +(158.387,416.099,o), +(130,338,c), +(147,338,l), +(179,638,l), +(134,590,l), +(502,590,l), +(502,690,l), +(94,690,l), +(60,304,l) +); +} +); +width = 582; +} +); +unicode = 53; +}, +{ +color = 6; +glyphname = six; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(474,-14,o), +(574,87,o), +(574,220,c), +(574,358,o), +(480,445,o), +(365,445,c), +(275,445,o), +(189,391,o), +(188,261,c), +(202,286,l), +(200,307,o), +(199,331,o), +(199,365,c), +(199,505,o), +(248,564,o), +(328,564,c), +(376,564,o), +(415,542,o), +(443,497,c), +(562,582,l), +(505,668,o), +(430,704,o), +(333,704,c), +(148,704,o), +(41,577,o), +(41,325,c), +(41,93,o), +(153,-14,o), +(315,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(254,121,o), +(212,161,o), +(212,214,c), +(212,268,o), +(253,312,o), +(316,312,c), +(380,312,o), +(417,271,o), +(417,212,c), +(417,163,o), +(378,121,o), +(317,121,c) +); +} +); +width = 605; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(509,-10,o), +(618,113,o), +(618,345,cs), +(618,578,o), +(509,700,o), +(348,700,cs), +(188,700,o), +(79,578,o), +(79,345,cs), +(79,113,o), +(188,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,70,o), +(188,149,o), +(188,345,cs), +(188,542,o), +(250,620,o), +(348,620,cs), +(447,620,o), +(509,542,o), +(509,345,cs), +(509,149,o), +(447,70,o), +(348,70,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(457,-10,o), +(552,88,o), +(552,218,c), +(552,352,o), +(453,437,o), +(336,437,c), +(236,437,o), +(150,379,o), +(143,261,c), +(157,286,l), +(155,307,o), +(154,331,o), +(154,365,c), +(154,530,o), +(216,604,o), +(314,604,c), +(377,604,o), +(425,573,o), +(447,515,c), +(539,559,l), +(505,651,o), +(423,700,o), +(323,700,c), +(149,700,o), +(45,570,o), +(45,325,c), +(45,96,o), +(152,-10,o), +(306,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(224,85,o), +(163,143,o), +(163,218,c), +(163,287,o), +(222,344,o), +(303,344,c), +(394,344,o), +(444,289,o), +(444,212,c), +(444,144,o), +(392,85,o), +(308,85,c) +); +} +); +width = 587; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(509,-10,o), +(618,113,o), +(618,345,cs), +(618,578,o), +(509,700,o), +(348,700,cs), +(188,700,o), +(79,578,o), +(79,345,cs), +(79,113,o), +(188,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,70,o), +(188,149,o), +(188,345,cs), +(188,542,o), +(250,620,o), +(348,620,cs), +(447,620,o), +(509,542,o), +(509,345,cs), +(509,149,o), +(447,70,o), +(348,70,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(155,307,o), +(154,331,o), +(154,365,c), +(154,530,o), +(216,604,o), +(314,604,c), +(377,604,o), +(424.833,573,o), +(447,515,c), +(539,559,l), +(504.792,651,o), +(422.692,700,o), +(323,700,c), +(149.127,700,o), +(45,570,o), +(45,325,c), +(45,96,o), +(152,-10,o), +(306,-10,c), +(456.932,-10,o), +(552,88,o), +(552,218,c), +(552,352,o), +(453,437,o), +(336,437,c), +(236,437,o), +(150,379,o), +(143,261,c), +(157,286,l) +); +}, +{ +closed = 1; +nodes = ( +(394,344,o), +(444,289,o), +(444,212,c), +(444,144,o), +(392,85,o), +(308,85,c), +(224,85,o), +(163,143,o), +(163,218,c), +(163,287,o), +(222,344,o), +(303,344,c) +); +} +); +width = 587; +} +); +unicode = 54; +}, +{ +color = 6; +glyphname = seven; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(321,0,l), +(322,230,o), +(375,392,o), +(524,588,c), +(384,598,l), +(227,404,o), +(166,230,o), +(156,0,c) +); +}, +{ +closed = 1; +nodes = ( +(454,550,l), +(524,588,l), +(524,690,l), +(11,690,l), +(11,550,l) +); +} +); +width = 539; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(155,0,l), +(155,530,l), +(55,530,l), +(55,0,l) +); +}, +{ +closed = 1; +nodes = ( +(395,0,l), +(495,0,l), +(495,332,l), +(495,460,o), +(420,540,o), +(313,540,c), +(204,540,o), +(122,451,o), +(122,309,c), +(155,309,l), +(155,406,o), +(208,457,o), +(275,457,c), +(342,457,o), +(395,406,o), +(395,309,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(284,0,l), +(285,212,o), +(344,415,o), +(510,638,c), +(397,638,l), +(249,426,o), +(176,212,o), +(165,0,c) +); +}, +{ +closed = 1; +nodes = ( +(440,590,l), +(510,638,l), +(510,690,l), +(20,690,l), +(20,590,l) +); +} +); +width = 535; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(155,0,l), +(155,530,l), +(55,530,l), +(55,0,l) +); +}, +{ +closed = 1; +nodes = ( +(395,0,l), +(495,0,l), +(495,332,l), +(495,460,o), +(420,540,o), +(313,540,c), +(204,540,o), +(122,451,o), +(122,309,c), +(155,309,l), +(155,406,o), +(208,457,o), +(275,457,c), +(342,457,o), +(395,406,o), +(395,309,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(20,590,l), +(440,590,l), +(510,638,l), +(510,690,l), +(20,690,l) +); +}, +{ +closed = 1; +nodes = ( +(284,0,l), +(285,212,o), +(343.665,415,o), +(510,638,c), +(397,638,l), +(248.652,426,o), +(176,212,o), +(165,0,c) +); +} +); +width = 535; +} +); +unicode = 55; +}, +{ +color = 6; +glyphname = eight; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(459,-14,o), +(557,72,o), +(557,196,c), +(557,311,o), +(454,394,o), +(294,394,cs), +(133,394,o), +(31,311,o), +(31,196,c), +(31,72,o), +(128,-14,o), +(294,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(218,117,o), +(182,154,o), +(182,202,c), +(182,258,o), +(223,296,o), +(294,296,c), +(365,296,o), +(406,258,o), +(406,202,c), +(406,154,o), +(370,117,o), +(294,117,c) +); +}, +{ +closed = 1; +nodes = ( +(442,332,o), +(542,404,o), +(542,508,cs), +(542,627,o), +(442,704,o), +(294,704,cs), +(145,704,o), +(46,627,o), +(46,508,cs), +(46,404,o), +(145,332,o), +(294,332,cs) +); +}, +{ +closed = 1; +nodes = ( +(234,418,o), +(197,451,o), +(197,499,cs), +(197,544,o), +(234,573,o), +(294,573,cs), +(354,573,o), +(391,544,o), +(391,499,cs), +(391,451,o), +(354,418,o), +(294,418,cs) +); +} +); +width = 588; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(442,-10,o), +(534,73,o), +(534,191,c), +(534,304,o), +(437,385,o), +(284,385,cs), +(132,385,o), +(35,304,o), +(35,191,c), +(35,73,o), +(127,-10,o), +(284,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(186,81,o), +(141,130,o), +(141,196,c), +(141,271,o), +(192,319,o), +(284,319,cs), +(377,319,o), +(428,271,o), +(428,196,c), +(428,130,o), +(383,81,o), +(284,81,cs) +); +}, +{ +closed = 1; +nodes = ( +(425,350,o), +(519,418,o), +(519,517,cs), +(519,628,o), +(425,700,o), +(284,700,cs), +(144,700,o), +(50,628,o), +(50,517,cs), +(50,418,o), +(144,350,o), +(284,350,cs) +); +}, +{ +closed = 1; +nodes = ( +(204,407,o), +(156,450,o), +(156,512,cs), +(156,570,o), +(204,609,o), +(284,609,cs), +(365,609,o), +(413,570,o), +(413,512,cs), +(413,450,o), +(365,407,o), +(284,407,cs) +); +} +); +width = 569; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(442.007,-10,o), +(534,73,o), +(534,191,c), +(534,304,o), +(437.248,385,o), +(284,385,cs), +(131.732,385,o), +(35,304,o), +(35,191,c), +(35,73,o), +(126.974,-10,o), +(284,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(186,81,o), +(141,130,o), +(141,196,c), +(141,271,o), +(192.125,319,o), +(284,319,cs), +(376.851,319,o), +(428,271,o), +(428,196,c), +(428,130,o), +(383,81,o), +(284,81,cs) +); +}, +{ +closed = 1; +nodes = ( +(425.252,350,o), +(519,418,o), +(519,517,cs), +(519,628,o), +(425.252,700,o), +(284,700,cs), +(143.727,700,o), +(50,628,o), +(50,517,cs), +(50,418,o), +(143.727,350,o), +(284,350,cs) +); +}, +{ +closed = 1; +nodes = ( +(204.143,407,o), +(156,450,o), +(156,512,cs), +(156,570,o), +(204,609,o), +(284,609,cs), +(365,609,o), +(413,570,o), +(413,512,cs), +(413,450,o), +(364.83,407,o), +(284,407,cs) +); +} +); +width = 569; +} +); +unicode = 56; +}, +{ +color = 6; +glyphname = nine; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(457,-14,o), +(563,113,o), +(563,365,c), +(563,597,o), +(452,704,o), +(290,704,c), +(131,704,o), +(30,603,o), +(30,470,c), +(30,332,o), +(125,245,o), +(240,245,c), +(330,245,o), +(416,299,o), +(417,429,c), +(403,404,l), +(405,383,o), +(406,359,o), +(406,325,c), +(406,185,o), +(358,126,o), +(278,126,c), +(229,126,o), +(190,148,o), +(162,193,c), +(43,108,l), +(100,22,o), +(175,-14,o), +(272,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(224,378,o), +(188,419,o), +(188,478,c), +(188,527,o), +(226,569,o), +(288,569,c), +(351,569,o), +(393,529,o), +(393,476,c), +(393,422,o), +(352,378,o), +(288,378,c) +); +} +); +width = 605; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(442,383,o), +(443,359,o), +(443,325,c), +(443,146,o), +(379,70,o), +(278,70,c), +(213,70,o), +(163,103,o), +(140,175,c), +(48,131,l), +(83,39,o), +(167,-10,o), +(269,-10,c), +(446,-10,o), +(552,120,o), +(552,365,c), +(552,594,o), +(449,700,o), +(291,700,c), +(134,700,o), +(35,602,o), +(35,472,c), +(35,341,o), +(126,255,o), +(256,255,c), +(356,255,o), +(440,314,o), +(454,429,c), +(440,404,l) +); +}, +{ +closed = 1; +nodes = ( +(195,338,o), +(144,395,o), +(144,478,c), +(144,557,o), +(199,620,o), +(289,620,c), +(373,620,o), +(434,559,o), +(434,472,c), +(434,397,o), +(373,338,o), +(289,338,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(438,-10,o), +(542,120,o), +(542,365,c), +(542,594,o), +(435,700,o), +(281,700,c), +(130,700,o), +(35,602,o), +(35,472,c), +(35,338,o), +(134,253,o), +(251,253,c), +(353,253,o), +(437,311,o), +(444,429,c), +(430,404,l), +(432,383,o), +(433,359,o), +(433,325,c), +(433,160,o), +(371,85,o), +(273,85,c), +(210,85,o), +(162,117,o), +(140,175,c), +(48,131,l), +(82,39,o), +(164,-10,o), +(264,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(193,346,o), +(144,401,o), +(144,478,c), +(144,546,o), +(195,605,o), +(279,605,c), +(363,605,o), +(424,547,o), +(424,472,c), +(424,403,o), +(365,346,o), +(284,346,c) +); +} +); +width = 587; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(442,383,o), +(443,359,o), +(443,325,c), +(443,146,o), +(379,70,o), +(278,70,c), +(213,70,o), +(163,103,o), +(140,175,c), +(48,131,l), +(83,39,o), +(167,-10,o), +(269,-10,c), +(446,-10,o), +(552,120,o), +(552,365,c), +(552,594,o), +(449,700,o), +(291,700,c), +(134,700,o), +(35,602,o), +(35,472,c), +(35,341,o), +(126,255,o), +(256,255,c), +(356,255,o), +(440,314,o), +(454,429,c), +(440,404,l) +); +}, +{ +closed = 1; +nodes = ( +(195,338,o), +(144,395,o), +(144,478,c), +(144,557,o), +(199,620,o), +(289,620,c), +(373,620,o), +(434,559,o), +(434,472,c), +(434,397,o), +(373,338,o), +(289,338,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(432,383,o), +(433,359,o), +(433,325,c), +(433,160,o), +(371,85,o), +(273,85,c), +(210,85,o), +(162.167,117,o), +(140,175,c), +(48,131,l), +(82.208,39,o), +(164.308,-10,o), +(264,-10,c), +(437.873,-10,o), +(542,120,o), +(542,365,c), +(542,594,o), +(435,700,o), +(281,700,c), +(130.068,700,o), +(35,602,o), +(35,472,c), +(35,338,o), +(134,253,o), +(251,253,c), +(353,253,o), +(437,311,o), +(444,429,c), +(430,404,l) +); +}, +{ +closed = 1; +nodes = ( +(193,346,o), +(144,401,o), +(144,478,c), +(144,546,o), +(195,605,o), +(279,605,c), +(363,605,o), +(424,547,o), +(424,472,c), +(424,403,o), +(365,346,o), +(284,346,c) +); +} +); +width = 587; +} +); +unicode = 57; +}, +{ +color = 6; +glyphname = zero.tf; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(463,-14,o), +(568,109,o), +(568,345,cs), +(568,581,o), +(463,704,o), +(300,704,cs), +(137,704,o), +(32,581,o), +(32,345,cs), +(32,109,o), +(137,-14,o), +(300,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(230,132,o), +(190,194,o), +(190,345,cs), +(190,496,o), +(230,558,o), +(300,558,cs), +(370,558,o), +(410,496,o), +(410,345,cs), +(410,194,o), +(370,132,o), +(300,132,cs) +); +} +); +width = 600; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(455,-10,o), +(555,113,o), +(555,345,cs), +(555,578,o), +(455,700,o), +(300,700,cs), +(146,700,o), +(45,578,o), +(45,345,cs), +(45,113,o), +(146,-10,o), +(300,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(208,87,o), +(154,163,o), +(154,345,cs), +(154,528,o), +(208,603,o), +(300,603,cs), +(393,603,o), +(446,528,o), +(446,345,cs), +(446,163,o), +(393,87,o), +(300,87,cs) +); +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(455,-10,o), +(555,113,o), +(555,345,cs), +(555,578,o), +(455,700,o), +(300,700,cs), +(146,700,o), +(45,578,o), +(45,345,cs), +(45,113,o), +(146,-10,o), +(300,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(208,87,o), +(154,163,o), +(154,345,cs), +(154,528,o), +(208,603,o), +(300,603,cs), +(393,603,o), +(446,528,o), +(446,345,cs), +(446,163,o), +(393,87,o), +(300,87,cs) +); +} +); +width = 600; +} +); +}, +{ +color = 6; +glyphname = one.tf; +lastChange = "2024-03-21 11:23:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(297,0,l), +(297,690,l), +(142,690,l), +(142,0,l) +); +}, +{ +closed = 1; +nodes = ( +(120,488,o), +(187,569,o), +(228,690,c), +(110,690,l), +(86,658,o), +(51,630,o), +(6,612,c), +(6,460,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(388,0,l), +(388,690,l), +(267,690,l), +(233,520,l), +(233,0,l) +); +}, +{ +closed = 1; +nodes = ( +(535,0,l), +(535,140,l), +(75,140,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(289,463,l), +(267,690,l), +(248,605,o), +(202,573,o), +(85,567,c), +(85,463,l) +); +} +); +width = 600; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(366,0,l), +(366,690,l), +(261,690,l), +(261,0,l) +); +}, +{ +closed = 1; +nodes = ( +(185,512,o), +(265,586,o), +(317,690,c), +(229,690,l), +(199,650,o), +(147,613,o), +(75,589,c), +(75,486,l) +); +}, +{ +closed = 1; +nodes = ( +(75,0,l), +(530,0,l), +(530,96,l), +(75,96,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(366,0,l), +(366,690,l), +(286,690,l), +(261,572,l), +(261,0,l) +); +}, +{ +closed = 1; +nodes = ( +(530,0,l), +(530,96,l), +(75,96,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(312,499,l), +(286,690,l), +(268,608,o), +(231,584,o), +(88,575,c), +(88,499,l) +); +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(366,0,l), +(366,690,l), +(261,690,l), +(261,0,l) +); +}, +{ +closed = 1; +nodes = ( +(185,512,o), +(265,586,o), +(317,690,c), +(229,690,l), +(199,650,o), +(147,613,o), +(75,589,c), +(75,486,l) +); +}, +{ +closed = 1; +nodes = ( +(75,0,l), +(530,0,l), +(530,96,l), +(75,96,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(75,0,l), +(530,0,l), +(530,96,l), +(75,96,l) +); +}, +{ +closed = 1; +nodes = ( +(366,0,l), +(366,690,l), +(286,690,l), +(261,572,l), +(261,0,l) +); +}, +{ +closed = 1; +nodes = ( +(312,499,l), +(286,690,l), +(268,608,o), +(231,584,o), +(88,575,c), +(88,499,l) +); +} +); +width = 600; +} +); +}, +{ +color = 6; +glyphname = two.tf; +lastChange = "2024-03-21 11:23:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(408,261,ls), +(492,336,o), +(534,402,o), +(534,486,c), +(534,617,o), +(434,704,o), +(303,704,c), +(168,704,o), +(63,629,o), +(44,459,c), +(198,439,l), +(207,531,o), +(244,563,o), +(293,563,c), +(339,563,o), +(375,534,o), +(375,483,c), +(375,435,o), +(338,386,o), +(277,331,cs), +(44,104,l), +(219,89,l) +); +}, +{ +closed = 1; +nodes = ( +(556,0,l), +(556,140,l), +(115,140,l), +(44,104,l), +(44,0,l) +); +} +); +width = 600; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(392,267,ls), +(475,350,o), +(522,403,o), +(522,499,c), +(522,620,o), +(424,700,o), +(300,700,c), +(172,700,o), +(77,623,o), +(59,473,c), +(162,453,l), +(174,557,o), +(222,608,o), +(295,608,c), +(366,608,o), +(413,566,o), +(413,493,c), +(413,443,o), +(386,391,o), +(326,331,cs), +(62,67,l), +(175,52,l) +); +}, +{ +closed = 1; +nodes = ( +(541,0,l), +(541,100,l), +(142,100,l), +(62,67,l), +(62,0,l) +); +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(522,620,o), +(424,700,o), +(300,700,c), +(172,700,o), +(77,623,o), +(59,473,c), +(162,453,l), +(174,557,o), +(222,608,o), +(295,608,c), +(366,608,o), +(413,566,o), +(413,493,c), +(413,443,o), +(386,391,o), +(326,331,cs), +(62,67,l), +(175,52,l), +(392,267,ls), +(475,350,o), +(522,403,o), +(522,499,c) +); +}, +{ +closed = 1; +nodes = ( +(541,100,l), +(142,100,l), +(62,67,l), +(62,0,l), +(541,0,l) +); +} +); +width = 600; +} +); +}, +{ +color = 6; +glyphname = three.tf; +lastChange = "2024-03-21 11:23:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(445,-14,o), +(553,79,o), +(553,233,c), +(553,350,o), +(473,438,o), +(372,438,c), +(341,438,o), +(313,435,o), +(287,429,c), +(298,372,l), +(539,586,l), +(405,638,l), +(186,411,l), +(186,332,l), +(270,332,l), +(358,332,o), +(398,292,o), +(398,227,c), +(398,164,o), +(355,126,o), +(290,126,c), +(233,126,o), +(184,154,o), +(177,242,c), +(25,210,l), +(43,60,o), +(146,-14,o), +(289,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(468,550,l), +(539,586,l), +(539,690,l), +(43,690,l), +(43,550,l) +); +} +); +width = 600; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(450,-10,o), +(540,90,o), +(540,223,c), +(540,348,o), +(452,428,o), +(351,428,c), +(329,428,o), +(315,425,o), +(297,414,c), +(284,381,l), +(526,623,l), +(411,638,l), +(202,417,l), +(202,352,l), +(279,352,l), +(384,352,o), +(431,300,o), +(431,217,c), +(431,144,o), +(383,85,o), +(295,85,c), +(215,85,o), +(161,129,o), +(152,224,c), +(48,201,l), +(69,63,o), +(164,-10,o), +(296,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(446,590,l), +(526,623,l), +(526,690,l), +(67,690,l), +(67,590,l) +); +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(67,590,l), +(446,590,l), +(526,623,l), +(526,690,l), +(67,690,l) +); +}, +{ +closed = 1; +nodes = ( +(284,381,l), +(526,623,l), +(411,638,l), +(202,417,l), +(202,352,l), +(279,352,l), +(384,352,o), +(431,300,o), +(431,217,c), +(431,144,o), +(383,85,o), +(295,85,c), +(215,85,o), +(161,129,o), +(152,224,c), +(48,201,l), +(69,63,o), +(164,-10,o), +(296,-10,c), +(450,-10,o), +(540,90,o), +(540,223,c), +(540,348,o), +(452,428,o), +(351,428,c), +(329,428,o), +(315,425,o), +(297,414,c) +); +} +); +width = 600; +} +); +}, +{ +color = 6; +glyphname = four.tf; +lastChange = "2024-03-21 11:23:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(161,204,l), +(416,690,l), +(278,690,l), +(18,204,l) +); +}, +{ +closed = 1; +nodes = ( +(576,118,l), +(576,248,l), +(58,248,l), +(18,204,l), +(18,118,l) +); +}, +{ +closed = 1; +nodes = ( +(487,0,l), +(487,690,l), +(332,690,l), +(332,0,l) +); +} +); +width = 600; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(133,193,l), +(403,690,l), +(301,690,l), +(31,193,l) +); +}, +{ +closed = 1; +nodes = ( +(566,141,l), +(566,237,l), +(71,237,l), +(31,193,l), +(31,141,l) +); +}, +{ +closed = 1; +nodes = ( +(466,0,l), +(466,690,l), +(361,690,l), +(361,0,l) +); +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(31,141,l), +(566,141,l), +(566,237,l), +(71,237,l), +(31,193,l) +); +}, +{ +closed = 1; +nodes = ( +(466,0,l), +(466,690,l), +(361,690,l), +(361,0,l) +); +}, +{ +closed = 1; +nodes = ( +(133,193,l), +(403,690,l), +(301,690,l), +(31,193,l) +); +} +); +width = 600; +} +); +}, +{ +color = 6; +glyphname = five.tf; +lastChange = "2024-03-21 11:23:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(448,-14,o), +(556,81,o), +(556,238,c), +(556,369,o), +(465,468,o), +(345,468,c), +(256,468,o), +(196,417,o), +(179,334,c), +(196,334,l), +(228,638,l), +(142,550,l), +(524,550,l), +(524,690,l), +(89,690,l), +(55,277,l), +(187,277,l), +(202,312,o), +(239,344,o), +(292,344,c), +(359,344,o), +(401,296,o), +(401,232,c), +(401,166,o), +(359,126,o), +(294,126,c), +(241,126,o), +(202,154,o), +(191,213,c), +(38,181,l), +(60,60,o), +(154,-14,o), +(287,-14,c) +); +} +); +width = 600; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(442,-10,o), +(540,90,o), +(540,229,c), +(540,366,o), +(444,464,o), +(314,464,c), +(230,464,o), +(166,416,o), +(138,338,c), +(155,338,l), +(187,638,l), +(142,590,l), +(510,590,l), +(510,690,l), +(102,690,l), +(68,304,l), +(146,304,l), +(169,342,o), +(219,375,o), +(285,375,c), +(380,375,o), +(431,309,o), +(431,223,c), +(431,144,o), +(375,85,o), +(290,85,c), +(217,85,o), +(166,129,o), +(157,204,c), +(53,181,l), +(74,63,o), +(167,-10,o), +(289,-10,c) +); +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(146,304,l), +(169,342,o), +(219,375,o), +(285,375,c), +(380,375,o), +(431,309,o), +(431,223,c), +(431,144,o), +(375,85,o), +(290,85,c), +(217,85,o), +(166,129,o), +(157,204,c), +(53,181,l), +(74,63,o), +(167,-10,o), +(289,-10,c), +(442,-10,o), +(540,90,o), +(540,229,c), +(540,366,o), +(444,464,o), +(314,464,c), +(230,464,o), +(166,416,o), +(138,338,c), +(155,338,l), +(187,638,l), +(142,590,l), +(510,590,l), +(510,690,l), +(102,690,l), +(68,304,l) +); +} +); +width = 600; +} +); +}, +{ +color = 6; +glyphname = six.tf; +lastChange = "2024-03-21 11:23:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(509,-10,o), +(618,113,o), +(618,345,cs), +(618,578,o), +(509,700,o), +(348,700,cs), +(188,700,o), +(79,578,o), +(79,345,cs), +(79,113,o), +(188,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,70,o), +(188,149,o), +(188,345,cs), +(188,542,o), +(250,620,o), +(348,620,cs), +(447,620,o), +(509,542,o), +(509,345,cs), +(509,149,o), +(447,70,o), +(348,70,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(470,-14,o), +(570,87,o), +(570,220,c), +(570,358,o), +(476,445,o), +(361,445,c), +(271,445,o), +(185,391,o), +(184,261,c), +(198,286,l), +(196,307,o), +(195,331,o), +(195,365,c), +(195,505,o), +(244,564,o), +(324,564,c), +(372,564,o), +(411,542,o), +(439,497,c), +(558,582,l), +(501,668,o), +(426,704,o), +(329,704,c), +(144,704,o), +(37,577,o), +(37,325,c), +(37,93,o), +(149,-14,o), +(311,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(250,121,o), +(208,161,o), +(208,214,c), +(208,268,o), +(249,312,o), +(312,312,c), +(376,312,o), +(413,271,o), +(413,212,c), +(413,163,o), +(374,121,o), +(313,121,c) +); +} +); +width = 600; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(509,-10,o), +(618,113,o), +(618,345,cs), +(618,578,o), +(509,700,o), +(348,700,cs), +(188,700,o), +(79,578,o), +(79,345,cs), +(79,113,o), +(188,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,70,o), +(188,149,o), +(188,345,cs), +(188,542,o), +(250,620,o), +(348,620,cs), +(447,620,o), +(509,542,o), +(509,345,cs), +(509,149,o), +(447,70,o), +(348,70,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(463,-10,o), +(558,88,o), +(558,218,c), +(558,352,o), +(459,437,o), +(342,437,c), +(242,437,o), +(156,379,o), +(149,261,c), +(163,286,l), +(161,307,o), +(160,331,o), +(160,365,c), +(160,530,o), +(222,604,o), +(320,604,c), +(383,604,o), +(431,573,o), +(453,515,c), +(545,559,l), +(511,651,o), +(429,700,o), +(329,700,c), +(155,700,o), +(51,570,o), +(51,325,c), +(51,96,o), +(158,-10,o), +(312,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(230,85,o), +(169,143,o), +(169,218,c), +(169,287,o), +(228,344,o), +(309,344,c), +(400,344,o), +(450,289,o), +(450,212,c), +(450,144,o), +(398,85,o), +(314,85,c) +); +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(509,-10,o), +(618,113,o), +(618,345,cs), +(618,578,o), +(509,700,o), +(348,700,cs), +(188,700,o), +(79,578,o), +(79,345,cs), +(79,113,o), +(188,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,70,o), +(188,149,o), +(188,345,cs), +(188,542,o), +(250,620,o), +(348,620,cs), +(447,620,o), +(509,542,o), +(509,345,cs), +(509,149,o), +(447,70,o), +(348,70,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(161,307,o), +(160,331,o), +(160,365,c), +(160,530,o), +(222,604,o), +(320,604,c), +(383,604,o), +(431,573,o), +(453,515,c), +(545,559,l), +(511,651,o), +(429,700,o), +(329,700,c), +(155,700,o), +(51,570,o), +(51,325,c), +(51,96,o), +(158,-10,o), +(312,-10,c), +(463,-10,o), +(558,88,o), +(558,218,c), +(558,352,o), +(459,437,o), +(342,437,c), +(242,437,o), +(156,379,o), +(149,261,c), +(163,286,l) +); +}, +{ +closed = 1; +nodes = ( +(400,344,o), +(450,289,o), +(450,212,c), +(450,144,o), +(398,85,o), +(314,85,c), +(230,85,o), +(169,143,o), +(169,218,c), +(169,287,o), +(228,344,o), +(309,344,c) +); +} +); +width = 600; +} +); +}, +{ +color = 6; +glyphname = seven.tf; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(155,0,l), +(155,530,l), +(55,530,l), +(55,0,l) +); +}, +{ +closed = 1; +nodes = ( +(395,0,l), +(495,0,l), +(495,332,l), +(495,460,o), +(420,540,o), +(313,540,c), +(204,540,o), +(122,451,o), +(122,309,c), +(155,309,l), +(155,406,o), +(208,457,o), +(275,457,c), +(342,457,o), +(395,406,o), +(395,309,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(321,0,l), +(322,230,o), +(374,392,o), +(519,588,c), +(379,598,l), +(225,404,o), +(166,230,o), +(156,0,c) +); +}, +{ +closed = 1; +nodes = ( +(449,550,l), +(519,588,l), +(519,690,l), +(16,690,l), +(16,550,l) +); +} +); +width = 539; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(155,0,l), +(155,530,l), +(55,530,l), +(55,0,l) +); +}, +{ +closed = 1; +nodes = ( +(395,0,l), +(495,0,l), +(495,332,l), +(495,460,o), +(420,540,o), +(313,540,c), +(204,540,o), +(122,451,o), +(122,309,c), +(155,309,l), +(155,406,o), +(208,457,o), +(275,457,c), +(342,457,o), +(395,406,o), +(395,309,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(316,0,l), +(317,212,o), +(382,415,o), +(553,638,c), +(440,638,l), +(288,426,o), +(208,212,o), +(197,0,c) +); +}, +{ +closed = 1; +nodes = ( +(483,590,l), +(553,638,l), +(553,690,l), +(46,690,l), +(46,590,l) +); +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(155,0,l), +(155,530,l), +(55,530,l), +(55,0,l) +); +}, +{ +closed = 1; +nodes = ( +(395,0,l), +(495,0,l), +(495,332,l), +(495,460,o), +(420,540,o), +(313,540,c), +(204,540,o), +(122,451,o), +(122,309,c), +(155,309,l), +(155,406,o), +(208,457,o), +(275,457,c), +(342,457,o), +(395,406,o), +(395,309,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(46,590,l), +(483,590,l), +(553,638,l), +(553,690,l), +(46,690,l) +); +}, +{ +closed = 1; +nodes = ( +(316,0,l), +(317,212,o), +(382,415,o), +(553,638,c), +(440,638,l), +(288,426,o), +(208,212,o), +(197,0,c) +); +} +); +width = 600; +} +); +}, +{ +color = 6; +glyphname = eight.tf; +lastChange = "2024-03-21 11:23:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(458,-14,o), +(556,72,o), +(556,196,c), +(556,311,o), +(453,394,o), +(293,394,cs), +(132,394,o), +(30,311,o), +(30,196,c), +(30,72,o), +(127,-14,o), +(293,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(217,117,o), +(181,154,o), +(181,202,c), +(181,258,o), +(222,296,o), +(293,296,c), +(364,296,o), +(405,258,o), +(405,202,c), +(405,154,o), +(369,117,o), +(293,117,c) +); +}, +{ +closed = 1; +nodes = ( +(441,332,o), +(541,404,o), +(541,508,cs), +(541,627,o), +(441,704,o), +(293,704,cs), +(144,704,o), +(45,627,o), +(45,508,cs), +(45,404,o), +(144,332,o), +(293,332,cs) +); +}, +{ +closed = 1; +nodes = ( +(233,418,o), +(196,451,o), +(196,499,cs), +(196,544,o), +(233,573,o), +(293,573,cs), +(353,573,o), +(390,544,o), +(390,499,cs), +(390,451,o), +(353,418,o), +(293,418,cs) +); +} +); +width = 587; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(458,-10,o), +(550,73,o), +(550,191,c), +(550,304,o), +(453,385,o), +(300,385,cs), +(148,385,o), +(51,304,o), +(51,191,c), +(51,73,o), +(143,-10,o), +(300,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(202,81,o), +(157,130,o), +(157,196,c), +(157,271,o), +(208,319,o), +(300,319,cs), +(393,319,o), +(444,271,o), +(444,196,c), +(444,130,o), +(399,81,o), +(300,81,cs) +); +}, +{ +closed = 1; +nodes = ( +(441,350,o), +(535,418,o), +(535,517,cs), +(535,628,o), +(441,700,o), +(300,700,cs), +(160,700,o), +(66,628,o), +(66,517,cs), +(66,418,o), +(160,350,o), +(300,350,cs) +); +}, +{ +closed = 1; +nodes = ( +(220,407,o), +(172,450,o), +(172,512,cs), +(172,570,o), +(220,609,o), +(300,609,cs), +(381,609,o), +(429,570,o), +(429,512,cs), +(429,450,o), +(381,407,o), +(300,407,cs) +); +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(458,-10,o), +(550,73,o), +(550,191,c), +(550,304,o), +(453,385,o), +(300,385,cs), +(148,385,o), +(51,304,o), +(51,191,c), +(51,73,o), +(143,-10,o), +(300,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(202,81,o), +(157,130,o), +(157,196,c), +(157,271,o), +(208,319,o), +(300,319,cs), +(393,319,o), +(444,271,o), +(444,196,c), +(444,130,o), +(399,81,o), +(300,81,cs) +); +}, +{ +closed = 1; +nodes = ( +(441,350,o), +(535,418,o), +(535,517,cs), +(535,628,o), +(441,700,o), +(300,700,cs), +(160,700,o), +(66,628,o), +(66,517,cs), +(66,418,o), +(160,350,o), +(300,350,cs) +); +}, +{ +closed = 1; +nodes = ( +(220,407,o), +(172,450,o), +(172,512,cs), +(172,570,o), +(220,609,o), +(300,609,cs), +(381,609,o), +(429,570,o), +(429,512,cs), +(429,450,o), +(381,407,o), +(300,407,cs) +); +} +); +width = 600; +} +); +}, +{ +color = 6; +glyphname = nine.tf; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(442,383,o), +(443,359,o), +(443,325,c), +(443,146,o), +(379,70,o), +(278,70,c), +(213,70,o), +(163,103,o), +(140,175,c), +(48,131,l), +(83,39,o), +(167,-10,o), +(269,-10,c), +(446,-10,o), +(552,120,o), +(552,365,c), +(552,594,o), +(449,700,o), +(291,700,c), +(134,700,o), +(35,602,o), +(35,472,c), +(35,341,o), +(126,255,o), +(256,255,c), +(356,255,o), +(440,314,o), +(454,429,c), +(440,404,l) +); +}, +{ +closed = 1; +nodes = ( +(195,338,o), +(144,395,o), +(144,478,c), +(144,557,o), +(199,620,o), +(289,620,c), +(373,620,o), +(434,559,o), +(434,472,c), +(434,397,o), +(373,338,o), +(289,338,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(457,-14,o), +(563,113,o), +(563,365,c), +(563,597,o), +(452,704,o), +(290,704,c), +(131,704,o), +(30,603,o), +(30,470,c), +(30,332,o), +(125,245,o), +(240,245,c), +(330,245,o), +(416,299,o), +(417,429,c), +(403,404,l), +(405,383,o), +(406,359,o), +(406,325,c), +(406,185,o), +(358,126,o), +(278,126,c), +(229,126,o), +(190,148,o), +(162,193,c), +(43,108,l), +(100,22,o), +(175,-14,o), +(272,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(224,378,o), +(188,419,o), +(188,478,c), +(188,527,o), +(226,569,o), +(288,569,c), +(351,569,o), +(393,529,o), +(393,476,c), +(393,422,o), +(352,378,o), +(288,378,c) +); +} +); +width = 600; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(442,383,o), +(443,359,o), +(443,325,c), +(443,146,o), +(379,70,o), +(278,70,c), +(213,70,o), +(163,103,o), +(140,175,c), +(48,131,l), +(83,39,o), +(167,-10,o), +(269,-10,c), +(446,-10,o), +(552,120,o), +(552,365,c), +(552,594,o), +(449,700,o), +(291,700,c), +(134,700,o), +(35,602,o), +(35,472,c), +(35,341,o), +(126,255,o), +(256,255,c), +(356,255,o), +(440,314,o), +(454,429,c), +(440,404,l) +); +}, +{ +closed = 1; +nodes = ( +(195,338,o), +(144,395,o), +(144,478,c), +(144,557,o), +(199,620,o), +(289,620,c), +(373,620,o), +(434,559,o), +(434,472,c), +(434,397,o), +(373,338,o), +(289,338,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(445,-10,o), +(549,120,o), +(549,365,c), +(549,594,o), +(442,700,o), +(288,700,c), +(137,700,o), +(42,602,o), +(42,472,c), +(42,338,o), +(141,253,o), +(258,253,c), +(360,253,o), +(444,311,o), +(451,429,c), +(437,404,l), +(439,383,o), +(440,359,o), +(440,325,c), +(440,160,o), +(378,85,o), +(280,85,c), +(217,85,o), +(169,117,o), +(147,175,c), +(55,131,l), +(89,39,o), +(171,-10,o), +(271,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(200,346,o), +(151,401,o), +(151,478,c), +(151,546,o), +(202,605,o), +(286,605,c), +(370,605,o), +(431,547,o), +(431,472,c), +(431,403,o), +(372,346,o), +(291,346,c) +); +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(442,383,o), +(443,359,o), +(443,325,c), +(443,146,o), +(379,70,o), +(278,70,c), +(213,70,o), +(163,103,o), +(140,175,c), +(48,131,l), +(83,39,o), +(167,-10,o), +(269,-10,c), +(446,-10,o), +(552,120,o), +(552,365,c), +(552,594,o), +(449,700,o), +(291,700,c), +(134,700,o), +(35,602,o), +(35,472,c), +(35,341,o), +(126,255,o), +(256,255,c), +(356,255,o), +(440,314,o), +(454,429,c), +(440,404,l) +); +}, +{ +closed = 1; +nodes = ( +(195,338,o), +(144,395,o), +(144,478,c), +(144,557,o), +(199,620,o), +(289,620,c), +(373,620,o), +(434,559,o), +(434,472,c), +(434,397,o), +(373,338,o), +(289,338,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(439,383,o), +(440,359,o), +(440,325,c), +(440,160,o), +(378,85,o), +(280,85,c), +(217,85,o), +(169.167,117,o), +(147,175,c), +(55,131,l), +(89.208,39,o), +(171.308,-10,o), +(271,-10,c), +(444.873,-10,o), +(549,120,o), +(549,365,c), +(549,594,o), +(442,700,o), +(288,700,c), +(137.068,700,o), +(42,602,o), +(42,472,c), +(42,338,o), +(141,253,o), +(258,253,c), +(360,253,o), +(444,311,o), +(451,429,c), +(437,404,l) +); +}, +{ +closed = 1; +nodes = ( +(200,346,o), +(151,401,o), +(151,478,c), +(151,546,o), +(202,605,o), +(286,605,c), +(370,605,o), +(431,547,o), +(431,472,c), +(431,403,o), +(372,346,o), +(291,346,c) +); +} +); +width = 600; +} +); +}, +{ +color = 6; +glyphname = fraction; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(529,690,l), +(406,690,l), +(-20,0,l) +); +} +); +width = 509; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(83,0,l), +(519,690,l), +(416,690,l), +(-20,0,l) +); +} +); +width = 499; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(83,0,l), +(519,690,l), +(416,690,l), +(-20,0,l) +); +} +); +width = 499; +} +); +unicode = 8260; +}, +{ +color = 6; +glyphname = onehalf; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(175,0,l), +(601,690,l), +(478,690,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(179,384,l), +(179,690,l), +(103,690,l), +(96,647,o), +(76,634,o), +(30,631,c), +(30,574,l), +(88,574,l), +(88,384,l) +); +}, +{ +closed = 1; +nodes = ( +(657,0,l), +(657,80,l), +(545,80,l), +(592,118,ls), +(630,149,o), +(647,179,o), +(647,215,cs), +(647,273,o), +(600,314,o), +(536,314,cs), +(474,314,o), +(424,282,o), +(417,197,c), +(508,189,l), +(509,224,o), +(521,231,o), +(533,231,cs), +(545,231,o), +(554,223,o), +(554,208,cs), +(554,189,o), +(538,169,o), +(511,146,cs), +(415,63,l), +(415,0,l) +); +} +); +width = 697; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(187,384,l), +(187,690,l), +(110,690,l), +(110,384,l) +); +}, +{ +closed = 1; +nodes = ( +(105,599,o), +(123,633,o), +(141,690,c), +(95,690,l), +(84,677,o), +(69,665,o), +(50,658,c), +(50,586,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(161,0,l), +(597,690,l), +(494,690,l), +(58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(187,384,l), +(187,690,l), +(120,690,l), +(114,651,o), +(95,639,o), +(52,635,c), +(52,589,l), +(110,589,l), +(110,384,l) +); +}, +{ +closed = 1; +nodes = ( +(659,0,l), +(659,66,l), +(533,66,l), +(591,115,ls), +(628,147,o), +(648,179,o), +(648,219,cs), +(648,274,o), +(603,313,o), +(545,313,cs), +(485,313,o), +(436,280,o), +(427,204,c), +(498,190,l), +(505,234,o), +(522,244,o), +(540,244,cs), +(557,244,o), +(572,232,o), +(572,212,cs), +(572,192,o), +(556,171,o), +(529,147,cs), +(426,53,l), +(426,0,l) +); +} +); +width = 709; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(187,384,l), +(187,690,l), +(110,690,l), +(110,384,l) +); +}, +{ +closed = 1; +nodes = ( +(105,599,o), +(123,633,o), +(141,690,c), +(95,690,l), +(84,677,o), +(69,665,o), +(50,658,c), +(50,586,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(161,0,l), +(597,690,l), +(494,690,l), +(58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(648,274,o), +(603,313,o), +(545,313,c), +(485,313,o), +(436,280,o), +(427,204,c), +(498,190,l), +(505,234,o), +(522,244,o), +(540,244,c), +(557,244,o), +(572,232,o), +(572,212,c), +(572,192,o), +(556,171,o), +(529,147,cs), +(426,53,l), +(510,46,l), +(591,115,ls), +(628,147,o), +(648,179,o), +(648,219,c) +); +}, +{ +closed = 1; +nodes = ( +(659,66,l), +(456,66,l), +(426,53,l), +(426,0,l), +(659,0,l) +); +}, +{ +closed = 1; +nodes = ( +(187,384,l), +(187,690,l), +(120,690,l), +(110,610,l), +(110,384,l) +); +}, +{ +closed = 1; +nodes = ( +(146,589,l), +(120,690,l), +(114,651,o), +(95,639,o), +(52,635,c), +(52,589,l) +); +} +); +width = 709; +} +); +unicode = 189; +}, +{ +color = 6; +glyphname = onequarter; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(175,0,l), +(601,690,l), +(478,690,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(179,384,l), +(179,690,l), +(103,690,l), +(96,647,o), +(76,634,o), +(30,631,c), +(30,574,l), +(88,574,l), +(88,384,l) +); +}, +{ +closed = 1; +nodes = ( +(606,0,l), +(606,42,l), +(642,42,l), +(642,112,l), +(606,112,l), +(606,306,l), +(495,306,l), +(384,95,l), +(384,42,l), +(516,42,l), +(516,0,l) +); +}, +{ +closed = 1; +nodes = ( +(516,206,l), +(516,112,l), +(474,112,l) +); +} +); +width = 687; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(161,0,l), +(597,690,l), +(494,690,l), +(58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(187,384,l), +(187,690,l), +(120,690,l), +(114,651,o), +(95,639,o), +(52,635,c), +(52,589,l), +(110,589,l), +(110,384,l) +); +}, +{ +closed = 1; +nodes = ( +(598,0,l), +(598,48,l), +(636,48,l), +(636,109,l), +(598,109,l), +(598,306,l), +(498,306,l), +(385,92,l), +(385,48,l), +(523,48,l), +(523,0,l) +); +}, +{ +closed = 1; +nodes = ( +(523,233,l), +(523,109,l), +(459,109,l) +); +} +); +width = 666; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(385,48,l), +(636,48,l), +(636,109,l), +(402,109,l), +(385,92,l) +); +}, +{ +closed = 1; +nodes = ( +(598,0,l), +(598,306,l), +(523,306,l), +(523,0,l) +); +}, +{ +closed = 1; +nodes = ( +(450,92,l), +(561,306,l), +(498,306,l), +(385,92,l) +); +}, +{ +closed = 1; +nodes = ( +(161,0,l), +(597,690,l), +(494,690,l), +(58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(187,384,l), +(187,690,l), +(120,690,l), +(110,610,l), +(110,384,l) +); +}, +{ +closed = 1; +nodes = ( +(146,589,l), +(120,690,l), +(114,651,o), +(95,639,o), +(52,635,c), +(52,589,l) +); +} +); +width = 666; +} +); +unicode = 188; +}, +{ +color = 6; +glyphname = threequarters; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(235,0,l), +(661,690,l), +(538,690,l), +(112,0,l) +); +}, +{ +closed = 1; +nodes = ( +(702,42,l), +(702,112,l), +(462,112,l), +(444,95,l), +(444,42,l) +); +}, +{ +closed = 1; +nodes = ( +(234,376,o), +(289,411,o), +(289,482,c), +(289,529,o), +(260,568,o), +(213,568,c), +(196,568,o), +(178,565,o), +(162,561,c), +(177,545,l), +(284,628,l), +(226,667,l), +(115,564,l), +(115,522,l), +(160,522,l), +(188,522,o), +(201,510,o), +(201,489,c), +(201,468,o), +(189,456,o), +(168,456,c), +(146,456,o), +(133,468,o), +(129,499,c), +(40,481,l), +(50,409,o), +(99,376,o), +(164,376,c) +); +}, +{ +closed = 1; +nodes = ( +(526,95,l), +(621,306,l), +(555,306,l), +(444,95,l) +); +}, +{ +closed = 1; +nodes = ( +(666,0,l), +(666,306,l), +(576,306,l), +(576,0,l) +); +}, +{ +closed = 1; +nodes = ( +(256,610,l), +(284,628,l), +(284,690,l), +(48,690,l), +(48,610,l) +); +} +); +width = 747; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(195,0,l), +(631,690,l), +(528,690,l), +(92,0,l) +); +}, +{ +closed = 1; +nodes = ( +(670,48,l), +(670,109,l), +(436,109,l), +(419,92,l), +(419,48,l) +); +}, +{ +closed = 1; +nodes = ( +(219,377,o), +(274,417,o), +(274,489,c), +(274,539,o), +(241,576,o), +(191,576,c), +(181,576,o), +(166,575,o), +(153,573,c), +(162,547,l), +(269,637,l), +(211,667,l), +(107,565,l), +(107,528,l), +(150,528,l), +(185,528,o), +(203,511,o), +(203,485,c), +(203,458,o), +(182,442,o), +(156,442,c), +(134,442,o), +(109,454,o), +(106,488,c), +(35,473,l), +(43,408,o), +(90,377,o), +(156,377,c) +); +}, +{ +closed = 1; +nodes = ( +(484,92,l), +(595,306,l), +(532,306,l), +(419,92,l) +); +}, +{ +closed = 1; +nodes = ( +(632,0,l), +(632,306,l), +(557,306,l), +(557,0,l) +); +}, +{ +closed = 1; +nodes = ( +(239,624,l), +(269,637,l), +(269,690,l), +(43,690,l), +(43,624,l) +); +} +); +width = 700; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(419,48,l), +(670,48,l), +(670,109,l), +(436,109,l), +(419,92,l) +); +}, +{ +closed = 1; +nodes = ( +(632,0,l), +(632,306,l), +(557,306,l), +(557,0,l) +); +}, +{ +closed = 1; +nodes = ( +(484,92,l), +(595,306,l), +(532,306,l), +(419,92,l) +); +}, +{ +closed = 1; +nodes = ( +(195,0,l), +(631,690,l), +(528,690,l), +(92,0,l) +); +}, +{ +closed = 1; +nodes = ( +(43,624,l), +(239,624,l), +(269,637,l), +(269,690,l), +(43,690,l) +); +}, +{ +closed = 1; +nodes = ( +(162,547,l), +(269,637,l), +(211,667,l), +(107,565,l), +(107,528,l), +(150,528,l), +(185,528,o), +(203,511,o), +(203,485,c), +(203,458,o), +(182,442,o), +(156,442,c), +(134,442,o), +(109,454,o), +(106,488,c), +(35,473,l), +(43,408,o), +(90,377,o), +(156,377,c), +(219,377,o), +(274,417,o), +(274,489,c), +(274,539,o), +(241,576,o), +(191,576,c), +(181,576,o), +(166,575,o), +(153,573,c) +); +} +); +width = 700; +} +); +unicode = 190; +}, +{ +color = 6; +glyphname = onesuperior; +kernLeft = M; +kernRight = b; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(148,384,l), +(148,690,l), +(57,690,l), +(57,384,l) +); +}, +{ +closed = 1; +nodes = ( +(60,590,o), +(90,628,o), +(108,690,c), +(43,690,l), +(31,678,o), +(16,667,o), +(-1,661,c), +(-1,577,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(148,384,l), +(148,690,l), +(72,690,l), +(57,593,l), +(57,384,l) +); +}, +{ +closed = 1; +nodes = ( +(93,574,l), +(72,690,l), +(65,647,o), +(45,634,o), +(-1,631,c), +(-1,574,l) +); +} +); +userData = { +ufoStretch.beamYPositionForStretchedGlyph = 114.20507; +}; +width = 176; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(56,599,o), +(74,633,o), +(92,690,c), +(46,690,l), +(35,677,o), +(20,665,o), +(1,658,c), +(1,586,l) +); +}, +{ +closed = 1; +nodes = ( +(138,384,l), +(138,690,l), +(61,690,l), +(61,384,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(138,384,l), +(138,690,l), +(71,690,l), +(61,610,l), +(61,384,l) +); +}, +{ +closed = 1; +nodes = ( +(97,589,l), +(71,690,l), +(65,651,o), +(46,639,o), +(3,635,c), +(3,589,l) +); +} +); +width = 171; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(56,599,o), +(74,633,o), +(92,690,c), +(46,690,l), +(35,677,o), +(20,665,o), +(1,658,c), +(1,586,l) +); +}, +{ +closed = 1; +nodes = ( +(138,384,l), +(138,690,l), +(61,690,l), +(61,384,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(138,384,l), +(138,690,l), +(71,690,l), +(61,610,l), +(61,384,l) +); +}, +{ +closed = 1; +nodes = ( +(97,589,l), +(71,690,l), +(65,651,o), +(45.73,639.304,o), +(3,635,c), +(3,589,l) +); +} +); +width = 171; +} +); +unicode = 185; +}, +{ +color = 6; +glyphname = twosuperior; +kernLeft = M; +kernRight = b; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(189,502,ls), +(227,533,o), +(244,563,o), +(244,599,c), +(244,657,o), +(197,698,o), +(133,698,c), +(71,698,o), +(21,666,o), +(14,581,c), +(105,573,l), +(106,608,o), +(118,615,o), +(130,615,c), +(142,615,o), +(151,607,o), +(151,592,c), +(151,573,o), +(135,553,o), +(108,530,cs), +(12,447,l), +(113,440,l) +); +}, +{ +closed = 1; +nodes = ( +(254,384,l), +(254,464,l), +(40,464,l), +(12,447,l), +(12,384,l) +); +} +); +width = 265; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,499,ls), +(217,531,o), +(237,563,o), +(237,603,c), +(237,658,o), +(192,697,o), +(134,697,c), +(74,697,o), +(25,664,o), +(16,588,c), +(87,574,l), +(94,618,o), +(111,628,o), +(129,628,c), +(146,628,o), +(161,616,o), +(161,596,c), +(161,576,o), +(145,555,o), +(118,531,cs), +(15,437,l), +(99,430,l) +); +}, +{ +closed = 1; +nodes = ( +(248,384,l), +(248,450,l), +(45,450,l), +(15,437,l), +(15,384,l) +); +} +); +width = 261; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(237,658,o), +(192,697,o), +(134,697,c), +(74,697,o), +(25,664,o), +(16,588,c), +(87,574,l), +(94,618,o), +(111,628,o), +(129,628,c), +(146,628,o), +(161,616,o), +(161,596,c), +(161,576,o), +(145,555,o), +(118,531,cs), +(15,437,l), +(99,430,l), +(180,499,ls), +(217,531,o), +(237,563,o), +(237,603,c) +); +}, +{ +closed = 1; +nodes = ( +(248,450,l), +(45,450,l), +(15,437,l), +(15,384,l), +(248,384,l) +); +} +); +width = 261; +} +); +unicode = 178; +}, +{ +color = 6; +glyphname = threesuperior; +kernLeft = M; +kernRight = b; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(198,376,o), +(253,411,o), +(253,482,c), +(253,529,o), +(224,568,o), +(177,568,c), +(160,568,o), +(142,565,o), +(126,561,c), +(141,545,l), +(248,628,l), +(190,667,l), +(79,564,l), +(79,522,l), +(124,522,l), +(152,522,o), +(165,510,o), +(165,489,c), +(165,468,o), +(153,456,o), +(132,456,c), +(110,456,o), +(97,468,o), +(93,499,c), +(4,481,l), +(14,409,o), +(63,376,o), +(128,376,c) +); +}, +{ +closed = 1; +nodes = ( +(220,610,l), +(248,628,l), +(248,690,l), +(12,690,l), +(12,610,l) +); +} +); +width = 264; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(192,377,o), +(247,417,o), +(247,489,c), +(247,539,o), +(214,576,o), +(164,576,c), +(154,576,o), +(139,575,o), +(126,573,c), +(135,547,l), +(242,637,l), +(184,667,l), +(80,565,l), +(80,528,l), +(123,528,l), +(158,528,o), +(176,511,o), +(176,485,c), +(176,458,o), +(155,442,o), +(129,442,c), +(107,442,o), +(82,454,o), +(79,488,c), +(8,473,l), +(16,408,o), +(63,377,o), +(129,377,c) +); +}, +{ +closed = 1; +nodes = ( +(212,624,l), +(242,637,l), +(242,690,l), +(16,690,l), +(16,624,l) +); +} +); +width = 261; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(16,624,l), +(212,624,l), +(242,637,l), +(242,690,l), +(16,690,l) +); +}, +{ +closed = 1; +nodes = ( +(135,547,l), +(242,637,l), +(184,667,l), +(80,565,l), +(80,528,l), +(123,528,l), +(158,528,o), +(176,511,o), +(176,485,c), +(176,458,o), +(155,442,o), +(129,442,c), +(107,442,o), +(82,454,o), +(79,488,c), +(8,473,l), +(16,408,o), +(63,377,o), +(129,377,c), +(192,377,o), +(247,417,o), +(247,489,c), +(247,539,o), +(214,576,o), +(164,576,c), +(154,576,o), +(139,575,o), +(126,573,c) +); +} +); +width = 261; +} +); +unicode = 179; +}, +{ +color = 6; +glyphname = space; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +width = 182; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +width = 220; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +width = 220; +} +); +unicode = 32; +}, +{ +color = 6; +glyphname = nbspace; +lastChange = "2024-03-21 11:22:45 +0000"; +layers = ( +{ +layerId = m001; +width = 182; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +width = 220; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +width = 200; +} +); +unicode = 160; +}, +{ +color = 6; +glyphname = CR; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +width = 500; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +width = 500; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +width = 500; +} +); +}, +{ +color = 6; +glyphname = NULL; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +width = 500; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +width = 500; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +width = 500; +} +); +}, +{ +color = 6; +glyphname = .notdef; +lastChange = "2024-03-21 11:24:13 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (472,0); +}, +{ +name = top; +pos = (298,690); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(525,-100,l), +(525,690,l), +(75,690,l), +(75,-100,l) +); +}, +{ +closed = 1; +nodes = ( +(180,594,l), +(420,594,l), +(420,-4,l), +(180,-4,l) +); +} +); +width = 600; +}, +{ +anchors = ( +{ +name = bottom; +pos = (499,0); +}, +{ +name = top; +pos = (356,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(576,-100,l), +(576,690,l), +(100,690,l), +(100,-100,l) +); +}, +{ +closed = 1; +nodes = ( +(255,545,l), +(421,545,l), +(421,45,l), +(255,45,l) +); +} +); +width = 676; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +width = 600; +} +); +}, +{ +color = 6; +glyphname = space.tf; +lastChange = "2024-03-21 11:23:09 +0000"; +layers = ( +{ +layerId = m001; +width = 600; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +width = 600; +} +); +}, +{ +color = 6; +glyphname = period; +kernLeft = K; +kernRight = Q; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(175,-14,o), +(214,21,o), +(214,73,cs), +(214,126,o), +(175,162,o), +(124,162,cs), +(74,162,o), +(36,126,o), +(36,73,cs), +(36,21,o), +(74,-14,o), +(124,-14,cs) +); +} +); +width = 250; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(148,-10,o), +(175,18,o), +(175,56,cs), +(175,95,o), +(148,123,o), +(110,123,cs), +(72,123,o), +(45,95,o), +(45,56,cs), +(45,18,o), +(72,-10,o), +(110,-10,cs) +); +} +); +width = 220; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(147.823,-10,o), +(175,18,o), +(175,56,cs), +(175,95,o), +(147.823,123,o), +(110,123,cs), +(72.177,123,o), +(45,95,o), +(45,56,cs), +(45,18,o), +(72.177,-10,o), +(110,-10,cs) +); +} +); +width = 220; +} +); +unicode = 46; +}, +{ +color = 6; +glyphname = comma; +kernLeft = K; +kernRight = Q; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(214,127,o), +(175,162,o), +(124,162,cs), +(74,162,o), +(36,126,o), +(36,73,cs), +(36,21,o), +(74,-14,o), +(124,-14,c), +(104,6,l), +(61,-160,l), +(142,-160,l), +(186,-51,ls), +(204,-6,o), +(214,30,o), +(214,67,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(146,-159,l), +(208,148,l), +(48,148,l), +(48,-159,l) +); +} +); +width = 246; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(114,-160,l), +(158,113,l), +(44,113,l), +(44,-160,l) +); +} +); +width = 192; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(44,-160,l), +(114,-160,l), +(158,113,l), +(44,113,l) +); +} +); +width = 192; +} +); +unicode = 44; +}, +{ +color = 6; +glyphname = colon; +kernLeft = D; +kernRight = I; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(175,368,o), +(214,404,o), +(214,456,cs), +(214,509,o), +(175,544,o), +(124,544,cs), +(74,544,o), +(36,509,o), +(36,456,cs), +(36,404,o), +(74,368,o), +(124,368,cs) +); +}, +{ +closed = 1; +nodes = ( +(175,-14,o), +(214,21,o), +(214,73,cs), +(214,126,o), +(175,162,o), +(124,162,cs), +(74,162,o), +(36,126,o), +(36,73,cs), +(36,21,o), +(74,-14,o), +(124,-14,cs) +); +} +); +width = 250; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(148,407,o), +(175,435,o), +(175,473,cs), +(175,512,o), +(148,540,o), +(110,540,cs), +(72,540,o), +(45,512,o), +(45,473,cs), +(45,435,o), +(72,407,o), +(110,407,cs) +); +}, +{ +closed = 1; +nodes = ( +(148,-10,o), +(175,18,o), +(175,56,cs), +(175,95,o), +(148,123,o), +(110,123,cs), +(72,123,o), +(45,95,o), +(45,56,cs), +(45,18,o), +(72,-10,o), +(110,-10,cs) +); +} +); +width = 220; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(147.823,-10,o), +(175,18,o), +(175,56,cs), +(175,95,o), +(147.823,123,o), +(110,123,cs), +(72.177,123,o), +(45,95,o), +(45,56,cs), +(45,18,o), +(72.177,-10,o), +(110,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(148,407,o), +(175,435,o), +(175,473,cs), +(175,512,o), +(148,540,o), +(110,540,cs), +(72,540,o), +(45,512,o), +(45,473,cs), +(45,435,o), +(72,407,o), +(110,407,cs) +); +} +); +width = 220; +} +); +unicode = 58; +}, +{ +color = 6; +glyphname = semicolon; +kernLeft = D; +kernRight = I; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(146,-159,l), +(208,148,l), +(48,148,l), +(48,-159,l) +); +}, +{ +closed = 1; +nodes = ( +(175,368,o), +(214,404,o), +(214,456,cs), +(214,509,o), +(175,544,o), +(124,544,cs), +(74,544,o), +(36,509,o), +(36,456,cs), +(36,404,o), +(74,368,o), +(124,368,cs) +); +} +); +width = 250; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(124,-160,l), +(168,113,l), +(54,113,l), +(54,-160,l) +); +}, +{ +closed = 1; +nodes = ( +(148,407,o), +(175,435,o), +(175,473,cs), +(175,512,o), +(148,540,o), +(110,540,cs), +(72,540,o), +(45,512,o), +(45,473,cs), +(45,435,o), +(72,407,o), +(110,407,cs) +); +} +); +width = 220; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(148,407,o), +(175,435,o), +(175,473,cs), +(175,512,o), +(148,540,o), +(110,540,cs), +(72,540,o), +(45,512,o), +(45,473,cs), +(45,435,o), +(72,407,o), +(110,407,cs) +); +}, +{ +closed = 1; +nodes = ( +(54,-160,l), +(124,-160,l), +(168,113,l), +(54,113,l) +); +} +); +width = 220; +} +); +unicode = 59; +}, +{ +color = 6; +glyphname = ellipsis; +kernLeft = K; +kernRight = Q; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(655,-14,o), +(694,21,o), +(694,73,cs), +(694,126,o), +(655,162,o), +(604,162,cs), +(554,162,o), +(516,126,o), +(516,73,cs), +(516,21,o), +(554,-14,o), +(604,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(175,-14,o), +(214,21,o), +(214,73,cs), +(214,126,o), +(175,162,o), +(124,162,cs), +(74,162,o), +(36,126,o), +(36,73,cs), +(36,21,o), +(74,-14,o), +(124,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(415,-14,o), +(454,21,o), +(454,73,cs), +(454,126,o), +(415,162,o), +(364,162,cs), +(314,162,o), +(276,126,o), +(276,73,cs), +(276,21,o), +(314,-14,o), +(364,-14,cs) +); +} +); +width = 730; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(588,-10,o), +(615,18,o), +(615,56,cs), +(615,95,o), +(588,123,o), +(550,123,cs), +(512,123,o), +(485,95,o), +(485,56,cs), +(485,18,o), +(512,-10,o), +(550,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(148,-10,o), +(175,18,o), +(175,56,cs), +(175,95,o), +(148,123,o), +(110,123,cs), +(72,123,o), +(45,95,o), +(45,56,cs), +(45,18,o), +(72,-10,o), +(110,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(368,-10,o), +(395,18,o), +(395,56,cs), +(395,95,o), +(368,123,o), +(330,123,cs), +(292,123,o), +(265,95,o), +(265,56,cs), +(265,18,o), +(292,-10,o), +(330,-10,cs) +); +} +); +width = 660; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(148,-10,o), +(175,18,o), +(175,56,cs), +(175,95,o), +(148,123,o), +(110,123,cs), +(72,123,o), +(45,95,o), +(45,56,cs), +(45,18,o), +(72,-10,o), +(110,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(368,-10,o), +(395,18,o), +(395,56,cs), +(395,95,o), +(368,123,o), +(330,123,cs), +(292,123,o), +(265,95,o), +(265,56,cs), +(265,18,o), +(292,-10,o), +(330,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(588,-10,o), +(615,18,o), +(615,56,cs), +(615,95,o), +(588,123,o), +(550,123,cs), +(512,123,o), +(485,95,o), +(485,56,cs), +(485,18,o), +(512,-10,o), +(550,-10,cs) +); +} +); +width = 660; +} +); +unicode = 8230; +}, +{ +color = 6; +glyphname = exclam; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(188,247,l), +(215,502,l), +(215,690,l), +(59,690,l), +(59,502,l), +(86,247,l) +); +}, +{ +closed = 1; +nodes = ( +(187,-14,o), +(226,21,o), +(226,73,cs), +(226,126,o), +(187,162,o), +(136,162,cs), +(86,162,o), +(48,126,o), +(48,73,cs), +(48,21,o), +(86,-14,o), +(136,-14,cs) +); +} +); +width = 274; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(166,227,l), +(194,550,ls), +(198,598,o), +(199,619,o), +(199,632,c), +(199,670,o), +(175,700,o), +(135,700,cs), +(95,700,o), +(71,670,o), +(71,632,c), +(71,619,o), +(72,598,o), +(76,550,cs), +(104,227,l) +); +}, +{ +closed = 1; +nodes = ( +(173,-10,o), +(200,18,o), +(200,56,cs), +(200,95,o), +(173,123,o), +(135,123,cs), +(97,123,o), +(70,95,o), +(70,56,cs), +(70,18,o), +(97,-10,o), +(135,-10,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(166,227,l), +(188,478,l), +(188,690,l), +(83,690,l), +(83,478,l), +(104,227,l) +); +}, +{ +closed = 1; +nodes = ( +(173,-10,o), +(200,18,o), +(200,56,cs), +(200,95,o), +(173,123,o), +(135,123,cs), +(97,123,o), +(70,95,o), +(70,56,cs), +(70,18,o), +(97,-10,o), +(135,-10,cs) +); +} +); +width = 270; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(166,227,l), +(194,550,ls), +(198,598,o), +(199,619,o), +(199,632,c), +(199,670,o), +(175,700,o), +(135,700,cs), +(95,700,o), +(71,670,o), +(71,632,c), +(71,619,o), +(72,598,o), +(76,550,cs), +(104,227,l) +); +}, +{ +closed = 1; +nodes = ( +(173,-10,o), +(200,18,o), +(200,56,cs), +(200,95,o), +(173,123,o), +(135,123,cs), +(97,123,o), +(70,95,o), +(70,56,cs), +(70,18,o), +(97,-10,o), +(135,-10,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(173,-10,o), +(200,18,o), +(200,56,cs), +(200,95,o), +(173,123,o), +(135,123,cs), +(97,123,o), +(70,95,o), +(70,56,cs), +(70,18,o), +(97,-10,o), +(135,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(83,478,l), +(104,227,l), +(166,227,l), +(188,478,l), +(188,690,l), +(83,690,l) +); +} +); +width = 270; +} +); +unicode = 33; +}, +{ +color = 6; +glyphname = exclamdown; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(215,-175,l), +(215,28,l), +(188,283,l), +(86,283,l), +(59,28,l), +(59,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(188,368,o), +(226,404,o), +(226,457,cs), +(226,509,o), +(188,544,o), +(138,544,cs), +(87,544,o), +(48,509,o), +(48,457,cs), +(48,404,o), +(87,368,o), +(138,368,cs) +); +} +); +width = 274; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(166,227,l), +(194,550,ls), +(198,598,o), +(199,619,o), +(199,632,c), +(199,670,o), +(175,700,o), +(135,700,cs), +(95,700,o), +(71,670,o), +(71,632,c), +(71,619,o), +(72,598,o), +(76,550,cs), +(104,227,l) +); +}, +{ +closed = 1; +nodes = ( +(173,-10,o), +(200,18,o), +(200,56,cs), +(200,95,o), +(173,123,o), +(135,123,cs), +(97,123,o), +(70,95,o), +(70,56,cs), +(70,18,o), +(97,-10,o), +(135,-10,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(188,-175,l), +(188,52,l), +(166,303,l), +(104,303,l), +(83,52,l), +(83,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(173,407,o), +(200,435,o), +(200,474,cs), +(200,512,o), +(173,540,o), +(135,540,cs), +(97,540,o), +(70,512,o), +(70,474,cs), +(70,435,o), +(97,407,o), +(135,407,cs) +); +} +); +width = 270; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(166,227,l), +(194,550,ls), +(198,598,o), +(199,619,o), +(199,632,c), +(199,670,o), +(175,700,o), +(135,700,cs), +(95,700,o), +(71,670,o), +(71,632,c), +(71,619,o), +(72,598,o), +(76,550,cs), +(104,227,l) +); +}, +{ +closed = 1; +nodes = ( +(173,-10,o), +(200,18,o), +(200,56,cs), +(200,95,o), +(173,123,o), +(135,123,cs), +(97,123,o), +(70,95,o), +(70,56,cs), +(70,18,o), +(97,-10,o), +(135,-10,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(97,540,o), +(70,512,o), +(70,474,cs), +(70,435,o), +(97,407,o), +(135,407,cs), +(173,407,o), +(200,435,o), +(200,474,cs), +(200,512,o), +(173,540,o), +(135,540,cs) +); +}, +{ +closed = 1; +nodes = ( +(188,-175,l), +(188,52,l), +(166,303,l), +(104,303,l), +(83,52,l), +(83,-175,l) +); +} +); +width = 270; +} +); +unicode = 161; +}, +{ +color = 6; +glyphname = question; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(229,269,ls), +(218,438,o), +(409,395,o), +(409,514,c), +(409,569,o), +(364,607,o), +(286,607,c), +(207,607,o), +(160,566,o), +(144,484,c), +(45,508,l), +(67,631,o), +(157,700,o), +(288,700,c), +(434,700,o), +(515,626,o), +(515,524,c), +(515,332,o), +(311,383,o), +(304,260,cs), +(302,227,l), +(232,227,l) +); +}, +{ +closed = 1; +nodes = ( +(311,-14,o), +(350,21,o), +(350,73,cs), +(350,126,o), +(311,162,o), +(260,162,cs), +(210,162,o), +(172,126,o), +(172,73,cs), +(172,21,o), +(210,-14,o), +(260,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(522,629,o), +(422,704,o), +(291,704,c), +(156,704,o), +(51,638.184,o), +(32,489,c), +(186,469,l), +(195,538.742,o), +(232,563,o), +(281,563,c), +(327,563,o), +(362,541,o), +(362,503,c), +(362,414,o), +(171,431,o), +(203,264,cs), +(210,227,l), +(312,227,l), +(315,255,ls), +(327,363,o), +(522,332,o), +(522,514,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(322,227,l), +(322,243,ls), +(322,338,o), +(520,340,o), +(520,514,c), +(520,629,o), +(420,704,o), +(289,704,c), +(154,704,o), +(49,638,o), +(30,489,c), +(184,469,l), +(193,539,o), +(231,563,o), +(280,563,c), +(326,563,o), +(360,541,o), +(360,504,c), +(360,414,o), +(185,416,o), +(191,254,cs), +(192,227,l) +); +}, +{ +closed = 1; +nodes = ( +(309,-14,o), +(348,21,o), +(348,73,cs), +(348,126,o), +(309,162,o), +(258,162,cs), +(208,162,o), +(170,126,o), +(170,73,cs), +(170,21,o), +(208,-14,o), +(258,-14,cs) +); +} +); +width = 550; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(229,269,ls), +(217,438,o), +(409,395,o), +(409,514,c), +(409,569,o), +(364.435,607,o), +(286,607,c), +(207.111,607,o), +(159.778,566.308,o), +(144,484,c), +(45,508,l), +(67.175,630.614,o), +(156.798,700,o), +(288,700,c), +(434.331,700,o), +(515,626,o), +(515,524,c), +(515,332,o), +(310.535,383,o), +(304,260,cs), +(302,227,l), +(232,227,l) +); +}, +{ +closed = 1; +nodes = ( +(306,-10,o), +(333,18,o), +(333,56,cs), +(333,95,o), +(306,123,o), +(268,123,cs), +(230,123,o), +(203,95,o), +(203,56,cs), +(203,18,o), +(230,-10,o), +(268,-10,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(312,227,l), +(312,255,ls), +(312,378,o), +(515,338,o), +(515,524,c), +(515,626,o), +(436,700,o), +(290,700,c), +(159,700,o), +(67,631,o), +(45,508,c), +(144,484,l), +(160,566,o), +(209,607,o), +(288,607,c), +(366,607,o), +(409,569,o), +(409,514,c), +(409,401,o), +(221,433,o), +(221,264,cs), +(221,227,l) +); +}, +{ +closed = 1; +nodes = ( +(306,-10,o), +(333,18,o), +(333,56,cs), +(333,95,o), +(306,123,o), +(268,123,cs), +(230,123,o), +(203,95,o), +(203,56,cs), +(203,18,o), +(230,-10,o), +(268,-10,cs) +); +} +); +width = 555; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(229,269,ls), +(217,438,o), +(409,395,o), +(409,514,c), +(409,569,o), +(364.435,607,o), +(286,607,c), +(207.111,607,o), +(159.778,566.308,o), +(144,484,c), +(45,508,l), +(67.175,630.614,o), +(156.798,700,o), +(288,700,c), +(434.331,700,o), +(515,626,o), +(515,524,c), +(515,332,o), +(310.535,383,o), +(304,260,cs), +(302,227,l), +(232,227,l) +); +}, +{ +closed = 1; +nodes = ( +(306,-10,o), +(333,18,o), +(333,56,cs), +(333,95,o), +(306,123,o), +(268,123,cs), +(230,123,o), +(203,95,o), +(203,56,cs), +(203,18,o), +(230,-10,o), +(268,-10,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(221,264,ls), +(221,433,o), +(409,401,o), +(409,514,c), +(409,569,o), +(366,607,o), +(288,607,c), +(209,607,o), +(159.778,566.308,o), +(144,484,c), +(45,508,l), +(67.175,630.614,o), +(159,700,o), +(290,700,c), +(436,700,o), +(515,626,o), +(515,524,c), +(515,338,o), +(312,378,o), +(312,255,cs), +(312,227,l), +(221,227,l) +); +}, +{ +closed = 1; +nodes = ( +(306,-10,o), +(333,18,o), +(333,56,cs), +(333,95,o), +(306,123,o), +(268,123,cs), +(230,123,o), +(203,95,o), +(203,56,cs), +(203,18,o), +(230,-10,o), +(268,-10,cs) +); +} +); +width = 555; +} +); +unicode = 63; +}, +{ +color = 6; +glyphname = questiondown; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(229,269,ls), +(218,438,o), +(409,395,o), +(409,514,c), +(409,569,o), +(364,607,o), +(286,607,c), +(207,607,o), +(160,566,o), +(144,484,c), +(45,508,l), +(67,631,o), +(157,700,o), +(288,700,c), +(434,700,o), +(515,626,o), +(515,524,c), +(515,332,o), +(311,383,o), +(304,260,cs), +(302,227,l), +(232,227,l) +); +}, +{ +closed = 1; +nodes = ( +(241,544,o), +(202,509,o), +(202,457,cs), +(202,404,o), +(241,368,o), +(292,368,cs), +(342,368,o), +(380,404,o), +(380,457,cs), +(380,509,o), +(342,544,o), +(292,544,cs) +); +}, +{ +closed = 1; +nodes = ( +(30,-115.053,o), +(130,-189,o), +(261,-189,c), +(396,-189,o), +(501,-124.93,o), +(520,31,c), +(366,51,l), +(357,-26.447,o), +(320,-48,o), +(271,-48,c), +(225,-48,o), +(190,-27.333,o), +(190,17,c), +(190,109.724,o), +(381,92.013,o), +(349,266,cs), +(342,303,l), +(240,303,l), +(237,275,ls), +(225,162.83,o), +(30,195.027,o), +(30,6,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(396,-189,o), +(501,-123,o), +(520,26,c), +(366,46,l), +(357,-24,o), +(319,-48,o), +(270,-48,c), +(224,-48,o), +(190,-24,o), +(190,16,c), +(190,110,o), +(365,108,o), +(359,276,cs), +(358,303,l), +(228,303,l), +(228,287,ls), +(228,188,o), +(30,186,o), +(30,6,c), +(30,-112,o), +(130,-189,o), +(261,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(342,368,o), +(380,404,o), +(380,457,cs), +(380,509,o), +(342,544,o), +(292,544,cs), +(241,544,o), +(202,509,o), +(202,457,cs), +(202,404,o), +(241,368,o), +(292,368,cs) +); +} +); +width = 550; +}, +{ +background = { +shapes = ( +{ +closed = 0; +nodes = ( +(227,550,l), +(255,227,l), +(317,227,l), +(345,550,l) +); +}, +{ +closed = 1; +nodes = ( +(326,261,ls), +(337,92,o), +(146,120,o), +(146,1,c), +(146,-54,o), +(191,-92,o), +(269,-92,c), +(348,-92,o), +(395,-51,o), +(411,31,c), +(510,7,l), +(488,-116,o), +(398,-185,o), +(267,-185,c), +(121,-185,o), +(40,-111,o), +(40,-9,c), +(40,183,o), +(244,147,o), +(251,270,cs), +(253,303,l), +(323,303,l) +); +}, +{ +closed = 1; +nodes = ( +(249,540,o), +(222,512,o), +(222,474,cs), +(222,435,o), +(249,407,o), +(287,407,cs), +(325,407,o), +(352,435,o), +(352,474,cs), +(352,512,o), +(325,540,o), +(287,540,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(396,-185,o), +(488,-114,o), +(510,12,c), +(411,36,l), +(395,-49,o), +(346,-92,o), +(267,-92,c), +(189,-92,o), +(146,-52,o), +(146,6,c), +(146,124,o), +(334,90,o), +(334,266,cs), +(334,303,l), +(243,303,l), +(243,275,ls), +(243,147,o), +(40,189,o), +(40,-4,c), +(40,-109,o), +(119,-185,o), +(265,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(325,407,o), +(352,435,o), +(352,474,cs), +(352,512,o), +(325,540,o), +(287,540,cs), +(249,540,o), +(222,512,o), +(222,474,cs), +(222,435,o), +(249,407,o), +(287,407,cs) +); +} +); +width = 555; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 0; +nodes = ( +(227,550,l), +(255,227,l), +(317,227,l), +(345,550,l) +); +}, +{ +closed = 1; +nodes = ( +(326,261,ls), +(337,92,o), +(146,120,o), +(146,1,c), +(146,-54,o), +(191,-92,o), +(269,-92,c), +(348,-92,o), +(395,-51,o), +(411,31,c), +(510,7,l), +(488,-116,o), +(398,-185,o), +(267,-185,c), +(121,-185,o), +(40,-111,o), +(40,-9,c), +(40,183,o), +(244,147,o), +(251,270,cs), +(253,303,l), +(323,303,l) +); +}, +{ +closed = 1; +nodes = ( +(249,540,o), +(222,512,o), +(222,474,cs), +(222,435,o), +(249,407,o), +(287,407,cs), +(325,407,o), +(352,435,o), +(352,474,cs), +(352,512,o), +(325,540,o), +(287,540,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(334,266,ls), +(334,90.24,o), +(146,123.52,o), +(146,6,c), +(146,-51.957,o), +(189,-92,o), +(267,-92,c), +(346,-92,o), +(395,-49.333,o), +(411,36,c), +(510,12,l), +(488,-114.203,o), +(396,-185,o), +(265,-185,c), +(119,-185,o), +(40,-108.898,o), +(40,-4,c), +(40,188.914,o), +(243,147.428,o), +(243,275,cs), +(243,303,l), +(334,303,l) +); +}, +{ +closed = 1; +nodes = ( +(249,540,o), +(222,512,o), +(222,474,cs), +(222,435,o), +(249,407,o), +(287,407,cs), +(325,407,o), +(352,435,o), +(352,474,cs), +(352,512,o), +(325,540,o), +(287,540,cs) +); +} +); +width = 555; +} +); +unicode = 191; +}, +{ +color = 6; +glyphname = periodcentered; +kernLeft = L; +kernRight = a; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(148,231,o), +(175,259,o), +(175,297,cs), +(175,336,o), +(148,364,o), +(110,364,cs), +(72,364,o), +(45,336,o), +(45,297,cs), +(45,259,o), +(72,231,o), +(110,231,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(175,213,o), +(214,248,o), +(214,300,cs), +(214,353,o), +(175,389,o), +(124,389,cs), +(74,389,o), +(36,353,o), +(36,300,cs), +(36,248,o), +(74,213,o), +(124,213,cs) +); +} +); +width = 250; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(148,231,o), +(175,259,o), +(175,297,cs), +(175,336,o), +(148,364,o), +(110,364,cs), +(72,364,o), +(45,336,o), +(45,297,cs), +(45,259,o), +(72,231,o), +(110,231,cs) +); +} +); +width = 220; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(148,231,o), +(175,259,o), +(175,297,cs), +(175,336,o), +(148,364,o), +(110,364,cs), +(72,364,o), +(45,336,o), +(45,297,cs), +(45,259,o), +(72,231,o), +(110,231,cs) +); +} +); +width = 220; +} +); +unicode = 183; +}, +{ +color = 6; +glyphname = bullet; +kernLeft = L; +kernRight = a; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(206,188,o), +(255,232,o), +(255,298,cs), +(255,365,o), +(206,411,o), +(141,411,cs), +(79,411,o), +(30,365,o), +(30,298,cs), +(30,232,o), +(79,188,o), +(141,188,cs) +); +} +); +width = 285; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(148,231,o), +(175,259,o), +(175,297,cs), +(175,336,o), +(148,364,o), +(110,364,cs), +(72,364,o), +(45,336,o), +(45,297,cs), +(45,259,o), +(72,231,o), +(110,231,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(197,203,o), +(235,243,o), +(235,296,cs), +(235,352,o), +(197,392,o), +(143,392,cs), +(89,392,o), +(50,352,o), +(50,296,cs), +(50,243,o), +(89,203,o), +(143,203,cs) +); +} +); +width = 285; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(148,231,o), +(175,259,o), +(175,297,cs), +(175,336,o), +(148,364,o), +(110,364,cs), +(72,364,o), +(45,336,o), +(45,297,cs), +(45,259,o), +(72,231,o), +(110,231,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(197,203,o), +(235,243,o), +(235,296,cs), +(235,352,o), +(197,392,o), +(143,392,cs), +(89,392,o), +(50,352,o), +(50,296,cs), +(50,243,o), +(89,203,o), +(143,203,cs) +); +} +); +width = 285; +} +); +unicode = 8226; +}, +{ +color = 6; +glyphname = asterisk; +kernLeft = M; +kernRight = b; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(222,704,o), +(196,675,o), +(196,636,c), +(196,613,o), +(202,595,o), +(208,580,cs), +(246,477,l), +(275,477,l), +(314,580,ls), +(320,595,o), +(326,613,o), +(326,636,c), +(326,675,o), +(300,704,o), +(261,704,cs) +); +}, +{ +closed = 1; +nodes = ( +(470,476,o), +(489,511,o), +(478,548,cs), +(466,585,o), +(430,600,o), +(392,588,c), +(371,581,o), +(355,570,o), +(343,560,cs), +(257,491,l), +(266,464,l), +(375,458,ls), +(391,458,o), +(411,457,o), +(433,465,c) +); +}, +{ +closed = 1; +nodes = ( +(325,279,o), +(364,271,o), +(396,293,cs), +(428,316,o), +(431,356,o), +(407,387,c), +(395,405,o), +(379,417,o), +(365,425,cs), +(273,486,l), +(249,469,l), +(279,363,ls), +(283,347,o), +(288,329,o), +(303,311,c) +); +}, +{ +closed = 1; +nodes = ( +(111,457,o), +(131,458,o), +(147,458,cs), +(256,464,l), +(265,491,l), +(179,560,ls), +(167,570,o), +(151,581,o), +(129,588,c), +(92,600,o), +(56,585,o), +(44,548,cs), +(33,511,o), +(52,476,o), +(89,465,c) +); +}, +{ +closed = 1; +nodes = ( +(272,469,l), +(249,486,l), +(156,425,ls), +(143,417,o), +(127,405,o), +(115,387,c), +(91,356,o), +(94,316,o), +(126,293,cs), +(158,271,o), +(197,279,o), +(219,311,c), +(233,329,o), +(239,347,o), +(243,363,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(444,347,l), +(282,493,l), +(232,456,l), +(320,258,l) +); +}, +{ +closed = 1; +nodes = ( +(286,456,l), +(236,493,l), +(74,347,l), +(198,258,l) +); +}, +{ +closed = 1; +nodes = ( +(271,507,l), +(82,616,l), +(35,471,l), +(251,448,l) +); +}, +{ +closed = 1; +nodes = ( +(290,477,l), +(335,690,l), +(183,690,l), +(228,477,l) +); +}, +{ +closed = 1; +nodes = ( +(482,471,l), +(435,616,l), +(246,507,l), +(266,448,l) +); +} +); +width = 517; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(235,700,o), +(214,676,o), +(214,646,c), +(214,633,o), +(216,620,o), +(220,602,cs), +(246,477,l), +(284,477,l), +(310,602,ls), +(314,620,o), +(316,633,o), +(316,646,c), +(316,676,o), +(295,700,o), +(265,700,cs) +); +}, +{ +closed = 1; +nodes = ( +(470,490,o), +(487,517,o), +(478,546,cs), +(468,574,o), +(439,587,o), +(410,577,c), +(398,573,o), +(386,567,o), +(370,558,cs), +(260,495,l), +(271,459,l), +(398,471,ls), +(417,473,o), +(430,476,o), +(442,480,c) +); +}, +{ +closed = 1; +nodes = ( +(340,286,o), +(371,278,o), +(396,295,cs), +(420,313,o), +(423,345,o), +(404,369,c), +(397,380,o), +(388,389,o), +(374,402,cs), +(280,487,l), +(249,465,l), +(300,349,ls), +(308,331,o), +(315,319,o), +(322,309,c) +); +}, +{ +closed = 1; +nodes = ( +(100,476,o), +(113,473,o), +(132,471,cs), +(259,459,l), +(270,495,l), +(160,558,ls), +(144,567,o), +(132,573,o), +(120,577,c), +(91,587,o), +(62,574,o), +(52,546,cs), +(43,517,o), +(60,490,o), +(88,480,c) +); +}, +{ +closed = 1; +nodes = ( +(281,465,l), +(250,487,l), +(156,402,ls), +(142,389,o), +(133,380,o), +(126,369,c), +(107,345,o), +(110,313,o), +(134,295,cs), +(159,278,o), +(190,286,o), +(208,309,c), +(215,319,o), +(222,331,o), +(230,349,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(429,333,l), +(281,490,l), +(243,462,l), +(347,274,l) +); +}, +{ +closed = 1; +nodes = ( +(284,462,l), +(246,490,l), +(98,333,l), +(180,274,l) +); +}, +{ +closed = 1; +nodes = ( +(271,500,l), +(76,592,l), +(45,495,l), +(256,455,l) +); +}, +{ +closed = 1; +nodes = ( +(288,477,l), +(315,690,l), +(213,690,l), +(240,477,l) +); +}, +{ +closed = 1; +nodes = ( +(482,495,l), +(451,592,l), +(256,500,l), +(271,455,l) +); +} +); +width = 527; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(235,700,o), +(214,676,o), +(214,646,c), +(214,633,o), +(216,620,o), +(220,602,cs), +(246,477,l), +(284,477,l), +(310,602,ls), +(314,620,o), +(316,633,o), +(316,646,c), +(316,676,o), +(295,700,o), +(265,700,cs) +); +}, +{ +closed = 1; +nodes = ( +(470,490,o), +(487,517,o), +(478,546,cs), +(468,574,o), +(439,587,o), +(410,577,c), +(398,573,o), +(386,567,o), +(370,558,cs), +(260,495,l), +(271,459,l), +(398,471,ls), +(417,473,o), +(430,476,o), +(442,480,c) +); +}, +{ +closed = 1; +nodes = ( +(340,286,o), +(371,278,o), +(396,295,cs), +(420,313,o), +(423,345,o), +(404,369,c), +(397,380,o), +(388,389,o), +(374,402,cs), +(280,487,l), +(249,465,l), +(300,349,ls), +(308,331,o), +(315,319,o), +(322,309,c) +); +}, +{ +closed = 1; +nodes = ( +(100,476,o), +(113,473,o), +(132,471,cs), +(259,459,l), +(270,495,l), +(160,558,ls), +(144,567,o), +(132,573,o), +(120,577,c), +(91,587,o), +(62,574,o), +(52,546,cs), +(43,517,o), +(60,490,o), +(88,480,c) +); +}, +{ +closed = 1; +nodes = ( +(281,465,l), +(250,487,l), +(156,402,ls), +(142,389,o), +(133,380,o), +(126,369,c), +(107,345,o), +(110,313,o), +(134,295,cs), +(159,278,o), +(190,286,o), +(208,309,c), +(215,319,o), +(222,331,o), +(230,349,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(240,477,l), +(288,477,l), +(315,690,l), +(213,690,l) +); +}, +{ +closed = 1; +nodes = ( +(256,455,l), +(271,500,l), +(76,592,l), +(45,495,l) +); +}, +{ +closed = 1; +nodes = ( +(284,462,l), +(246,490,l), +(98,333,l), +(180,274,l) +); +}, +{ +closed = 1; +nodes = ( +(451,592,l), +(256,500,l), +(271,455,l), +(482,495,l) +); +}, +{ +closed = 1; +nodes = ( +(429,333,l), +(281,490,l), +(243,462,l), +(347,274,l) +); +} +); +width = 527; +} +); +unicode = 42; +}, +{ +color = 6; +glyphname = numbersign; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(408,0,l), +(564,690,l), +(429,690,l), +(273,0,l) +); +}, +{ +closed = 1; +nodes = ( +(541,176,l), +(541,300,l), +(15,300,l), +(15,176,l) +); +}, +{ +closed = 1; +nodes = ( +(171,0,l), +(327,690,l), +(192,690,l), +(36,0,l) +); +}, +{ +closed = 1; +nodes = ( +(588,406,l), +(588,530,l), +(62,530,l), +(62,406,l) +); +} +); +width = 603; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(398,0,l), +(554,690,l), +(462,690,l), +(306,0,l) +); +}, +{ +closed = 1; +nodes = ( +(551,192,l), +(551,278,l), +(20,278,l), +(20,192,l) +); +}, +{ +closed = 1; +nodes = ( +(158,0,l), +(314,690,l), +(222,690,l), +(66,0,l) +); +}, +{ +closed = 1; +nodes = ( +(604,428,l), +(604,514,l), +(73,514,l), +(73,428,l) +); +} +); +width = 624; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(158,0,l), +(314,690,l), +(222,690,l), +(66,0,l) +); +}, +{ +closed = 1; +nodes = ( +(398,0,l), +(554,690,l), +(462,690,l), +(306,0,l) +); +}, +{ +closed = 1; +nodes = ( +(73,428,l), +(604,428,l), +(604,514,l), +(73,514,l) +); +}, +{ +closed = 1; +nodes = ( +(20,192,l), +(551,192,l), +(551,278,l), +(20,278,l) +); +} +); +width = 624; +} +); +unicode = 35; +}, +{ +color = 6; +glyphname = slash; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(143,-120,l), +(343,770,l), +(200,770,l), +(0,-120,l) +); +} +); +width = 343; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(92,-120,l), +(292,770,l), +(200,770,l), +(0,-120,l) +); +} +); +width = 292; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(92,-120,l), +(292,770,l), +(200,770,l), +(0,-120,l) +); +} +); +width = 292; +} +); +unicode = 47; +}, +{ +color = 6; +glyphname = backslash; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(343,-120,l), +(143,770,l), +(0,770,l), +(200,-120,l) +); +} +); +width = 343; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(292,-120,l), +(92,770,l), +(0,770,l), +(200,-120,l) +); +} +); +width = 292; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(92,770,l), +(0,770,l), +(200,-120,l), +(292,-120,l) +); +} +); +width = 292; +} +); +unicode = 92; +}, +{ +color = 10; +glyphname = periodcentered.loclCAT; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = periodcentered; +} +); +width = 220; +}, +{ +layerId = m001; +shapes = ( +{ +ref = periodcentered; +} +); +width = 250; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +width = 600; +} +); +}, +{ +color = 10; +glyphname = period.tf; +lastChange = "2024-03-21 11:23:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +pos = (175,0); +ref = period; +} +); +width = 600; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +pos = (190,0); +ref = period; +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +pos = (190,0); +ref = period; +} +); +width = 600; +} +); +}, +{ +color = 10; +glyphname = comma.tf; +lastChange = "2024-03-21 11:23:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(214,127,o), +(175,162,o), +(124,162,cs), +(74,162,o), +(36,126,o), +(36,73,cs), +(36,21,o), +(74,-14,o), +(124,-14,c), +(104,6,l), +(61,-160,l), +(142,-160,l), +(186,-51,ls), +(204,-6,o), +(214,30,o), +(214,67,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +pos = (177,0); +ref = comma; +} +); +width = 600; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +pos = (190,0); +ref = comma; +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +pos = (190,0); +ref = comma; +} +); +width = 600; +} +); +}, +{ +color = 10; +glyphname = colon.tf; +lastChange = "2024-03-21 11:23:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +pos = (175,0); +ref = colon; +} +); +width = 600; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +pos = (190,0); +ref = colon; +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +pos = (190,0); +ref = colon; +} +); +width = 600; +} +); +}, +{ +color = 10; +glyphname = semicolon.tf; +lastChange = "2024-03-21 11:23:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +pos = (175,0); +ref = semicolon; +} +); +width = 600; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(162,0,l), +(162,690,l), +(58,690,l), +(58,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +pos = (190,0); +ref = semicolon; +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(162,0,l), +(162,690,l), +(58,690,l), +(58,0,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +pos = (190,0); +ref = semicolon; +} +); +width = 600; +} +); +}, +{ +color = 10; +glyphname = periodcentered.loclCAT.case; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +pos = (0,50); +ref = periodcentered; +} +); +width = 220; +}, +{ +layerId = m001; +shapes = ( +{ +pos = (0,70); +ref = periodcentered; +} +); +width = 250; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +width = 600; +} +); +}, +{ +color = 6; +glyphname = hyphen; +kernLeft = L; +kernRight = a; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(320,239,l), +(320,368,l), +(46,368,l), +(46,239,l) +); +} +); +width = 366; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(315,261,l), +(315,346,l), +(60,346,l), +(60,261,l) +); +} +); +width = 375; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(60,261,l), +(315,261,l), +(315,346,l), +(60,346,l) +); +} +); +width = 375; +} +); +unicode = 45; +}, +{ +color = 6; +glyphname = endash; +kernLeft = L; +kernRight = a; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(440,239,l), +(440,368,l), +(46,368,l), +(46,239,l) +); +} +); +width = 486; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(435,261,l), +(435,346,l), +(60,346,l), +(60,261,l) +); +} +); +width = 495; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(60,261,l), +(435,261,l), +(435,346,l), +(60,346,l) +); +} +); +width = 495; +} +); +unicode = 8211; +}, +{ +color = 6; +glyphname = emdash; +kernLeft = L; +kernRight = a; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(794,239,l), +(794,368,l), +(21,368,l), +(21,239,l) +); +} +); +width = 815; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(785,261,l), +(785,346,l), +(30,346,l), +(30,261,l) +); +} +); +width = 815; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(30,261,l), +(785,261,l), +(785,346,l), +(30,346,l) +); +} +); +width = 815; +} +); +unicode = 8212; +}, +{ +color = 6; +glyphname = underscore; +kernLeft = K; +kernRight = Q; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(471,-130,l), +(471,0,l), +(0,0,l), +(0,-130,l) +); +} +); +width = 471; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(435,-85,l), +(435,0,l), +(0,0,l), +(0,-85,l) +); +} +); +width = 435; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(0,-85,l), +(435,-85,l), +(435,0,l), +(0,0,l) +); +} +); +width = 435; +} +); +unicode = 95; +}, +{ +color = 6; +glyphname = parenleft; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(376,-56,l), +(285,-9,o), +(200,106,o), +(200,325,c), +(200,543,o), +(285,659,o), +(376,706,c), +(332,802,l), +(163,746,o), +(56,586,o), +(56,325,c), +(56,64,o), +(163,-96,o), +(332,-152,c) +); +} +); +width = 351; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(160,530,l), +(60,530,l), +(60,0,l) +); +}, +{ +closed = 1; +nodes = ( +(400,0,l), +(500,0,l), +(500,332,l), +(500,460,o), +(425,540,o), +(318,540,c), +(209,540,o), +(127,451,o), +(127,309,c), +(160,309,l), +(160,406,o), +(213,457,o), +(280,457,c), +(347,457,o), +(400,406,o), +(400,309,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(344,-65,l), +(249,-8,o), +(169,111,o), +(169,325,c), +(169,540,o), +(249,658,o), +(344,715,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c) +); +} +); +width = 324; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(160,530,l), +(60,530,l), +(60,0,l) +); +}, +{ +closed = 1; +nodes = ( +(400,0,l), +(500,0,l), +(500,332,l), +(500,460,o), +(425,540,o), +(318,540,c), +(209,540,o), +(127,451,o), +(127,309,c), +(160,309,l), +(160,406,o), +(213,457,o), +(280,457,c), +(347,457,o), +(400,406,o), +(400,309,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(169,539.5,o), +(249,658.45,o), +(344,715,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c), +(344,-65,l), +(249,-8.45,o), +(169,110.5,o), +(169,325,c) +); +} +); +width = 324; +} +); +unicode = 40; +}, +{ +color = 6; +glyphname = parenright; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(188,-96,o), +(294,64,o), +(294,325,c), +(294,586,o), +(188,746,o), +(18,802,c), +(-24,706,l), +(66,659,o), +(150,543,o), +(150,325,c), +(150,106,o), +(66,-9,o), +(-24,-56,c), +(18,-152,l) +); +} +); +width = 351; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(160,530,l), +(60,530,l), +(60,0,l) +); +}, +{ +closed = 1; +nodes = ( +(400,0,l), +(500,0,l), +(500,332,l), +(500,460,o), +(425,540,o), +(318,540,c), +(209,540,o), +(127,451,o), +(127,309,c), +(160,309,l), +(160,406,o), +(213,457,o), +(280,457,c), +(347,457,o), +(400,406,o), +(400,309,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(162,-63,o), +(254,86,o), +(254,325,c), +(254,564,o), +(162,713,o), +(14,780,c), +(-20,715,l), +(75,658,o), +(155,540,o), +(155,325,c), +(155,111,o), +(75,-8,o), +(-20,-65,c), +(14,-130,l) +); +} +); +width = 324; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(160,530,l), +(60,530,l), +(60,0,l) +); +}, +{ +closed = 1; +nodes = ( +(400,0,l), +(500,0,l), +(500,332,l), +(500,460,o), +(425,540,o), +(318,540,c), +(209,540,o), +(127,451,o), +(127,309,c), +(160,309,l), +(160,406,o), +(213,457,o), +(280,457,c), +(347,457,o), +(400,406,o), +(400,309,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(155,110.5,o), +(75,-8.45,o), +(-20,-65,c), +(14,-130,l), +(162,-63,o), +(254,86,o), +(254,325,c), +(254,564,o), +(162,713,o), +(14,780,c), +(-20,715,l), +(75,658.45,o), +(155,539.5,o), +(155,325,c) +); +} +); +width = 324; +} +); +unicode = 41; +}, +{ +color = 6; +glyphname = braceleft; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,545,o), +(249,667,o), +(344,725,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c), +(344,-75,l), +(249,-17,o), +(169,105,o), +(169,325,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(354,-46,l), +(243,-32,o), +(195,4,o), +(195,51,c), +(195,120,o), +(266,156,o), +(266,234,c), +(266,284,o), +(217,325,o), +(135,329,c), +(135,321,l), +(217,325,o), +(266,366,o), +(266,416,c), +(266,494,o), +(195,530,o), +(195,599,c), +(195,646,o), +(243,682,o), +(354,696,c), +(340,802,l), +(143,788,o), +(61,713,o), +(61,615,c), +(61,516,o), +(140,477,o), +(140,421,c), +(140,396,o), +(124,378,o), +(92,378,c), +(50,378,l), +(50,272,l), +(92,272,l), +(124,272,o), +(140,254,o), +(140,229,c), +(140,173,o), +(61,134,o), +(61,35,c), +(61,-63,o), +(143,-138,o), +(340,-152,c) +); +} +); +width = 346; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,545,o), +(249,667,o), +(344,725,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c), +(344,-75,l), +(249,-17,o), +(169,105,o), +(169,325,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(343,-58,l), +(235,-50,o), +(185,-6,o), +(185,51,c), +(185,128,o), +(263,150,o), +(263,234,c), +(263,292,o), +(216,335,o), +(140,339,c), +(140,311,l), +(216,315,o), +(263,358,o), +(263,416,c), +(263,500,o), +(185,522,o), +(185,599,c), +(185,656,o), +(235,700,o), +(343,708,c), +(335,785,l), +(159,772,o), +(86,698,o), +(86,605,c), +(86,511,o), +(174,472,o), +(174,419,c), +(174,388,o), +(155,366,o), +(116,366,c), +(75,366,l), +(75,284,l), +(116,284,l), +(155,284,o), +(174,262,o), +(174,231,c), +(174,178,o), +(86,139,o), +(86,45,c), +(86,-48,o), +(159,-122,o), +(335,-135,c) +); +} +); +width = 338; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,545,o), +(249,667,o), +(344,725,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c), +(344,-75,l), +(249,-17,o), +(169,105,o), +(169,325,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(216,335,o), +(263,292,o), +(263,234,c), +(263,150,o), +(185,128,o), +(185,51,c), +(185,-6.368,o), +(235,-50.351,o), +(343,-58,c), +(335,-135,l), +(159,-121.629,o), +(86,-47.571,o), +(86,45,c), +(86,139,o), +(174,178,o), +(174,231,c), +(174,262,o), +(155,284,o), +(116,284,c), +(75,284,l), +(75,366,l), +(116,366,l), +(155,366,o), +(174,388,o), +(174,419,c), +(174,472,o), +(86,511,o), +(86,605,c), +(86,697.571,o), +(159,771.629,o), +(335,785,c), +(343,708,l), +(235,700.351,o), +(185,656.368,o), +(185,599,c), +(185,522,o), +(263,500,o), +(263,416,c), +(263,358,o), +(216,315,o), +(140,311,c), +(140,339,l) +); +} +); +width = 338; +} +); +unicode = 123; +}, +{ +color = 6; +glyphname = braceright; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,545,o), +(249,667,o), +(344,725,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c), +(344,-75,l), +(249,-17,o), +(169,105,o), +(169,325,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(203,-138,o), +(285,-63,o), +(285,35,c), +(285,134,o), +(206,173,o), +(206,229,c), +(206,254,o), +(222,272,o), +(254,272,c), +(296,272,l), +(296,378,l), +(254,378,l), +(222,378,o), +(206,396,o), +(206,421,c), +(206,477,o), +(285,516,o), +(285,615,c), +(285,713,o), +(203,788,o), +(6,802,c), +(-8,696,l), +(103,682,o), +(151,646,o), +(151,599,c), +(151,530,o), +(80,494,o), +(80,416,c), +(80,366,o), +(129,325,o), +(211,321,c), +(211,329,l), +(129,325,o), +(80,284,o), +(80,234,c), +(80,156,o), +(151,120,o), +(151,51,c), +(151,4,o), +(103,-32,o), +(-8,-46,c), +(6,-152,l) +); +} +); +width = 346; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,545,o), +(249,667,o), +(344,725,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c), +(344,-75,l), +(249,-17,o), +(169,105,o), +(169,325,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(179,-122,o), +(252,-48,o), +(252,45,c), +(252,139,o), +(164,178,o), +(164,231,c), +(164,262,o), +(183,284,o), +(222,284,c), +(263,284,l), +(263,366,l), +(222,366,l), +(183,366,o), +(164,388,o), +(164,419,c), +(164,472,o), +(252,511,o), +(252,605,c), +(252,698,o), +(179,772,o), +(3,785,c), +(-5,708,l), +(103,700,o), +(153,656,o), +(153,599,c), +(153,522,o), +(75,500,o), +(75,416,c), +(75,358,o), +(122,315,o), +(198,311,c), +(198,339,l), +(122,335,o), +(75,292,o), +(75,234,c), +(75,150,o), +(153,128,o), +(153,51,c), +(153,-6,o), +(103,-50,o), +(-5,-58,c), +(3,-135,l) +); +} +); +width = 338; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,545,o), +(249,667,o), +(344,725,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c), +(344,-75,l), +(249,-17,o), +(169,105,o), +(169,325,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(198,311,l), +(122,315,o), +(75,358,o), +(75,416,c), +(75,500,o), +(153,522,o), +(153,599,c), +(153,656.368,o), +(103,700.351,o), +(-5,708,c), +(3,785,l), +(179,771.629,o), +(252,697.571,o), +(252,605,c), +(252,511,o), +(164,472,o), +(164,419,c), +(164,388,o), +(183,366,o), +(222,366,c), +(263,366,l), +(263,284,l), +(222,284,l), +(183,284,o), +(164,262,o), +(164,231,c), +(164,178,o), +(252,139,o), +(252,45,c), +(252,-47.571,o), +(179,-121.629,o), +(3,-135,c), +(-5,-58,l), +(103,-50.351,o), +(153,-6.368,o), +(153,51,c), +(153,128,o), +(75,150,o), +(75,234,c), +(75,292,o), +(122,335,o), +(198,339,c) +); +} +); +width = 338; +} +); +unicode = 125; +}, +{ +color = 6; +glyphname = bracketleft; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,545,o), +(249,667,o), +(344,725,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c), +(344,-75,l), +(249,-17,o), +(169,105,o), +(169,325,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(209,-120,l), +(209,770,l), +(70,770,l), +(70,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(312,-120,l), +(312,10,l), +(118,10,l), +(118,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(312,640,l), +(312,770,l), +(118,770,l), +(118,640,l) +); +} +); +width = 322; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,545,o), +(249,667,o), +(344,725,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c), +(344,-75,l), +(249,-17,o), +(169,105,o), +(169,325,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(170,-120,l), +(170,770,l), +(80,770,l), +(80,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(316,-120,l), +(316,-40,l), +(110,-40,l), +(110,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(316,690,l), +(316,770,l), +(110,770,l), +(110,690,l) +); +} +); +width = 311; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,545,o), +(249,667,o), +(344,725,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c), +(344,-75,l), +(249,-17,o), +(169,105,o), +(169,325,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(170,-120,l), +(170,770,l), +(80,770,l), +(80,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(110,690,l), +(316,690,l), +(316,770,l), +(110,770,l) +); +}, +{ +closed = 1; +nodes = ( +(110,-120,l), +(316,-120,l), +(316,-40,l), +(110,-40,l) +); +} +); +width = 311; +} +); +unicode = 91; +}, +{ +color = 6; +glyphname = bracketright; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,545,o), +(249,667,o), +(344,725,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c), +(344,-75,l), +(249,-17,o), +(169,105,o), +(169,325,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(252,-120,l), +(252,770,l), +(113,770,l), +(113,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(204,-120,l), +(204,10,l), +(10,10,l), +(10,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(204,640,l), +(204,770,l), +(10,770,l), +(10,640,l) +); +} +); +width = 322; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,545,o), +(249,667,o), +(344,725,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c), +(344,-75,l), +(249,-17,o), +(169,105,o), +(169,325,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(231,-120,l), +(231,770,l), +(141,770,l), +(141,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(201,-120,l), +(201,-40,l), +(-5,-40,l), +(-5,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(201,690,l), +(201,770,l), +(-5,770,l), +(-5,690,l) +); +} +); +width = 311; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,545,o), +(249,667,o), +(344,725,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c), +(344,-75,l), +(249,-17,o), +(169,105,o), +(169,325,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(231,770,l), +(141,770,l), +(141,-120,l), +(231,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(-5,770,l), +(-5,690,l), +(201,690,l), +(201,770,l) +); +}, +{ +closed = 1; +nodes = ( +(-5,-40,l), +(-5,-120,l), +(201,-120,l), +(201,-40,l) +); +} +); +width = 311; +} +); +unicode = 93; +}, +{ +color = 6; +glyphname = quotesinglbase; +kernLeft = K; +kernRight = Q; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(214,127,o), +(175,162,o), +(124,162,cs), +(74,162,o), +(36,126,o), +(36,73,cs), +(36,21,o), +(74,-14,o), +(124,-14,c), +(104,6,l), +(61,-160,l), +(142,-160,l), +(186,-51,ls), +(204,-6,o), +(214,30,o), +(214,67,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(146,-159,l), +(208,148,l), +(48,148,l), +(48,-159,l) +); +} +); +width = 246; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(114,-160,l), +(158,113,l), +(44,113,l), +(44,-160,l) +); +} +); +width = 192; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(44,-160,l), +(114,-160,l), +(158,113,l), +(44,113,l) +); +} +); +width = 192; +} +); +unicode = 8218; +}, +{ +color = 6; +glyphname = quotedblbase; +kernLeft = K; +kernRight = Q; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(346,-159,l), +(408,148,l), +(248,148,l), +(248,-159,l) +); +}, +{ +closed = 1; +nodes = ( +(146,-159,l), +(208,148,l), +(48,148,l), +(48,-159,l) +); +} +); +width = 446; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(274,-160,l), +(318,113,l), +(204,113,l), +(204,-160,l) +); +}, +{ +closed = 1; +nodes = ( +(114,-160,l), +(158,113,l), +(44,113,l), +(44,-160,l) +); +} +); +width = 352; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(44,-160,l), +(114,-160,l), +(158,113,l), +(44,113,l) +); +}, +{ +closed = 1; +nodes = ( +(204,-160,l), +(274,-160,l), +(318,113,l), +(204,113,l) +); +} +); +width = 352; +} +); +unicode = 8222; +}, +{ +color = 6; +glyphname = quotedblleft; +kernLeft = I; +kernRight = N; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(398,383,l), +(398,690,l), +(300,690,l), +(238,383,l) +); +}, +{ +closed = 1; +nodes = ( +(198,383,l), +(198,690,l), +(100,690,l), +(38,383,l) +); +} +); +width = 446; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(308,417,l), +(308,690,l), +(238,690,l), +(194,417,l) +); +}, +{ +closed = 1; +nodes = ( +(148,417,l), +(148,690,l), +(78,690,l), +(34,417,l) +); +} +); +width = 352; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(308,690,l), +(238,690,l), +(194,417,l), +(308,417,l) +); +}, +{ +closed = 1; +nodes = ( +(148,690,l), +(78,690,l), +(34,417,l), +(148,417,l) +); +} +); +width = 352; +} +); +unicode = 8220; +}, +{ +color = 6; +glyphname = quotedblright; +kernLeft = I; +kernRight = N; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(346,383,l), +(408,690,l), +(248,690,l), +(248,383,l) +); +}, +{ +closed = 1; +nodes = ( +(146,383,l), +(208,690,l), +(48,690,l), +(48,383,l) +); +} +); +width = 446; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(274,417,l), +(318,690,l), +(204,690,l), +(204,417,l) +); +}, +{ +closed = 1; +nodes = ( +(114,417,l), +(158,690,l), +(44,690,l), +(44,417,l) +); +} +); +width = 352; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(44,417,l), +(114,417,l), +(158,690,l), +(44,690,l) +); +}, +{ +closed = 1; +nodes = ( +(204,417,l), +(274,417,l), +(318,690,l), +(204,690,l) +); +} +); +width = 352; +} +); +unicode = 8221; +}, +{ +color = 6; +glyphname = quoteleft; +kernLeft = I; +kernRight = N; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(198,383,l), +(198,690,l), +(100,690,l), +(38,383,l) +); +} +); +width = 246; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(148,417,l), +(148,690,l), +(78,690,l), +(34,417,l) +); +} +); +width = 192; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(148,690,l), +(78,690,l), +(34,417,l), +(148,417,l) +); +} +); +width = 192; +} +); +unicode = 8216; +}, +{ +color = 6; +glyphname = quoteright; +kernLeft = I; +kernRight = N; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(146,383,l), +(208,690,l), +(48,690,l), +(48,383,l) +); +} +); +width = 246; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(114,417,l), +(158,690,l), +(44,690,l), +(44,417,l) +); +} +); +width = 192; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(44,417,l), +(114,417,l), +(158,690,l), +(44,690,l) +); +} +); +width = 192; +} +); +unicode = 8217; +}, +{ +color = 6; +glyphname = guillemetleft; +kernLeft = F; +kernRight = K; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(351,76,l), +(507,76,l), +(372,290,l), +(507,504,l), +(351,504,l), +(238,327,l), +(238,253,l) +); +}, +{ +closed = 1; +nodes = ( +(285,76,l), +(149,290,l), +(285,504,l), +(128,504,l), +(16,327,l), +(16,253,l), +(128,76,l) +); +} +); +width = 508; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(340,80,l), +(447,80,l), +(304,290,l), +(447,500,l), +(340,500,l), +(220,323,l), +(220,257,l) +); +}, +{ +closed = 1; +nodes = ( +(247,80,l), +(104,290,l), +(247,500,l), +(140,500,l), +(20,323,l), +(20,257,l), +(140,80,l) +); +} +); +width = 452; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(20,257,l), +(104,290,l), +(247,500,l), +(140,500,l), +(20,323,l) +); +}, +{ +closed = 1; +nodes = ( +(247,80,l), +(104,290,l), +(20,323,l), +(20,257,l), +(140,80,l) +); +}, +{ +closed = 1; +nodes = ( +(220,257,l), +(304,290,l), +(447,500,l), +(340,500,l), +(220,323,l) +); +}, +{ +closed = 1; +nodes = ( +(447,80,l), +(304,290,l), +(220,323,l), +(220,257,l), +(340,80,l) +); +} +); +width = 452; +} +); +unicode = 171; +}, +{ +color = 6; +glyphname = guillemetright; +kernLeft = E; +kernRight = J; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(380,76,l), +(492,253,l), +(492,327,l), +(380,504,l), +(223,504,l), +(359,290,l), +(223,76,l) +); +}, +{ +closed = 1; +nodes = ( +(157,76,l), +(270,253,l), +(270,327,l), +(157,504,l), +(0,504,l), +(136,290,l), +(0,76,l) +); +} +); +width = 508; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(312,80,l), +(432,257,l), +(432,323,l), +(312,500,l), +(205,500,l), +(348,290,l), +(205,80,l) +); +}, +{ +closed = 1; +nodes = ( +(112,80,l), +(232,257,l), +(232,323,l), +(112,500,l), +(5,500,l), +(148,290,l), +(5,80,l) +); +} +); +width = 452; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(432,323,l), +(348,290,l), +(205,80,l), +(312,80,l), +(432,257,l) +); +}, +{ +closed = 1; +nodes = ( +(205,500,l), +(348,290,l), +(432,257,l), +(432,323,l), +(312,500,l) +); +}, +{ +closed = 1; +nodes = ( +(232,323,l), +(148,290,l), +(5,80,l), +(112,80,l), +(232,257,l) +); +}, +{ +closed = 1; +nodes = ( +(5,500,l), +(148,290,l), +(232,257,l), +(232,323,l), +(112,500,l) +); +} +); +width = 452; +} +); +unicode = 187; +}, +{ +color = 6; +glyphname = guilsinglleft; +kernLeft = F; +kernRight = K; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(285,76,l), +(149,290,l), +(285,504,l), +(128,504,l), +(16,327,l), +(16,253,l), +(128,76,l) +); +} +); +width = 285; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(247,80,l), +(104,290,l), +(247,500,l), +(140,500,l), +(20,323,l), +(20,257,l), +(140,80,l) +); +} +); +width = 252; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(20,257,l), +(104,290,l), +(247,500,l), +(140,500,l), +(20,323,l) +); +}, +{ +closed = 1; +nodes = ( +(247,80,l), +(104,290,l), +(20,323,l), +(20,257,l), +(140,80,l) +); +} +); +width = 252; +} +); +unicode = 8249; +}, +{ +color = 6; +glyphname = guilsinglright; +kernLeft = E; +kernRight = J; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(157,76,l), +(270,253,l), +(270,327,l), +(157,504,l), +(0,504,l), +(136,290,l), +(0,76,l) +); +} +); +width = 285; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(112,80,l), +(232,257,l), +(232,323,l), +(112,500,l), +(5,500,l), +(148,290,l), +(5,80,l) +); +} +); +width = 252; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(112,500,l), +(5,500,l), +(148,290,l), +(232,257,l), +(232,323,l) +); +}, +{ +closed = 1; +nodes = ( +(232,257,l), +(232,323,l), +(148,290,l), +(5,80,l), +(112,80,l) +); +} +); +width = 252; +} +); +unicode = 8250; +}, +{ +color = 6; +glyphname = quotedbl; +kernLeft = I; +kernRight = N; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(190,670,o), +(157,704,o), +(113,704,cs), +(68,704,o), +(36,670,o), +(36,622,c), +(36,597,o), +(39,579,o), +(44,554,cs), +(75,383,l), +(150,383,l), +(182,554,ls), +(187,579,o), +(190,597,o), +(190,622,c) +); +}, +{ +closed = 1; +nodes = ( +(374,670,o), +(341,704,o), +(296,704,cs), +(251,704,o), +(219,670,o), +(219,622,c), +(219,597,o), +(222,579,o), +(227,554,cs), +(258,383,l), +(334,383,l), +(365,554,ls), +(370,579,o), +(374,597,o), +(374,622,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(354,383,l), +(389,690,l), +(225,690,l), +(260,383,l) +); +}, +{ +closed = 1; +nodes = ( +(160,383,l), +(195,690,l), +(31,690,l), +(66,383,l) +); +} +); +width = 420; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(296,417,l), +(318,690,l), +(204,690,l), +(226,417,l) +); +}, +{ +closed = 1; +nodes = ( +(136,417,l), +(158,690,l), +(44,690,l), +(66,417,l) +); +} +); +width = 362; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(66,417,l), +(136,417,l), +(158,690,l), +(44,690,l) +); +}, +{ +closed = 1; +nodes = ( +(226,417,l), +(296,417,l), +(318,690,l), +(204,690,l) +); +} +); +width = 362; +} +); +unicode = 34; +}, +{ +color = 6; +glyphname = quotesingle; +kernLeft = I; +kernRight = N; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(160,383,l), +(195,690,l), +(31,690,l), +(66,383,l) +); +} +); +width = 226; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(136,417,l), +(158,690,l), +(44,690,l), +(66,417,l) +); +} +); +width = 202; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(66,417,l), +(136,417,l), +(158,690,l), +(44,690,l) +); +} +); +width = 202; +} +); +unicode = 39; +}, +{ +color = 6; +glyphname = florin; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(220,582,o), +(245,603,o), +(291,603,c), +(317,603,o), +(340,598,o), +(364,592,c), +(364,715,l), +(332,724,o), +(301,730,o), +(260,730,c), +(143,730,o), +(71,665,o), +(71,536,c), +(71,0,l), +(220,0,l), +(220,541,l) +); +}, +{ +closed = 1; +nodes = ( +(358,407,l), +(358,530,l), +(5,530,l), +(5,407,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(112,-189,o), +(194,-143,o), +(221,-14,cs), +(339,541,ls), +(348,582,o), +(374,603,o), +(415,603,c), +(443,603,o), +(467,597,o), +(488,589,c), +(514,712,l), +(485,723,o), +(445,729,o), +(405,729,c), +(302,729,o), +(220,683,o), +(193,554,cs), +(75,-1,ls), +(66,-42,o), +(40,-63,o), +(-1,-63,c), +(-29,-63,o), +(-53,-57,o), +(-74,-49,c), +(-100,-172,l), +(-71,-183,o), +(-31,-189,o), +(9,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(444,407,l), +(470,530,l), +(122,530,l), +(96,407,l) +); +} +); +width = 504; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(100,-185,o), +(165,-138,o), +(190,-21,c), +(313,557,ls), +(324,610,o), +(355,636,o), +(403,636,c), +(426,636,o), +(446,630,o), +(466,621,c), +(484,708,l), +(458,718,o), +(430,725,o), +(398,725,c), +(304,725,o), +(239,678,o), +(214,561,cs), +(91,-17,l), +(80,-70,o), +(49,-96,o), +(1,-96,c), +(-22,-96,o), +(-42,-90,o), +(-62,-81,c), +(-80,-168,l), +(-54,-178,o), +(-26,-185,o), +(6,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(423,443,l), +(442,530,l), +(133,530,l), +(114,443,l) +); +} +); +width = 484; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(423,443,l), +(442,530,l), +(133,530,l), +(114,443,l) +); +}, +{ +closed = 1; +nodes = ( +(313,557,ls), +(324,610,o), +(355,636,o), +(403,636,c), +(426,636,o), +(446,630,o), +(466,621,c), +(484,708,l), +(458,718,o), +(430,725,o), +(398,725,c), +(304,725,o), +(239,678,o), +(214,561,cs), +(91,-17,l), +(80,-70,o), +(49,-96,o), +(1,-96,c), +(-22,-96,o), +(-42,-90,o), +(-62,-81,c), +(-80,-168,l), +(-54,-178,o), +(-26,-185,o), +(6,-185,c), +(100,-185,o), +(165,-138,o), +(190,-21,c) +); +} +); +width = 484; +} +); +}, +{ +color = 6; +glyphname = at; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(509.185,412,o), +(554,367.975,o), +(554,265,c), +(554,162.025,o), +(509.185,118,o), +(444,118,c), +(378.815,118,o), +(334,162.025,o), +(334,265,c), +(334,367.975,o), +(378.815,412,o), +(444,412,c) +); +}, +{ +closed = 1; +nodes = ( +(577,309,l), +(577,430.545,o), +(512.946,500,o), +(416,500,c), +(307.573,500,o), +(230,411.982,o), +(230,265,c), +(230,118.018,o), +(307.573,30,o), +(416,30,c), +(512.946,30,o), +(577,99.455,o), +(577,221,c) +); +}, +{ +closed = 1; +nodes = ( +(764,124.825,o), +(731,70,o), +(695,70,c), +(667,70,o), +(649,89,o), +(649,157,c), +(649,490,l), +(549,490,l), +(549,367,l), +(564,265,l), +(549,162,l), +(551,128,ls), +(555,54,o), +(603,-10,o), +(687,-10,c), +(789,-10,o), +(854,83.768,o), +(854,285,c), +(854,534,o), +(697,700,o), +(456,700,c), +(219,700,o), +(40,526,o), +(40,265,cs), +(40,19,o), +(196.796,-149,o), +(413,-149,c), +(487,-149,o), +(556,-129,o), +(611,-95,c), +(572,-26,l), +(527,-54,o), +(480,-69,o), +(413,-69,c), +(246.87,-69,o), +(130,63,o), +(130,265,cs), +(130,482,o), +(269,620,o), +(456,620,c), +(647,620,o), +(764,489.829,o), +(764,285,c) +); +}, +{ +closed = 1; +nodes = ( +(514,381,o), +(555,341,o), +(555,265,c), +(555,190,o), +(514,150,o), +(450,150,c), +(386,150,o), +(345,190,o), +(345,265,c), +(345,341,o), +(386,381,o), +(450,381,c) +); +}, +{ +closed = 1; +nodes = ( +(571,305,l), +(571,439,o), +(501,515,o), +(394,515,c), +(271,515,o), +(192,421,o), +(192,265,c), +(192,110,o), +(271,15,o), +(394,15,c), +(501,15,o), +(571,92,o), +(571,226,c) +); +}, +{ +closed = 1; +nodes = ( +(545,-37,o), +(485,-83,o), +(397,-83,c), +(346,-83,o), +(300,-67,o), +(255,-41,c), +(199,-164,l), +(254,-198,o), +(318,-219,o), +(409,-219,c), +(579,-219,o), +(694,-124,o), +(694,58,c), +(694,501,l), +(545,501,l), +(545,364,l), +(564,265,l), +(545,148,l), +(545,51,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(487,-153,o), +(556,-133,o), +(611,-99,c), +(572,-25,l), +(527,-53,o), +(480,-68,o), +(413,-68,c), +(250,-68,o), +(135,66,o), +(135,265,cs), +(135,479,o), +(272,619,o), +(456,619,c), +(644,619,o), +(759,487,o), +(759,285,c), +(759,136,o), +(732,91,o), +(706,91,c), +(686,91,o), +(674,101,o), +(674,157,c), +(674,505,l), +(529,505,l), +(529,367,l), +(544,265,l), +(529,162,l), +(531,128,ls), +(536,54,o), +(579,-10,o), +(675,-10,c), +(777,-10,o), +(854,84,o), +(854,285,c), +(854,534,o), +(697,704,o), +(456,704,c), +(219,704,o), +(40,526,o), +(40,265,cs), +(40,19,o), +(197,-153,o), +(413,-153,c) +); +}, +{ +closed = 1; +nodes = ( +(497,15,o), +(557,89,o), +(557,221,c), +(557,309,l), +(557,441,o), +(497,515,o), +(406,515,c), +(289,515,o), +(205,421,o), +(205,265,c), +(205,109,o), +(289,15,o), +(406,15,c) +); +}, +{ +closed = 1; +nodes = ( +(391,143,o), +(354,180,o), +(354,265,c), +(354,350,o), +(391,387,o), +(444,387,c), +(497,387,o), +(534,350,o), +(534,265,c), +(534,180,o), +(497,143,o), +(444,143,c) +); +} +); +width = 894; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(160,530,l), +(60,530,l), +(60,0,l) +); +}, +{ +closed = 1; +nodes = ( +(523,432,o), +(435,540,o), +(314,540,c), +(206,540,o), +(127,451,o), +(127,309,c), +(160,309,l), +(160,409.277,o), +(213,462,o), +(280,462,c), +(368,462,o), +(419,403,o), +(419,265,c), +(419,127,o), +(368,68,o), +(280,68,c), +(213,68,o), +(160,121,o), +(160,221,c), +(127,221,l), +(127,79,o), +(206,-10,o), +(314,-10,c), +(435,-10,o), +(523,98,o), +(523,265,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(487,-149,o), +(556,-129,o), +(611,-95,c), +(572,-26,l), +(527,-54,o), +(480,-69,o), +(413,-69,c), +(247,-69,o), +(130,63,o), +(130,265,cs), +(130,482,o), +(269,620,o), +(456,620,c), +(647,620,o), +(764,490,o), +(764,285,c), +(764,125,o), +(731,70,o), +(695,70,c), +(667,70,o), +(649,89,o), +(649,157,c), +(649,490,l), +(549,490,l), +(549,367,l), +(564,265,l), +(549,162,l), +(551,128,ls), +(555,54,o), +(603,-10,o), +(687,-10,c), +(789,-10,o), +(854,84,o), +(854,285,c), +(854,534,o), +(697,700,o), +(456,700,c), +(219,700,o), +(40,526,o), +(40,265,cs), +(40,19,o), +(197,-149,o), +(413,-149,c) +); +}, +{ +closed = 1; +nodes = ( +(513,30,o), +(577,99,o), +(577,221,c), +(577,309,l), +(577,431,o), +(513,500,o), +(416,500,c), +(308,500,o), +(230,412,o), +(230,265,c), +(230,118,o), +(308,30,o), +(416,30,c) +); +}, +{ +closed = 1; +nodes = ( +(379,118,o), +(334,162,o), +(334,265,c), +(334,368,o), +(379,412,o), +(444,412,c), +(509,412,o), +(554,368,o), +(554,265,c), +(554,162,o), +(509,118,o), +(444,118,c) +); +} +); +width = 894; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(160,530,l), +(60,530,l), +(60,0,l) +); +}, +{ +closed = 1; +nodes = ( +(523,432,o), +(435,540,o), +(314,540,c), +(206,540,o), +(127,451,o), +(127,309,c), +(160,309,l), +(160,409.277,o), +(213,462,o), +(280,462,c), +(368,462,o), +(419,403,o), +(419,265,c), +(419,127,o), +(368,68,o), +(280,68,c), +(213,68,o), +(160,121,o), +(160,221,c), +(127,221,l), +(127,79,o), +(206,-10,o), +(314,-10,c), +(435,-10,o), +(523,98,o), +(523,265,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(509.185,412,o), +(554,367.975,o), +(554,265,c), +(554,162.025,o), +(509.185,118,o), +(444,118,c), +(378.815,118,o), +(334,162.025,o), +(334,265,c), +(334,367.975,o), +(378.815,412,o), +(444,412,c) +); +}, +{ +closed = 1; +nodes = ( +(577,309,l), +(577,430.545,o), +(512.946,500,o), +(416,500,c), +(307.573,500,o), +(230,411.982,o), +(230,265,c), +(230,118.018,o), +(307.573,30,o), +(416,30,c), +(512.946,30,o), +(577,99.455,o), +(577,221,c) +); +}, +{ +closed = 1; +nodes = ( +(764,124.825,o), +(731,70,o), +(695,70,c), +(667,70,o), +(649,89,o), +(649,157,c), +(649,490,l), +(549,490,l), +(549,367,l), +(564,265,l), +(549,162,l), +(551,128,ls), +(555,54,o), +(603,-10,o), +(687,-10,c), +(789,-10,o), +(854,83.768,o), +(854,285,c), +(854,534,o), +(697,700,o), +(456,700,c), +(219,700,o), +(40,526,o), +(40,265,cs), +(40,19,o), +(196.796,-149,o), +(413,-149,c), +(487,-149,o), +(556,-129,o), +(611,-95,c), +(572,-26,l), +(527,-54,o), +(480,-69,o), +(413,-69,c), +(246.87,-69,o), +(130,63,o), +(130,265,cs), +(130,482,o), +(269,620,o), +(456,620,c), +(647,620,o), +(764,489.829,o), +(764,285,c) +); +} +); +width = 894; +} +); +unicode = 64; +}, +{ +color = 6; +glyphname = ampersand; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(435,-14,o), +(586,112,o), +(634,323,c), +(496,362,l), +(467,208,o), +(381,116,o), +(259,116,c), +(193,116,o), +(166,148,o), +(166,192,c), +(166,342,o), +(482,305,o), +(481,525,c), +(481,623,o), +(406,704,o), +(280,704,c), +(148,704,o), +(70,615,o), +(70,516,c), +(70,450,o), +(97,397,o), +(168,319,cs), +(460,0,l), +(650,0,l), +(264,413,ls), +(233,446,o), +(215,477,o), +(215,514,c), +(215,549,o), +(240,579,o), +(279,579,c), +(317,579,o), +(342,550,o), +(342,515,c), +(343,367,o), +(17,411,o), +(17,167,c), +(17,72,o), +(86,-14,o), +(249,-14,c) +); +} +); +width = 647; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(429,74,o), +(333,-10,o), +(170,-10,c), +(30,-10,o), +(-60,55,o), +(-96,163,c), +(7,196,l), +(32,119.64,o), +(87,83,o), +(178,83,c), +(267,83,o), +(323,119,o), +(323,176,c), +(323,362,o), +(-74,252,o), +(-74,509,c), +(-74,615,o), +(12,700,o), +(169,700,c), +(298,700,o), +(387,637,o), +(422,532,c), +(322,499,l), +(296,572.333,o), +(242,607,o), +(160,607,c), +(70,607,o), +(31,568,o), +(31,520,c), +(31,352,o), +(429,456,o), +(429,186,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(405,-10,o), +(538,115,o), +(570,323,c), +(476,339,l), +(457,180,o), +(367,80,o), +(243,80,c), +(164,80,o), +(125,118,o), +(125,171,c), +(125,347,o), +(444,337,o), +(444,539,c), +(444,624,o), +(370,700,o), +(264,700,c), +(147,700,o), +(75,616,o), +(75,525,c), +(75,463,o), +(108,411,o), +(175,331,cs), +(453,0,l), +(581,0,l), +(228,417,ls), +(190,461,o), +(175,488,o), +(175,530,c), +(175,578,o), +(210,613,o), +(262,613,c), +(310,613,o), +(345,578,o), +(345,534,c), +(345,378,o), +(22,384,o), +(22,159,c), +(22,68,o), +(97,-10,o), +(238,-10,c) +); +} +); +width = 591; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(429,74,o), +(333,-10,o), +(170,-10,c), +(30,-10,o), +(-60,55,o), +(-96,163,c), +(7,196,l), +(32,119.64,o), +(87,83,o), +(178,83,c), +(267,83,o), +(323,119,o), +(323,176,c), +(323,362,o), +(-74,252,o), +(-74,509,c), +(-74,615,o), +(12,700,o), +(169,700,c), +(298,700,o), +(387,637,o), +(422,532,c), +(322,499,l), +(296,572.333,o), +(242,607,o), +(160,607,c), +(70,607,o), +(31,568,o), +(31,520,c), +(31,352,o), +(429,456,o), +(429,186,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(175,331,ls), +(108,411,o), +(75,463,o), +(75,525,c), +(75,616,o), +(147,700,o), +(264,700,c), +(370,700,o), +(444,624,o), +(444,539,c), +(444,337,o), +(125,347,o), +(125,171,c), +(125,118,o), +(164,80,o), +(243,80,c), +(367,80,o), +(457,180,o), +(476,339,c), +(570,323,l), +(538,115,o), +(405,-10,o), +(238,-10,c), +(97,-10,o), +(22,68,o), +(22,159,c), +(22,384,o), +(345,378,o), +(345,534,c), +(345,578,o), +(310,613,o), +(262,613,c), +(210,613,o), +(175,578,o), +(175,530,c), +(175,488,o), +(190,461,o), +(228,417,cs), +(581,0,l), +(453,0,l) +); +} +); +width = 591; +} +); +unicode = 38; +}, +{ +color = 6; +glyphname = paragraph; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(349,230,l), +(349,690,l), +(269,690,l), +(130,690,o), +(35,600,o), +(35,460,cs), +(35,320,o), +(130,230,o), +(269,230,c) +); +}, +{ +closed = 1; +nodes = ( +(425,-120,l), +(425,690,l), +(286,690,l), +(286,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(625,-120,l), +(625,690,l), +(486,690,l), +(486,-120,l) +); +} +); +width = 697; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(329,240,l), +(329,690,l), +(269,690,l), +(133,690,o), +(40,602,o), +(40,465,cs), +(40,328,o), +(133,240,o), +(269,240,c) +); +}, +{ +closed = 1; +nodes = ( +(376,-120,l), +(376,690,l), +(286,690,l), +(286,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(556,-120,l), +(556,690,l), +(466,690,l), +(466,-120,l) +); +} +); +width = 636; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(376,-120,l), +(376,690,l), +(286,690,l), +(286,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(556,-120,l), +(556,690,l), +(466,690,l), +(466,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(133,690,o), +(40,602,o), +(40,465,cs), +(40,328,o), +(133,240,o), +(269,240,c), +(329,240,l), +(329,690,l), +(269,690,l) +); +} +); +width = 636; +} +); +unicode = 182; +}, +{ +color = 6; +glyphname = section; +lastChange = "2024-03-22 10:57:57 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(528,533,o), +(223,476,o), +(223,553,c), +(223,572,o), +(241,589,o), +(289,589,c), +(342,589,o), +(369,568,o), +(384,522,c), +(519,564,l), +(489,654,o), +(415,704,o), +(297,704,c), +(160,704,o), +(81,635,o), +(81,535,c), +(81,331,o), +(377,392,o), +(377,302,c), +(377,277,o), +(358,262,o), +(306,262,c), +(250,262,o), +(216,287,o), +(201,343,c), +(63,300,l), +(83,196,o), +(164,146,o), +(296,146,c), +(443,146,o), +(528,214,o), +(528,318,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(455,-190,o), +(538,-109,o), +(538,-15,cs), +(538,50,o), +(502,99,o), +(445,124,c), +(526,144,o), +(580,198,o), +(580,282,cs), +(580,510,o), +(222,443,o), +(222,545,cs), +(222,570,o), +(247,589,o), +(290,589,cs), +(344,589,o), +(381,558,o), +(398,499,c), +(538,547,l), +(506,643,o), +(422,704,o), +(303,704,cs), +(160,704,o), +(77,624,o), +(77,530,cs), +(77,465,o), +(113,416,o), +(170,391,c), +(89,371,o), +(35,317,o), +(35,233,cs), +(35,5,o), +(393,72,o), +(393,-30,cs), +(393,-55,o), +(368,-74,o), +(325,-74,cs), +(271,-74,o), +(234,-43,o), +(217,16,c), +(77,-32,l), +(109,-128,o), +(193,-190,o), +(312,-190,cs) +); +}, +{ +closed = 1; +nodes = ( +(283,173,o), +(162,206,o), +(162,280,cs), +(162,315,o), +(192,342,o), +(251,342,cs), +(321,342,o), +(442,309,o), +(442,235,cs), +(442,200,o), +(412,173,o), +(353,173,cs) +); +} +); +width = 615; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(423,-185,o), +(503,-107,o), +(503,-19,cs), +(503,57,o), +(462,97,o), +(408,122,c), +(499,133,o), +(556,192,o), +(556,265,cs), +(556,483,o), +(198,397,o), +(198,535,cs), +(198,575,o), +(233,607,o), +(290,607,cs), +(349,607,o), +(389,577,o), +(409,514,c), +(509,547,l), +(480,643,o), +(405,700,o), +(299,700,cs), +(173,700,o), +(93,622,o), +(93,534,cs), +(93,458,o), +(134,418,o), +(188,393,c), +(97,382,o), +(40,323,o), +(40,250,cs), +(40,32,o), +(398,118,o), +(398,-20,cs), +(398,-60,o), +(363,-92,o), +(306,-92,cs), +(247,-92,o), +(207,-63,o), +(187,0,c), +(87,-32,l), +(116,-128,o), +(191,-185,o), +(297,-185,cs) +); +}, +{ +closed = 1; +nodes = ( +(265,160,o), +(138,196,o), +(138,271,cs), +(138,320,o), +(179,355,o), +(241,355,cs), +(331,355,o), +(458,319,o), +(458,244,cs), +(458,195,o), +(417,160,o), +(355,160,cs) +); +} +); +width = 596; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(493,126,o), +(556,188,o), +(556,265,c), +(556,483,o), +(198,397,o), +(198,535,c), +(198,575,o), +(233,607,o), +(290,607,c), +(349,607,o), +(389,577,o), +(409,514,c), +(509,547,l), +(480,643,o), +(405,700,o), +(299,700,c), +(173,700,o), +(93,622,o), +(93,534,c), +(93,451,o), +(142,411,o), +(204,386,c), +(204,394,l), +(103,389,o), +(40,327,o), +(40,250,c), +(40,32,o), +(398,118,o), +(398,-20,c), +(398,-60,o), +(363,-92,o), +(306,-92,c), +(247,-92,o), +(207,-62,o), +(187,1,c), +(87,-32,l), +(116,-128,o), +(191,-185,o), +(297,-185,c), +(423,-185,o), +(503,-107,o), +(503,-19,c), +(503,64,o), +(454,104,o), +(392,129,c), +(392,121,l) +); +}, +{ +closed = 1; +nodes = ( +(138,320,o), +(179,355,o), +(241,355,c), +(331,355,o), +(458,319,o), +(458,244,c), +(458,195,o), +(417,160,o), +(355,160,c), +(265,160,o), +(138,196,o), +(138,271,c) +); +} +); +width = 596; +} +); +unicode = 167; +}, +{ +color = 6; +glyphname = copyright; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(509.185,412,o), +(554,367.975,o), +(554,265,c), +(554,162.025,o), +(509.185,118,o), +(444,118,c), +(378.815,118,o), +(334,162.025,o), +(334,265,c), +(334,367.975,o), +(378.815,412,o), +(444,412,c) +); +}, +{ +closed = 1; +nodes = ( +(577,309,l), +(577,430.545,o), +(512.946,500,o), +(416,500,c), +(307.573,500,o), +(230,411.982,o), +(230,265,c), +(230,118.018,o), +(307.573,30,o), +(416,30,c), +(512.946,30,o), +(577,99.455,o), +(577,221,c) +); +}, +{ +closed = 1; +nodes = ( +(764,124.825,o), +(731,70,o), +(695,70,c), +(667,70,o), +(649,89,o), +(649,157,c), +(649,490,l), +(549,490,l), +(549,367,l), +(564,265,l), +(549,162,l), +(551,128,ls), +(555,54,o), +(603,-10,o), +(687,-10,c), +(789,-10,o), +(854,83.768,o), +(854,285,c), +(854,534,o), +(697,700,o), +(456,700,c), +(219,700,o), +(40,526,o), +(40,265,cs), +(40,19,o), +(196.796,-149,o), +(413,-149,c), +(487,-149,o), +(556,-129,o), +(611,-95,c), +(572,-26,l), +(527,-54,o), +(480,-69,o), +(413,-69,c), +(246.87,-69,o), +(130,63,o), +(130,265,cs), +(130,482,o), +(269,620,o), +(456,620,c), +(647,620,o), +(764,489.829,o), +(764,285,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(602,-10,o), +(752,150,o), +(752,345,cs), +(752,540,o), +(602,700,o), +(401,700,cs), +(200,700,o), +(50,540,o), +(50,345,cs), +(50,150,o), +(200,-10,o), +(401,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(255,80,o), +(145,199,o), +(145,345,cs), +(145,491,o), +(255,610,o), +(401,610,cs), +(547,610,o), +(657,491,o), +(657,345,cs), +(657,199,o), +(547,80,o), +(401,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(484,137,o), +(545,177,o), +(571,254,c), +(475,286,l), +(463,243,o), +(440,226,o), +(403,226,c), +(355,226,o), +(322,261,o), +(322,340,cs), +(322,419,o), +(355,454,o), +(403,454,c), +(440,454,o), +(464,437,o), +(477,395,c), +(571,428,l), +(545,503,o), +(484,543,o), +(407,543,cs), +(296,543,o), +(218,463,o), +(218,340,cs), +(218,216,o), +(296,137,o), +(407,137,c) +); +} +); +width = 802; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(509.185,412,o), +(554,367.975,o), +(554,265,c), +(554,162.025,o), +(509.185,118,o), +(444,118,c), +(378.815,118,o), +(334,162.025,o), +(334,265,c), +(334,367.975,o), +(378.815,412,o), +(444,412,c) +); +}, +{ +closed = 1; +nodes = ( +(577,309,l), +(577,430.545,o), +(512.946,500,o), +(416,500,c), +(307.573,500,o), +(230,411.982,o), +(230,265,c), +(230,118.018,o), +(307.573,30,o), +(416,30,c), +(512.946,30,o), +(577,99.455,o), +(577,221,c) +); +}, +{ +closed = 1; +nodes = ( +(764,124.825,o), +(731,70,o), +(695,70,c), +(667,70,o), +(649,89,o), +(649,157,c), +(649,490,l), +(549,490,l), +(549,367,l), +(564,265,l), +(549,162,l), +(551,128,ls), +(555,54,o), +(603,-10,o), +(687,-10,c), +(789,-10,o), +(854,83.768,o), +(854,285,c), +(854,534,o), +(697,700,o), +(456,700,c), +(219,700,o), +(40,526,o), +(40,265,cs), +(40,19,o), +(196.796,-149,o), +(413,-149,c), +(487,-149,o), +(556,-129,o), +(611,-95,c), +(572,-26,l), +(527,-54,o), +(480,-69,o), +(413,-69,c), +(246.87,-69,o), +(130,63,o), +(130,265,cs), +(130,482,o), +(269,620,o), +(456,620,c), +(647,620,o), +(764,489.829,o), +(764,285,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(602,-10,o), +(752,150,o), +(752,345,cs), +(752,540,o), +(602,700,o), +(401,700,cs), +(200,700,o), +(50,540,o), +(50,345,cs), +(50,150,o), +(200,-10,o), +(401,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,65,o), +(130,191,o), +(130,345,cs), +(130,499,o), +(246,625,o), +(401,625,cs), +(556,625,o), +(672,499,o), +(672,345,cs), +(672,191,o), +(556,65,o), +(401,65,cs) +); +}, +{ +closed = 1; +nodes = ( +(482,137,o), +(541,177,o), +(564,254,c), +(483,276,l), +(470,230,o), +(443,211,o), +(401,211,c), +(347,211,o), +(310,251,o), +(310,340,cs), +(310,429,o), +(347,469,o), +(401,469,c), +(443,469,o), +(470,450,o), +(485,405,c), +(564,428,l), +(541,503,o), +(482,543,o), +(405,543,cs), +(297,543,o), +(223,463,o), +(223,340,cs), +(223,216,o), +(297,137,o), +(405,137,c) +); +} +); +width = 802; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(509.185,412,o), +(554,367.975,o), +(554,265,c), +(554,162.025,o), +(509.185,118,o), +(444,118,c), +(378.815,118,o), +(334,162.025,o), +(334,265,c), +(334,367.975,o), +(378.815,412,o), +(444,412,c) +); +}, +{ +closed = 1; +nodes = ( +(577,309,l), +(577,430.545,o), +(512.946,500,o), +(416,500,c), +(307.573,500,o), +(230,411.982,o), +(230,265,c), +(230,118.018,o), +(307.573,30,o), +(416,30,c), +(512.946,30,o), +(577,99.455,o), +(577,221,c) +); +}, +{ +closed = 1; +nodes = ( +(764,124.825,o), +(731,70,o), +(695,70,c), +(667,70,o), +(649,89,o), +(649,157,c), +(649,490,l), +(549,490,l), +(549,367,l), +(564,265,l), +(549,162,l), +(551,128,ls), +(555,54,o), +(603,-10,o), +(687,-10,c), +(789,-10,o), +(854,83.768,o), +(854,285,c), +(854,534,o), +(697,700,o), +(456,700,c), +(219,700,o), +(40,526,o), +(40,265,cs), +(40,19,o), +(196.796,-149,o), +(413,-149,c), +(487,-149,o), +(556,-129,o), +(611,-95,c), +(572,-26,l), +(527,-54,o), +(480,-69,o), +(413,-69,c), +(246.87,-69,o), +(130,63,o), +(130,265,cs), +(130,482,o), +(269,620,o), +(456,620,c), +(647,620,o), +(764,489.829,o), +(764,285,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(602,-10,o), +(752,150,o), +(752,345,cs), +(752,540,o), +(602,700,o), +(401,700,cs), +(200,700,o), +(50,540,o), +(50,345,cs), +(50,150,o), +(200,-10,o), +(401,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,65,o), +(130,190.705,o), +(130,345,cs), +(130,499.295,o), +(246,625,o), +(401,625,cs), +(556,625,o), +(672,499.295,o), +(672,345,cs), +(672,190.705,o), +(556,65,o), +(401,65,cs) +); +}, +{ +closed = 1; +nodes = ( +(346.969,211,o), +(310,250.547,o), +(310,340,cs), +(310,429.453,o), +(346.969,469,o), +(401,469,c), +(443.472,469,o), +(469.899,450.333,o), +(485,405,c), +(564,428,l), +(541.286,503,o), +(482.435,543,o), +(405,543,cs), +(297.034,543,o), +(223,463,o), +(223,340,cs), +(223,216,o), +(297.034,137,o), +(405,137,c), +(482.435,137,o), +(541.286,177,o), +(564,254,c), +(483,276,l), +(469.805,229.699,o), +(443.414,211,o), +(401,211,c) +); +} +); +width = 802; +} +); +unicode = 169; +}, +{ +color = 6; +glyphname = registered; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(355,226,o), +(322,261,o), +(322,340,cs), +(322,419,o), +(355,454,o), +(403,454,c), +(440,454,o), +(464,437,o), +(477,395,c), +(571,428,l), +(545,503,o), +(484,543,o), +(407,543,cs), +(296,543,o), +(218,463,o), +(218,340,cs), +(218,216,o), +(296,137,o), +(407,137,c), +(484,137,o), +(545,177,o), +(571,254,c), +(475,286,l), +(463,243,o), +(440,226,o), +(403,226,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(602,-10,o), +(752,150,o), +(752,345,cs), +(752,540,o), +(602,700,o), +(401,700,cs), +(200,700,o), +(50,540,o), +(50,345,cs), +(50,150,o), +(200,-10,o), +(401,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(255,80,o), +(145,199,o), +(145,345,cs), +(145,491,o), +(255,610,o), +(401,610,cs), +(547,610,o), +(657,491,o), +(657,345,cs), +(657,199,o), +(547,80,o), +(401,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(358,147,l), +(358,540,l), +(259,540,l), +(259,147,l) +); +}, +{ +closed = 1; +nodes = ( +(566,147,l), +(468,309,l), +(365,309,l), +(455,147,l) +); +}, +{ +closed = 1; +nodes = ( +(416,269,l), +(513,269,o), +(566,320,o), +(566,404,cs), +(566,486,o), +(513,540,o), +(416,540,c), +(303,540,l), +(303,447,l), +(409,447,l), +(448,447,o), +(464,432,o), +(464,404,cs), +(464,375,o), +(448,360,o), +(409,360,c), +(303,360,l), +(303,269,l) +); +} +); +width = 802; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(347,211,o), +(310,251,o), +(310,340,cs), +(310,429,o), +(347,469,o), +(401,469,c), +(443,469,o), +(470,450,o), +(485,405,c), +(564,428,l), +(541,503,o), +(482,543,o), +(405,543,cs), +(297,543,o), +(223,463,o), +(223,340,cs), +(223,216,o), +(297,137,o), +(405,137,c), +(482,137,o), +(541,177,o), +(564,254,c), +(483,276,l), +(470,230,o), +(443,211,o), +(401,211,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(602,-10,o), +(752,150,o), +(752,345,cs), +(752,540,o), +(602,700,o), +(401,700,cs), +(200,700,o), +(50,540,o), +(50,345,cs), +(50,150,o), +(200,-10,o), +(401,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,65,o), +(130,191,o), +(130,345,cs), +(130,499,o), +(246,625,o), +(401,625,cs), +(556,625,o), +(672,499,o), +(672,345,cs), +(672,191,o), +(556,65,o), +(401,65,cs) +); +}, +{ +closed = 1; +nodes = ( +(338,142,l), +(338,540,l), +(254,540,l), +(254,142,l) +); +}, +{ +closed = 1; +nodes = ( +(571,142,l), +(462,304,l), +(369,304,l), +(472,142,l) +); +}, +{ +closed = 1; +nodes = ( +(409,272,l), +(505,272,o), +(567,323,o), +(567,406,cs), +(567,489,o), +(505,540,o), +(409,540,c), +(294,540,l), +(294,462,l), +(401,462,l), +(454,462,o), +(479,444,o), +(479,406,cs), +(479,369,o), +(454,350,o), +(401,350,c), +(294,350,l), +(294,272,l) +); +} +); +width = 802; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(347,211,o), +(310,251,o), +(310,340,cs), +(310,429,o), +(347,469,o), +(401,469,c), +(443,469,o), +(470,450,o), +(485,405,c), +(564,428,l), +(541,503,o), +(482,543,o), +(405,543,cs), +(297,543,o), +(223,463,o), +(223,340,cs), +(223,216,o), +(297,137,o), +(405,137,c), +(482,137,o), +(541,177,o), +(564,254,c), +(483,276,l), +(470,230,o), +(443,211,o), +(401,211,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(602,-10,o), +(752,150,o), +(752,345,cs), +(752,540,o), +(602,700,o), +(401,700,cs), +(200,700,o), +(50,540,o), +(50,345,cs), +(50,150,o), +(200,-10,o), +(401,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,65,o), +(130,191,o), +(130,345,cs), +(130,499,o), +(246,625,o), +(401,625,cs), +(556,625,o), +(672,499,o), +(672,345,cs), +(672,191,o), +(556,65,o), +(401,65,cs) +); +}, +{ +closed = 1; +nodes = ( +(571,142,l), +(462,304,l), +(369,304,l), +(472,142,l) +); +}, +{ +closed = 1; +nodes = ( +(338,142,l), +(338,540,l), +(254,540,l), +(254,142,l) +); +}, +{ +closed = 1; +nodes = ( +(505,272,o), +(567,323,o), +(567,406,cs), +(567,489,o), +(505,540,o), +(409,540,c), +(294,540,l), +(294,462,l), +(401,462,l), +(454,462,o), +(479,444,o), +(479,406,cs), +(479,369,o), +(454,350,o), +(401,350,c), +(294,350,l), +(294,272,l), +(409,272,l) +); +} +); +width = 802; +} +); +unicode = 174; +}, +{ +color = 6; +glyphname = trademark; +kernLeft = M; +kernRight = b; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(487,384,l), +(454,690,l), +(365,690,l), +(417,384,l) +); +}, +{ +closed = 1; +nodes = ( +(180,384,l), +(180,690,l), +(90,690,l), +(90,384,l) +); +}, +{ +closed = 1; +nodes = ( +(260,604,l), +(260,690,l), +(10,690,l), +(10,604,l) +); +}, +{ +closed = 1; +nodes = ( +(376,384,l), +(376,690,l), +(290,690,l), +(290,384,l) +); +}, +{ +closed = 1; +nodes = ( +(542,384,l), +(598,690,l), +(513,690,l), +(471,384,l) +); +}, +{ +closed = 1; +nodes = ( +(672,384,l), +(672,690,l), +(585,690,l), +(585,384,l) +); +} +); +width = 716; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(476,384,l), +(430,690,l), +(358,690,l), +(411,384,l) +); +}, +{ +closed = 1; +nodes = ( +(177,384,l), +(177,690,l), +(100,690,l), +(100,384,l) +); +}, +{ +closed = 1; +nodes = ( +(262,617,l), +(262,690,l), +(15,690,l), +(15,617,l) +); +}, +{ +closed = 1; +nodes = ( +(366,384,l), +(366,690,l), +(293,690,l), +(293,384,l) +); +}, +{ +closed = 1; +nodes = ( +(523,384,l), +(576,690,l), +(508,690,l), +(459,384,l) +); +}, +{ +closed = 1; +nodes = ( +(645,384,l), +(645,690,l), +(568,690,l), +(568,384,l) +); +} +); +width = 690; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(177,384,l), +(177,690,l), +(100,690,l), +(100,384,l) +); +}, +{ +closed = 1; +nodes = ( +(15,617,l), +(262,617,l), +(262,690,l), +(15,690,l) +); +}, +{ +closed = 1; +nodes = ( +(358,690,l), +(411,384,l), +(476,384,l), +(430,690,l) +); +}, +{ +closed = 1; +nodes = ( +(366,384,l), +(366,690,l), +(293,690,l), +(293,384,l) +); +}, +{ +closed = 1; +nodes = ( +(459,384,l), +(523,384,l), +(576,690,l), +(508,690,l) +); +}, +{ +closed = 1; +nodes = ( +(645,384,l), +(645,690,l), +(568,690,l), +(568,384,l) +); +} +); +width = 690; +} +); +unicode = 8482; +}, +{ +color = 6; +glyphname = degree; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(302,370,o), +(373,438,o), +(373,537,c), +(373,636,o), +(302,704,o), +(201,704,cs), +(101,704,o), +(30,636,o), +(30,537,c), +(30,438,o), +(101,370,o), +(201,370,cs) +); +}, +{ +closed = 1; +nodes = ( +(170,475,o), +(146,498,o), +(146,537,c), +(146,576,o), +(170,599,o), +(201,599,cs), +(233,599,o), +(257,576,o), +(257,537,c), +(257,498,o), +(233,475,o), +(201,475,cs) +); +} +); +width = 403; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(294,374,o), +(359,441,o), +(359,537,c), +(359,633,o), +(294,700,o), +(199,700,cs), +(105,700,o), +(40,633,o), +(40,537,c), +(40,441,o), +(105,374,o), +(199,374,cs) +); +}, +{ +closed = 1; +nodes = ( +(158,450,o), +(127,482,o), +(127,537,c), +(127,592,o), +(158,624,o), +(199,624,cs), +(241,624,o), +(272,592,o), +(272,537,c), +(272,482,o), +(241,450,o), +(199,450,cs) +); +} +); +width = 399; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(359,633,o), +(294,700,o), +(199,700,cs), +(105,700,o), +(40,633,o), +(40,537,c), +(40,441,o), +(105,374,o), +(199,374,cs), +(294,374,o), +(359,441,o), +(359,537,c) +); +}, +{ +closed = 1; +nodes = ( +(127,592,o), +(158,624,o), +(199,624,cs), +(241,624,o), +(272,592,o), +(272,537,c), +(272,482,o), +(241,450,o), +(199,450,cs), +(158,450,o), +(127,482,o), +(127,537,c) +); +} +); +width = 399; +} +); +unicode = 176; +}, +{ +color = 6; +glyphname = bar; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(210,-120,l), +(210,770,l), +(71,770,l), +(71,-120,l) +); +} +); +width = 282; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(170,-120,l), +(170,770,l), +(80,770,l), +(80,-120,l) +); +} +); +width = 250; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(170,-120,l), +(170,770,l), +(80,770,l), +(80,-120,l) +); +} +); +width = 250; +} +); +unicode = 124; +}, +{ +color = 6; +glyphname = brokenbar; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(210,425,l), +(210,770,l), +(71,770,l), +(71,425,l) +); +}, +{ +closed = 1; +nodes = ( +(210,-120,l), +(210,225,l), +(71,225,l), +(71,-120,l) +); +} +); +width = 282; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(170,425,l), +(170,770,l), +(80,770,l), +(80,425,l) +); +}, +{ +closed = 1; +nodes = ( +(170,-120,l), +(170,225,l), +(80,225,l), +(80,-120,l) +); +} +); +width = 250; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(170,770,l), +(80,770,l), +(80,425,l), +(170,425,l) +); +}, +{ +closed = 1; +nodes = ( +(170,-120,l), +(170,225,l), +(80,225,l), +(80,-120,l) +); +} +); +width = 250; +} +); +unicode = 166; +}, +{ +color = 6; +glyphname = dagger; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(256,0,l), +(283,291,l), +(283,690,l), +(128,690,l), +(128,291,l), +(154,0,l) +); +}, +{ +closed = 1; +nodes = ( +(390,410,l), +(390,550,l), +(20,550,l), +(20,410,l) +); +} +); +width = 410; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(166,227,l), +(194,550,ls), +(198,598,o), +(199,619,o), +(199,632,c), +(199,670,o), +(175,700,o), +(135,700,cs), +(95,700,o), +(71,670,o), +(71,632,c), +(71,619,o), +(72,598,o), +(76,550,cs), +(104,227,l) +); +}, +{ +closed = 1; +nodes = ( +(173,-10,o), +(200,18,o), +(200,56,cs), +(200,95,o), +(173,123,o), +(135,123,cs), +(97,123,o), +(70,95,o), +(70,56,cs), +(70,18,o), +(97,-10,o), +(135,-10,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(226,0,l), +(248,311,l), +(248,690,l), +(143,690,l), +(143,311,l), +(164,0,l) +); +}, +{ +closed = 1; +nodes = ( +(360,443,l), +(360,530,l), +(30,530,l), +(30,443,l) +); +} +); +width = 390; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(166,227,l), +(194,550,ls), +(198,598,o), +(199,619,o), +(199,632,c), +(199,670,o), +(175,700,o), +(135,700,cs), +(95,700,o), +(71,670,o), +(71,632,c), +(71,619,o), +(72,598,o), +(76,550,cs), +(104,227,l) +); +}, +{ +closed = 1; +nodes = ( +(173,-10,o), +(200,18,o), +(200,56,cs), +(200,95,o), +(173,123,o), +(135,123,cs), +(97,123,o), +(70,95,o), +(70,56,cs), +(70,18,o), +(97,-10,o), +(135,-10,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(143,311,l), +(164,0,l), +(226,0,l), +(248,311,l), +(248,690,l), +(143,690,l) +); +}, +{ +closed = 1; +nodes = ( +(30,443,l), +(360,443,l), +(360,530,l), +(30,530,l) +); +} +); +width = 390; +} +); +unicode = 8224; +}, +{ +color = 6; +glyphname = litre; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(264,211,o), +(442,424,o), +(442,552,c), +(442,585,o), +(428,605,o), +(401,605,c), +(297,605,o), +(190,374,o), +(190,224,c), +(190,137,o), +(231,87,o), +(306,87,c), +(345,87,o), +(390,102,o), +(432,133,c), +(477,49,l), +(420,11,o), +(358,-10,o), +(297,-10,c), +(159,-10,o), +(86,72,o), +(86,227,c), +(86,452,o), +(231,700,o), +(412,700,c), +(495,700,o), +(540,644,o), +(540,559,c), +(540,381,o), +(311,145,o), +(25,-10,c), +(-10,66,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(347,139,o), +(586,354,o), +(586,549,c), +(586,640,o), +(528,704,o), +(425,704,c), +(234,704,o), +(80,471,o), +(80,227,c), +(80,72,o), +(177,-14,o), +(316,-14,c), +(393,-14,o), +(464,9,o), +(521,50,c), +(461,174,l), +(408,134,o), +(359,117,o), +(325,117,c), +(263,117,o), +(229,157,o), +(229,235,c), +(229,359,o), +(316,571,o), +(400,571,c), +(427,571,o), +(441,551,o), +(441,518,c), +(441,413,o), +(270,232,o), +(-10,108,c), +(47,-14,l) +); +} +); +width = 586; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(431,344,o), +(492,417,o), +(492,501,c), +(492,559,o), +(455,605,o), +(379,605,c), +(293,605,o), +(210,530,o), +(210,447,cs), +(210,390,o), +(258,344,o), +(334,344,c) +); +}, +{ +closed = 1; +nodes = ( +(179,359,o), +(160,278,o), +(160,224,c), +(160,137,o), +(201,87,o), +(276,87,c), +(315,87,o), +(360,102,o), +(402,133,c), +(447,49,l), +(390,11,o), +(328,-10,o), +(267,-10,c), +(129,-10,o), +(56,72,o), +(56,227,c), +(56,498,o), +(186,700,o), +(390,700,c), +(519,700,o), +(597,618,o), +(597,512,c), +(597,367,o), +(478,253,o), +(345,253,c), +(246,253,o), +(180,307,o), +(180,396,cs), +(180,408,o), +(183,416,o), +(185,429,c), +(192,404,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(311,145,o), +(540,381,o), +(540,559,c), +(540,644,o), +(495,700,o), +(412,700,c), +(231,700,o), +(86,452,o), +(86,227,c), +(86,72,o), +(159,-10,o), +(297,-10,c), +(358,-10,o), +(420,11,o), +(477,49,c), +(432,133,l), +(390,102,o), +(345,87,o), +(306,87,c), +(231,87,o), +(190,137,o), +(190,224,c), +(190,374,o), +(297,605,o), +(401,605,c), +(428,605,o), +(442,585,o), +(442,552,c), +(442,424,o), +(264,211,o), +(-10,66,c), +(25,-10,l) +); +} +); +width = 545; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(431,344,o), +(492,417,o), +(492,501,c), +(492,559,o), +(455,605,o), +(379,605,c), +(293,605,o), +(210,530,o), +(210,447,cs), +(210,390,o), +(258,344,o), +(334,344,c) +); +}, +{ +closed = 1; +nodes = ( +(179,359,o), +(160,278,o), +(160,224,c), +(160,137,o), +(201,87,o), +(276,87,c), +(315,87,o), +(360,102,o), +(402,133,c), +(447,49,l), +(390,11,o), +(328,-10,o), +(267,-10,c), +(129,-10,o), +(56,72,o), +(56,227,c), +(56,498,o), +(186,700,o), +(390,700,c), +(519,700,o), +(597,618,o), +(597,512,c), +(597,367,o), +(478,253,o), +(345,253,c), +(246,253,o), +(180,307,o), +(180,396,cs), +(180,408,o), +(183,416,o), +(185,429,c), +(192,404,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(264,211,o), +(442,424,o), +(442,552,c), +(442,585,o), +(428,605,o), +(401,605,c), +(297,605,o), +(190,374,o), +(190,224,c), +(190,137,o), +(231,87,o), +(306,87,c), +(345,87,o), +(390,102,o), +(432,133,c), +(477,49,l), +(420,11,o), +(358,-10,o), +(297,-10,c), +(159,-10,o), +(86,72,o), +(86,227,c), +(86,452,o), +(231,700,o), +(412,700,c), +(495,700,o), +(540,644,o), +(540,559,c), +(540,381,o), +(311,145,o), +(25,-10,c), +(-10,66,l) +); +} +); +width = 545; +} +); +unicode = 8467; +}, +{ +color = 6; +glyphname = daggerdbl; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(283,0,l), +(283,690,l), +(128,690,l), +(128,0,l) +); +}, +{ +closed = 1; +nodes = ( +(390,140,l), +(390,280,l), +(20,280,l), +(20,140,l) +); +}, +{ +closed = 1; +nodes = ( +(390,410,l), +(390,550,l), +(20,550,l), +(20,410,l) +); +} +); +width = 410; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(166,227,l), +(194,550,ls), +(198,598,o), +(199,619,o), +(199,632,c), +(199,670,o), +(175,700,o), +(135,700,cs), +(95,700,o), +(71,670,o), +(71,632,c), +(71,619,o), +(72,598,o), +(76,550,cs), +(104,227,l) +); +}, +{ +closed = 1; +nodes = ( +(173,-10,o), +(200,18,o), +(200,56,cs), +(200,95,o), +(173,123,o), +(135,123,cs), +(97,123,o), +(70,95,o), +(70,56,cs), +(70,18,o), +(97,-10,o), +(135,-10,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(248,0,l), +(248,690,l), +(143,690,l), +(143,0,l) +); +}, +{ +closed = 1; +nodes = ( +(360,160,l), +(360,247,l), +(30,247,l), +(30,160,l) +); +}, +{ +closed = 1; +nodes = ( +(360,443,l), +(360,530,l), +(30,530,l), +(30,443,l) +); +} +); +width = 390; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(166,227,l), +(194,550,ls), +(198,598,o), +(199,619,o), +(199,632,c), +(199,670,o), +(175,700,o), +(135,700,cs), +(95,700,o), +(71,670,o), +(71,632,c), +(71,619,o), +(72,598,o), +(76,550,cs), +(104,227,l) +); +}, +{ +closed = 1; +nodes = ( +(173,-10,o), +(200,18,o), +(200,56,cs), +(200,95,o), +(173,123,o), +(135,123,cs), +(97,123,o), +(70,95,o), +(70,56,cs), +(70,18,o), +(97,-10,o), +(135,-10,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(30,443,l), +(360,443,l), +(360,530,l), +(30,530,l) +); +}, +{ +closed = 1; +nodes = ( +(248,0,l), +(248,690,l), +(143,690,l), +(143,0,l) +); +}, +{ +closed = 1; +nodes = ( +(360,160,l), +(360,247,l), +(30,247,l), +(30,160,l) +); +} +); +width = 390; +} +); +unicode = 8225; +}, +{ +color = 6; +glyphname = estimated; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(568,-10,o), +(684,67,o), +(743,180,c), +(708,201,l), +(657,99,o), +(553,30,o), +(434,30,cs), +(256,30,o), +(110,171,o), +(110,345,cs), +(110,519,o), +(249,660,o), +(419,660,cs), +(589,660,o), +(728,519,o), +(728,345,c), +(768,345,l), +(768,540,o), +(611,700,o), +(419,700,cs), +(227,700,o), +(70,540,o), +(70,345,cs), +(70,150,o), +(234,-10,o), +(434,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(230,627,l), +(95,457,l), +(95,230,l), +(230,60,l) +); +}, +{ +closed = 1; +nodes = ( +(768,327,l), +(768,345,l), +(737,372,l), +(126,372,l), +(126,327,l) +); +}, +{ +closed = 1; +nodes = ( +(743,341,l), +(743,457,l), +(608,627,l), +(608,341,l) +); +} +); +width = 838; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(568,-10,o), +(684,67,o), +(743,180,c), +(708,201,l), +(657,99,o), +(553,30,o), +(434,30,cs), +(256,30,o), +(110,171,o), +(110,345,cs), +(110,519,o), +(249,660,o), +(419,660,cs), +(589,660,o), +(728,519,o), +(728,345,c), +(768,345,l), +(768,540,o), +(611,700,o), +(419,700,cs), +(227,700,o), +(70,540,o), +(70,345,cs), +(70,150,o), +(234,-10,o), +(434,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(230,627,l), +(95,457,l), +(95,230,l), +(230,60,l) +); +}, +{ +closed = 1; +nodes = ( +(768,327,l), +(768,345,l), +(737,372,l), +(126,372,l), +(126,327,l) +); +}, +{ +closed = 1; +nodes = ( +(743,341,l), +(743,457,l), +(608,627,l), +(608,341,l) +); +} +); +width = 838; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(230,60,l), +(230,627,l), +(95,457,l), +(95,230,l) +); +}, +{ +closed = 1; +nodes = ( +(743,457,l), +(608,627,l), +(608,341,l), +(743,341,l) +); +}, +{ +closed = 1; +nodes = ( +(768,327,l), +(768,345,l), +(737,372,l), +(126,372,l), +(126,327,l) +); +}, +{ +closed = 1; +nodes = ( +(768,540,o), +(611,700,o), +(419,700,cs), +(227,700,o), +(70,540,o), +(70,345,cs), +(70,150,o), +(233.748,-10,o), +(434,-10,cs), +(568,-10,o), +(684,67,o), +(743,180,c), +(708,201,l), +(657,99,o), +(553,30,o), +(434,30,cs), +(255.748,30,o), +(110,171,o), +(110,345,cs), +(110,519,o), +(249,660,o), +(419,660,cs), +(589,660,o), +(728,519,o), +(728,345,c), +(768,345,l) +); +} +); +width = 838; +} +); +unicode = 8494; +}, +{ +color = 6; +glyphname = numero; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(496,0,l), +(321,690,l), +(170,690,l), +(345,0,l) +); +}, +{ +closed = 1; +nodes = ( +(206,0,l), +(206,690,l), +(59,690,l), +(59,0,l) +); +}, +{ +closed = 1; +nodes = ( +(607,0,l), +(607,690,l), +(460,690,l), +(460,0,l) +); +}, +{ +closed = 1; +nodes = ( +(892,144,o), +(931,179,o), +(931,231,cs), +(931,284,o), +(892,320,o), +(841,320,cs), +(791,320,o), +(753,284,o), +(753,231,cs), +(753,179,o), +(791,144,o), +(841,144,cs) +); +}, +{ +closed = 1; +nodes = ( +(942,370,o), +(1013,438,o), +(1013,537,c), +(1013,636,o), +(942,704,o), +(841,704,cs), +(741,704,o), +(670,636,o), +(670,537,c), +(670,438,o), +(741,370,o), +(841,370,cs) +); +}, +{ +closed = 1; +nodes = ( +(810,475,o), +(786,498,o), +(786,537,c), +(786,576,o), +(810,599,o), +(841,599,cs), +(873,599,o), +(897,576,o), +(897,537,c), +(897,498,o), +(873,475,o), +(841,475,cs) +); +} +); +width = 1043; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(554,0,l), +(210,690,l), +(101,690,l), +(445,0,l) +); +}, +{ +closed = 1; +nodes = ( +(170,0,l), +(170,690,l), +(70,690,l), +(70,0,l) +); +}, +{ +closed = 1; +nodes = ( +(585,0,l), +(585,690,l), +(485,690,l), +(485,0,l) +); +}, +{ +closed = 1; +nodes = ( +(857,191,o), +(884,219,o), +(884,257,cs), +(884,296,o), +(857,324,o), +(819,324,cs), +(781,324,o), +(754,296,o), +(754,257,cs), +(754,219,o), +(781,191,o), +(819,191,cs) +); +}, +{ +closed = 1; +nodes = ( +(914,374,o), +(979,441,o), +(979,537,c), +(979,633,o), +(914,700,o), +(819,700,cs), +(725,700,o), +(660,633,o), +(660,537,c), +(660,441,o), +(725,374,o), +(819,374,cs) +); +}, +{ +closed = 1; +nodes = ( +(778,450,o), +(747,482,o), +(747,537,c), +(747,592,o), +(778,624,o), +(819,624,cs), +(861,624,o), +(892,592,o), +(892,537,c), +(892,482,o), +(861,450,o), +(819,450,cs) +); +} +); +width = 1019; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(101,690,l), +(445,0,l), +(554,0,l), +(210,690,l) +); +}, +{ +closed = 1; +nodes = ( +(170,0,l), +(170,690,l), +(70,690,l), +(70,0,l) +); +}, +{ +closed = 1; +nodes = ( +(585,0,l), +(585,690,l), +(485,690,l), +(485,0,l) +); +}, +{ +closed = 1; +nodes = ( +(979,633,o), +(914,700,o), +(819,700,cs), +(725,700,o), +(660,633,o), +(660,537,c), +(660,441,o), +(725,374,o), +(819,374,cs), +(914,374,o), +(979,441,o), +(979,537,c) +); +}, +{ +closed = 1; +nodes = ( +(747,592,o), +(778,624,o), +(819,624,cs), +(861,624,o), +(892,592,o), +(892,537,c), +(892,482,o), +(861,450,o), +(819,450,cs), +(778,450,o), +(747,482,o), +(747,537,c) +); +}, +{ +closed = 1; +nodes = ( +(857,191,o), +(884,219,o), +(884,257,cs), +(884,296,o), +(857,324,o), +(819,324,cs), +(781,324,o), +(754,296,o), +(754,257,cs), +(754,219,o), +(781,191,o), +(819,191,cs) +); +} +); +width = 1019; +} +); +unicode = 8470; +}, +{ +color = 6; +glyphname = cent; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(396,166,o), +(486,236,o), +(511,349,c), +(364,380,l), +(355,326,o), +(323,299,o), +(275,299,c), +(218,299,o), +(180,346,o), +(180,435,cs), +(180,524,o), +(218,571,o), +(275,571,c), +(322,571,o), +(353,543,o), +(360,489,c), +(508,522,l), +(484,634,o), +(396,704,o), +(275,704,cs), +(129,704,o), +(26,596,o), +(26,435,cs), +(26,274,o), +(129,166,o), +(275,166,c) +); +}, +{ +closed = 1; +nodes = ( +(333,-110,l), +(333,254,l), +(214,254,l), +(214,-110,l) +); +}, +{ +closed = 1; +nodes = ( +(333,604,l), +(333,800,l), +(214,800,l), +(214,604,l) +); +} +); +width = 533; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(360,170,o), +(434,222,o), +(463,324,c), +(366,353,l), +(349,287,o), +(315,260,o), +(259,260,c), +(187,260,o), +(139,314,o), +(139,435,cs), +(139,556,o), +(187,610,o), +(259,610,c), +(315,610,o), +(349,583,o), +(369,518,c), +(463,549,l), +(434,648,o), +(360,700,o), +(264,700,cs), +(128,700,o), +(35,596,o), +(35,435,cs), +(35,274,o), +(128,170,o), +(264,170,c) +); +}, +{ +closed = 1; +nodes = ( +(308,-110,l), +(308,222,l), +(218,222,l), +(218,-110,l) +); +}, +{ +closed = 1; +nodes = ( +(308,652,l), +(308,800,l), +(218,800,l), +(218,652,l) +); +} +); +width = 493; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(308,800,l), +(218,800,l), +(218,652,l), +(308,652,l) +); +}, +{ +closed = 1; +nodes = ( +(308,-110,l), +(308,222,l), +(218,222,l), +(218,-110,l) +); +}, +{ +closed = 1; +nodes = ( +(187,260,o), +(139,313.919,o), +(139,435,cs), +(139,556.081,o), +(187,610,o), +(259,610,c), +(314.917,610,o), +(348.833,583.443,o), +(369,518,c), +(463,549,l), +(434.435,647.731,o), +(360.167,700,o), +(264,700,cs), +(127.941,700,o), +(35,595.927,o), +(35,435,cs), +(35,274.073,o), +(127.941,170,o), +(264,170,c), +(360.167,170,o), +(434.435,222.302,o), +(463,324,c), +(366,353,l), +(348.624,286.571,o), +(314.786,260,o), +(259,260,c) +); +} +); +width = 493; +} +); +unicode = 162; +}, +{ +color = 6; +glyphname = currency; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(452,405,o), +(376.844,486,o), +(267,486,cs), +(158.22,486,o), +(83,405,o), +(83,303,c), +(83,201,o), +(158.22,120,o), +(267,120,cs), +(376.844,120,o), +(452,201,o), +(452,303,c) +); +}, +{ +closed = 1; +nodes = ( +(169,364,o), +(211.829,410,o), +(267,410,cs), +(323.319,410,o), +(366,364,o), +(366,303,c), +(366,242,o), +(323.319,196,o), +(267,196,cs), +(211.829,196,o), +(169,242,o), +(169,303,c) +); +}, +{ +closed = 1; +nodes = ( +(71,51,l), +(519,499,l), +(462,556,l), +(14,108,l) +); +}, +{ +closed = 1; +nodes = ( +(13,498,l), +(461,50,l), +(520,109,l), +(72,557,l) +); +}, +{ +closed = 1; +nodes = ( +(464,405,o), +(389,486,o), +(279,486,cs), +(170,486,o), +(95,405,o), +(95,303,c), +(95,201,o), +(170,120,o), +(279,120,cs), +(389,120,o), +(464,201,o), +(464,303,c) +); +}, +{ +closed = 1; +nodes = ( +(181,364,o), +(224,410,o), +(279,410,cs), +(335,410,o), +(378,364,o), +(378,303,c), +(378,242,o), +(335,196,o), +(279,196,cs), +(224,196,o), +(181,242,o), +(181,303,c) +); +}, +{ +closed = 1; +nodes = ( +(25,498,l), +(153,370,l), +(212,429,l), +(84,557,l) +); +}, +{ +closed = 1; +nodes = ( +(531,499,l), +(474,556,l), +(344,426,l), +(401,369,l) +); +}, +{ +closed = 1; +nodes = ( +(473,50,l), +(532,109,l), +(402,239,l), +(343,180,l) +); +}, +{ +closed = 1; +nodes = ( +(83,51,l), +(210,178,l), +(153,235,l), +(26,108,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(411,100,o), +(494,190,o), +(494,303,c), +(494,416,o), +(411,506,o), +(289,506,cs), +(168,506,o), +(85,416,o), +(85,303,c), +(85,190,o), +(168,100,o), +(289,100,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,169,l), +(154,265,l), +(10,121,l), +(106,25,l) +); +}, +{ +closed = 1; +nodes = ( +(251,438,l), +(107,582,l), +(10,485,l), +(154,341,l) +); +}, +{ +closed = 1; +nodes = ( +(567,122,l), +(431,258,l), +(334,161,l), +(470,25,l) +); +}, +{ +closed = 1; +nodes = ( +(242,215,o), +(209,251,o), +(209,303,c), +(209,355,o), +(242,391,o), +(289,391,cs), +(337,391,o), +(370,355,o), +(370,303,c), +(370,251,o), +(337,215,o), +(289,215,cs) +); +}, +{ +closed = 1; +nodes = ( +(567,486,l), +(471,582,l), +(322,433,l), +(418,337,l) +); +} +); +width = 577; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(452,405,o), +(376.844,486,o), +(267,486,cs), +(158.22,486,o), +(83,405,o), +(83,303,c), +(83,201,o), +(158.22,120,o), +(267,120,cs), +(376.844,120,o), +(452,201,o), +(452,303,c) +); +}, +{ +closed = 1; +nodes = ( +(169,364,o), +(211.829,410,o), +(267,410,cs), +(323.319,410,o), +(366,364,o), +(366,303,c), +(366,242,o), +(323.319,196,o), +(267,196,cs), +(211.829,196,o), +(169,242,o), +(169,303,c) +); +}, +{ +closed = 1; +nodes = ( +(71,51,l), +(519,499,l), +(462,556,l), +(14,108,l) +); +}, +{ +closed = 1; +nodes = ( +(13,498,l), +(461,50,l), +(520,109,l), +(72,557,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(389,120,o), +(464,201,o), +(464,303,c), +(464,405,o), +(389,486,o), +(279,486,cs), +(170,486,o), +(95,405,o), +(95,303,c), +(95,201,o), +(170,120,o), +(279,120,cs) +); +}, +{ +closed = 1; +nodes = ( +(210,178,l), +(153,235,l), +(26,108,l), +(83,51,l) +); +}, +{ +closed = 1; +nodes = ( +(212,429,l), +(84,557,l), +(25,498,l), +(153,370,l) +); +}, +{ +closed = 1; +nodes = ( +(532,109,l), +(402,239,l), +(343,180,l), +(473,50,l) +); +}, +{ +closed = 1; +nodes = ( +(224,196,o), +(181,242,o), +(181,303,c), +(181,364,o), +(224,410,o), +(279,410,cs), +(335,410,o), +(378,364,o), +(378,303,c), +(378,242,o), +(335,196,o), +(279,196,cs) +); +}, +{ +closed = 1; +nodes = ( +(531,499,l), +(474,556,l), +(344,426,l), +(401,369,l) +); +} +); +width = 557; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(452,405,o), +(376.844,486,o), +(267,486,cs), +(158.22,486,o), +(83,405,o), +(83,303,c), +(83,201,o), +(158.22,120,o), +(267,120,cs), +(376.844,120,o), +(452,201,o), +(452,303,c) +); +}, +{ +closed = 1; +nodes = ( +(169,364,o), +(211.829,410,o), +(267,410,cs), +(323.319,410,o), +(366,364,o), +(366,303,c), +(366,242,o), +(323.319,196,o), +(267,196,cs), +(211.829,196,o), +(169,242,o), +(169,303,c) +); +}, +{ +closed = 1; +nodes = ( +(71,51,l), +(519,499,l), +(462,556,l), +(14,108,l) +); +}, +{ +closed = 1; +nodes = ( +(13,498,l), +(461,50,l), +(520,109,l), +(72,557,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(464,405,o), +(388.844,486,o), +(279,486,cs), +(170.22,486,o), +(95,405,o), +(95,303,c), +(95,201,o), +(170.22,120,o), +(279,120,cs), +(388.844,120,o), +(464,201,o), +(464,303,c) +); +}, +{ +closed = 1; +nodes = ( +(181,364,o), +(223.829,410,o), +(279,410,cs), +(335.319,410,o), +(378,364,o), +(378,303,c), +(378,242,o), +(335.319,196,o), +(279,196,cs), +(223.829,196,o), +(181,242,o), +(181,303,c) +); +}, +{ +closed = 1; +nodes = ( +(25,498,l), +(153,370,l), +(212,429,l), +(84,557,l) +); +}, +{ +closed = 1; +nodes = ( +(531,499,l), +(474,556,l), +(344,426,l), +(401,369,l) +); +}, +{ +closed = 1; +nodes = ( +(473,50,l), +(532,109,l), +(402,239,l), +(343,180,l) +); +}, +{ +closed = 1; +nodes = ( +(83,51,l), +(210,178,l), +(153,235,l), +(26,108,l) +); +} +); +width = 557; +} +); +unicode = 164; +}, +{ +color = 6; +glyphname = dollar; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(480,-14,o), +(584,71,o), +(584,196,c), +(584,462,o), +(199,391,o), +(199,507,c), +(199,538,o), +(225,566,o), +(294,566,c), +(359,566,o), +(407,536,o), +(431,466,c), +(576,517,l), +(537,640,o), +(438,704,o), +(308,704,c), +(142,704,o), +(43,619,o), +(43,498,c), +(43,245,o), +(425,322,o), +(425,190,c), +(425,153,o), +(393,125,o), +(320,125,c), +(250,125,o), +(199,159,o), +(173,241,c), +(22,190,l), +(64,53,o), +(165,-14,o), +(311,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(368,-110,l), +(368,64,l), +(249,64,l), +(249,-110,l) +); +}, +{ +closed = 1; +nodes = ( +(368,604,l), +(368,800,l), +(249,800,l), +(249,604,l) +); +} +); +width = 612; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(430,-10,o), +(515,72,o), +(515,180,c), +(515,443,o), +(153,363,o), +(153,522,c), +(153,570,o), +(186,612,o), +(266,612,c), +(340,612,o), +(384,572,o), +(408,499,c), +(508,532,l), +(475,637,o), +(396,700,o), +(275,700,c), +(128,700,o), +(52,617,o), +(52,515,c), +(52,266,o), +(413,351,o), +(413,174,c), +(413,117,o), +(364,78,o), +(284,78,c), +(201,78,o), +(156,120,o), +(133,196,c), +(30,163,l), +(64,55,o), +(144,-10,o), +(276,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(322,-110,l), +(322,42,l), +(232,42,l), +(232,-110,l) +); +}, +{ +closed = 1; +nodes = ( +(322,652,l), +(322,800,l), +(232,800,l), +(232,652,l) +); +} +); +width = 560; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(515,443,o), +(153,363,o), +(153,522,c), +(153,570,o), +(186,612,o), +(266,612,c), +(340,612,o), +(384,572,o), +(408,499,c), +(508,532,l), +(475,637,o), +(396,700,o), +(275,700,c), +(128,700,o), +(52,617,o), +(52,515,c), +(52,266,o), +(413,351,o), +(413,174,c), +(413,117,o), +(364,78,o), +(284,78,c), +(201,78,o), +(156,120,o), +(133,196,c), +(30,163,l), +(64,55,o), +(144,-10,o), +(276,-10,c), +(430,-10,o), +(515,72,o), +(515,180,c) +); +}, +{ +closed = 1; +nodes = ( +(322,800,l), +(232,800,l), +(232,652,l), +(322,652,l) +); +}, +{ +closed = 1; +nodes = ( +(322,-110,l), +(322,42,l), +(232,42,l), +(232,-110,l) +); +} +); +width = 560; +} +); +unicode = 36; +}, +{ +color = 6; +glyphname = euro; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(238,84,o), +(186,179,o), +(186,345,cs), +(186,512,o), +(238,606,o), +(322,606,c), +(384,606,o), +(421,563,o), +(436,487,c), +(537,511,l), +(511,634,o), +(436,700,o), +(325,700,c), +(177,700,o), +(83,576,o), +(83,345,cs), +(83,115,o), +(177,-10,o), +(325,-10,c), +(436,-10,o), +(512,56,o), +(541,181,c), +(440,205,l), +(421,127,o), +(385,84,o), +(322,84,c) +); +}, +{ +closed = 1; +nodes = ( +(20,223,l), +(367,223,l), +(377,310,l), +(20,310,l) +); +}, +{ +closed = 1; +nodes = ( +(20,365,l), +(383,365,l), +(393,452,l), +(20,452,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(469,-14,o), +(557,51,o), +(587,176,c), +(436,215,l), +(423,156,o), +(392,124,o), +(337,124,c), +(262,124,o), +(216,204,o), +(216,345,cs), +(216,486,o), +(262,566,o), +(337,566,c), +(391,566,o), +(424,534,o), +(429,482,c), +(580,516,l), +(557,639,o), +(469,704,o), +(340,704,c), +(168,704,o), +(58,579,o), +(58,345,cs), +(58,112,o), +(168,-14,o), +(340,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(406,217,l), +(417,316,l), +(10,316,l), +(10,217,l) +); +}, +{ +closed = 1; +nodes = ( +(422,359,l), +(433,458,l), +(10,458,l), +(10,359,l) +); +} +); +width = 602; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(436,-10,o), +(512,56,o), +(541,181,c), +(440,205,l), +(421,127,o), +(385,84,o), +(322,84,c), +(238,84,o), +(186,179,o), +(186,345,cs), +(186,512,o), +(238,606,o), +(322,606,c), +(384,606,o), +(421,563,o), +(436,487,c), +(537,511,l), +(511,634,o), +(436,700,o), +(325,700,c), +(177,700,o), +(83,576,o), +(83,345,cs), +(83,115,o), +(177,-10,o), +(325,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(367,223,l), +(377,310,l), +(20,310,l), +(20,223,l) +); +}, +{ +closed = 1; +nodes = ( +(383,365,l), +(393,452,l), +(20,452,l), +(20,365,l) +); +} +); +width = 577; +} +); +unicode = 8364; +}, +{ +color = 6; +glyphname = sterling; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(504,96,l), +(130,96,l), +(50,67,l), +(50,0,l), +(504,0,l) +); +}, +{ +closed = 1; +nodes = ( +(253,342,o), +(175,413,o), +(175,501,c), +(175,566,o), +(221,608,o), +(283,608,c), +(353,608,o), +(390,557,o), +(401,493,c), +(504,513,l), +(487,623,o), +(412,700,o), +(287,700,c), +(163,700,o), +(69,620,o), +(69,501,c), +(69,392,o), +(160,341,o), +(160,241,c), +(160,193,o), +(130,135,o), +(50,67,c), +(132,52,l), +(232,135,o), +(253,189,o), +(253,253,c) +); +}, +{ +closed = 1; +nodes = ( +(50,275,l), +(438,275,l), +(438,362,l), +(50,362,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(231,133,o), +(279,205,o), +(279,278,c), +(279,353,o), +(217,409,o), +(217,485,c), +(217,534,o), +(252,563,o), +(295,563,c), +(341,563,o), +(380,531,o), +(386,469,c), +(540,489,l), +(524,629,o), +(431,704,o), +(296,704,c), +(160,704,o), +(57,618,o), +(57,497,c), +(57,395,o), +(133,346,o), +(133,272,c), +(133,214,o), +(101,158,o), +(35,104,c), +(107,97,l) +); +}, +{ +closed = 1; +nodes = ( +(547,0,l), +(547,140,l), +(106,140,l), +(35,104,l), +(35,0,l) +); +}, +{ +closed = 1; +nodes = ( +(449,251,l), +(449,371,l), +(35,371,l), +(35,251,l) +); +} +); +width = 584; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(158,52,l), +(45,67,l), +(194,267,l), +(111,350,o), +(64,403,o), +(64,499,c), +(64,620,o), +(162,700,o), +(286,700,c), +(414,700,o), +(509,623,o), +(527,473,c), +(424,453,l), +(412,557,o), +(364,608,o), +(291,608,c), +(220,608,o), +(173,566,o), +(173,493,c), +(173,443,o), +(200,391,o), +(260,331,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(232,135,o), +(253,189,o), +(253,253,c), +(253,342,o), +(175,413,o), +(175,501,c), +(175,566,o), +(221,608,o), +(283,608,c), +(353,608,o), +(390,557,o), +(401,493,c), +(504,513,l), +(487,623,o), +(412,700,o), +(287,700,c), +(163,700,o), +(69,620,o), +(69,501,c), +(69,392,o), +(160,341,o), +(160,241,c), +(160,193,o), +(130,135,o), +(50,67,c), +(132,52,l) +); +}, +{ +closed = 1; +nodes = ( +(504,0,l), +(504,96,l), +(130,96,l), +(50,67,l), +(50,0,l) +); +}, +{ +closed = 1; +nodes = ( +(438,275,l), +(438,362,l), +(50,362,l), +(50,275,l) +); +} +); +width = 564; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(158,52,l), +(45,67,l), +(194,267,l), +(111,350,o), +(64,403,o), +(64,499,c), +(64,620,o), +(162,700,o), +(286,700,c), +(414,700,o), +(509,623,o), +(527,473,c), +(424,453,l), +(412,557,o), +(364,608,o), +(291,608,c), +(220,608,o), +(173,566,o), +(173,493,c), +(173,443,o), +(200,391,o), +(260,331,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(504,96,l), +(130,96,l), +(50,67,l), +(50,0,l), +(504,0,l) +); +}, +{ +closed = 1; +nodes = ( +(253,342,o), +(175,413,o), +(175,501,c), +(175,566,o), +(221,608,o), +(283,608,c), +(353,608,o), +(390.44,557,o), +(401,493,c), +(504,513,l), +(487.365,623,o), +(412,700,o), +(287,700,c), +(163,700,o), +(69,620,o), +(69,501,c), +(69,392,o), +(160,341,o), +(160,241,c), +(160,193,o), +(130,135,o), +(50,67,c), +(132,52,l), +(232,135,o), +(253,189,o), +(253,253,c) +); +}, +{ +closed = 1; +nodes = ( +(50,275,l), +(438,275,l), +(438,362,l), +(50,362,l) +); +} +); +width = 564; +} +); +unicode = 163; +}, +{ +color = 6; +glyphname = yen; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(351,415,l), +(201,690,l), +(28,690,l), +(251,292,l) +); +}, +{ +closed = 1; +nodes = ( +(386,0,l), +(386,453,l), +(232,453,l), +(232,0,l) +); +}, +{ +closed = 1; +nodes = ( +(547,183,l), +(547,290,l), +(71,290,l), +(71,183,l) +); +}, +{ +closed = 1; +nodes = ( +(547,325,l), +(547,432,l), +(71,432,l), +(71,325,l) +); +}, +{ +closed = 1; +nodes = ( +(592,690,l), +(426,690,l), +(279,415,l), +(368,293,l) +); +} +); +width = 620; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(329,363,l), +(138,690,l), +(20,690,l), +(262,303,l) +); +}, +{ +closed = 1; +nodes = ( +(349,0,l), +(349,410,l), +(244,410,l), +(244,0,l) +); +}, +{ +closed = 1; +nodes = ( +(503,161,l), +(503,248,l), +(90,248,l), +(90,161,l) +); +}, +{ +closed = 1; +nodes = ( +(504,303,l), +(504,390,l), +(90,390,l), +(90,303,l) +); +}, +{ +closed = 1; +nodes = ( +(574,690,l), +(459,690,l), +(271,363,l), +(332,303,l) +); +} +); +width = 594; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(329,363,l), +(138,690,l), +(20,690,l), +(262,303,l) +); +}, +{ +closed = 1; +nodes = ( +(332,303,l), +(574,690,l), +(459,690,l), +(271,363,l) +); +}, +{ +closed = 1; +nodes = ( +(349,0,l), +(349,410,l), +(244,410,l), +(244,0,l) +); +}, +{ +closed = 1; +nodes = ( +(90,161,l), +(503,161,l), +(503,248,l), +(90,248,l) +); +}, +{ +closed = 1; +nodes = ( +(90,303,l), +(504,303,l), +(504,390,l), +(90,390,l) +); +} +); +width = 594; +} +); +unicode = 165; +}, +{ +color = 6; +glyphname = bulletoperator; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(206,188,o), +(255,232,o), +(255,298,cs), +(255,365,o), +(206,411,o), +(141,411,cs), +(79,411,o), +(30,365,o), +(30,298,cs), +(30,232,o), +(79,188,o), +(141,188,cs) +); +} +); +width = 285; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(148,231,o), +(175,259,o), +(175,297,cs), +(175,336,o), +(148,364,o), +(110,364,cs), +(72,364,o), +(45,336,o), +(45,297,cs), +(45,259,o), +(72,231,o), +(110,231,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(197,203,o), +(235,243,o), +(235,296,cs), +(235,352,o), +(197,392,o), +(143,392,cs), +(89,392,o), +(50,352,o), +(50,296,cs), +(50,243,o), +(89,203,o), +(143,203,cs) +); +} +); +width = 285; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(148,231,o), +(175,259,o), +(175,297,cs), +(175,336,o), +(148,364,o), +(110,364,cs), +(72,364,o), +(45,336,o), +(45,297,cs), +(45,259,o), +(72,231,o), +(110,231,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(197,203,o), +(235,243,o), +(235,296,cs), +(235,352,o), +(197,392,o), +(143,392,cs), +(89,392,o), +(50,352,o), +(50,296,cs), +(50,243,o), +(89,203,o), +(143,203,cs) +); +} +); +width = 285; +} +); +unicode = 8729; +}, +{ +color = 6; +glyphname = divisionslash; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(143,-120,l), +(343,770,l), +(200,770,l), +(0,-120,l) +); +} +); +width = 343; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(92,-120,l), +(292,770,l), +(200,770,l), +(0,-120,l) +); +} +); +width = 292; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(92,-120,l), +(292,770,l), +(200,770,l), +(0,-120,l) +); +} +); +width = 292; +} +); +unicode = 8725; +}, +{ +color = 6; +glyphname = plus; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(336,74,l), +(336,533,l), +(197,533,l), +(197,74,l) +); +}, +{ +closed = 1; +nodes = ( +(491,236,l), +(491,371,l), +(42,371,l), +(42,236,l) +); +} +); +width = 533; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(309,92,l), +(309,515,l), +(224,515,l), +(224,92,l) +); +}, +{ +closed = 1; +nodes = ( +(473,263,l), +(473,344,l), +(60,344,l), +(60,263,l) +); +} +); +width = 533; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(60,263,l), +(473,263,l), +(473,344,l), +(60,344,l) +); +}, +{ +closed = 1; +nodes = ( +(224,515,l), +(224,92,l), +(309,92,l), +(309,515,l) +); +} +); +width = 533; +} +); +unicode = 43; +}, +{ +color = 6; +glyphname = minus; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(491,236,l), +(491,371,l), +(42,371,l), +(42,236,l) +); +} +); +width = 533; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(473,263,l), +(473,344,l), +(60,344,l), +(60,263,l) +); +} +); +width = 533; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(60,263,l), +(473,263,l), +(473,344,l), +(60,344,l) +); +} +); +width = 533; +} +); +unicode = 8722; +}, +{ +color = 6; +glyphname = multiply; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(495,172,l), +(363,304,l), +(495,436,l), +(399,532,l), +(267,400,l), +(135,532,l), +(38,435,l), +(170,303,l), +(38,171,l), +(134,75,l), +(266,207,l), +(398,75,l) +); +} +); +width = 533; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(60,263,l), +(473,263,l), +(473,344,l), +(60,344,l) +); +}, +{ +closed = 1; +nodes = ( +(224,515,l), +(224,92,l), +(309,92,l), +(309,515,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(470,159,l), +(325,305,l), +(469,449,l), +(412,506,l), +(268,362,l), +(122,507,l), +(63,448,l), +(209,303,l), +(64,158,l), +(121,101,l), +(266,246,l), +(411,100,l) +); +} +); +width = 533; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(60,263,l), +(473,263,l), +(473,344,l), +(60,344,l) +); +}, +{ +closed = 1; +nodes = ( +(224,515,l), +(224,92,l), +(309,92,l), +(309,515,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(121,101,l), +(469,449,l), +(412,506,l), +(64,158,l) +); +}, +{ +closed = 1; +nodes = ( +(63,448,l), +(411,100,l), +(470,159,l), +(122,507,l) +); +} +); +width = 533; +} +); +unicode = 215; +}, +{ +color = 6; +glyphname = divide; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(491,236,l), +(491,371,l), +(42,371,l), +(42,236,l) +); +}, +{ +closed = 1; +nodes = ( +(315,55,o), +(346,85,o), +(346,129,cs), +(346,174,o), +(315,204,o), +(266,204,cs), +(217,204,o), +(186,174,o), +(186,129,cs), +(186,85,o), +(217,55,o), +(266,55,cs) +); +}, +{ +closed = 1; +nodes = ( +(315,403,o), +(346,433,o), +(346,477,cs), +(346,522,o), +(315,552,o), +(266,552,cs), +(217,552,o), +(186,522,o), +(186,477,cs), +(186,433,o), +(217,403,o), +(266,403,cs) +); +} +); +width = 533; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(473,263,l), +(473,344,l), +(60,344,l), +(60,263,l) +); +}, +{ +closed = 1; +nodes = ( +(298,82,o), +(323,105,o), +(323,138,cs), +(323,172,o), +(298,195,o), +(266,195,cs), +(234,195,o), +(209,172,o), +(209,138,cs), +(209,105,o), +(234,82,o), +(266,82,cs) +); +}, +{ +closed = 1; +nodes = ( +(298,412,o), +(323,435,o), +(323,468,cs), +(323,502,o), +(298,525,o), +(266,525,cs), +(234,525,o), +(209,502,o), +(209,468,cs), +(209,435,o), +(234,412,o), +(266,412,cs) +); +} +); +width = 533; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(60,263,l), +(473,263,l), +(473,344,l), +(60,344,l) +); +}, +{ +closed = 1; +nodes = ( +(298,412,o), +(323,435,o), +(323,468,cs), +(323,502,o), +(298,525,o), +(266,525,cs), +(234,525,o), +(209,502,o), +(209,468,cs), +(209,435,o), +(234,412,o), +(266,412,cs) +); +}, +{ +closed = 1; +nodes = ( +(298,82,o), +(323,105,o), +(323,138,cs), +(323,172,o), +(298,195,o), +(266,195,cs), +(234,195,o), +(209,172,o), +(209,138,cs), +(209,105,o), +(234,82,o), +(266,82,cs) +); +} +); +width = 533; +} +); +unicode = 247; +}, +{ +color = 6; +glyphname = equal; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(491,350,l), +(491,484,l), +(42,484,l), +(42,350,l) +); +}, +{ +closed = 1; +nodes = ( +(491,122,l), +(491,258,l), +(42,258,l), +(42,122,l) +); +} +); +width = 533; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(473,363,l), +(473,444,l), +(60,444,l), +(60,363,l) +); +}, +{ +closed = 1; +nodes = ( +(473,163,l), +(473,244,l), +(60,244,l), +(60,163,l) +); +} +); +width = 533; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(60,363,l), +(473,363,l), +(473,444,l), +(60,444,l) +); +}, +{ +closed = 1; +nodes = ( +(60,163,l), +(473,163,l), +(473,244,l), +(60,244,l) +); +} +); +width = 533; +} +); +unicode = 61; +}, +{ +color = 6; +glyphname = notequal; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(222,52,l), +(442,555,l), +(311,555,l), +(91,52,l) +); +}, +{ +closed = 1; +nodes = ( +(491,122,l), +(491,258,l), +(42,258,l), +(42,122,l) +); +}, +{ +closed = 1; +nodes = ( +(491,350,l), +(491,484,l), +(42,484,l), +(42,350,l) +); +} +); +width = 533; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(212,92,l), +(412,515,l), +(321,515,l), +(121,92,l) +); +}, +{ +closed = 1; +nodes = ( +(473,163,l), +(473,244,l), +(60,244,l), +(60,163,l) +); +}, +{ +closed = 1; +nodes = ( +(473,363,l), +(473,444,l), +(60,444,l), +(60,363,l) +); +} +); +width = 533; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(60,363,l), +(473,363,l), +(473,444,l), +(60,444,l) +); +}, +{ +closed = 1; +nodes = ( +(60,163,l), +(473,163,l), +(473,244,l), +(60,244,l) +); +}, +{ +closed = 1; +nodes = ( +(321,515,l), +(121,92,l), +(212,92,l), +(412,515,l) +); +} +); +width = 533; +} +); +unicode = 8800; +}, +{ +color = 6; +glyphname = greater; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(498,385,l), +(45,523,l), +(45,381,l), +(362,302,l), +(498,221,l) +); +}, +{ +closed = 1; +nodes = ( +(498,221,l), +(498,385,l), +(362,302,l), +(45,223,l), +(45,83,l) +); +} +); +width = 533; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(478,345,l), +(65,513,l), +(65,421,l), +(372,302,l), +(478,261,l) +); +}, +{ +closed = 1; +nodes = ( +(478,261,l), +(478,345,l), +(372,302,l), +(65,183,l), +(65,93,l) +); +} +); +width = 533; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(478,345,l), +(372,302,l), +(65,183,l), +(65,93,l), +(478,261,l) +); +}, +{ +closed = 1; +nodes = ( +(65,421,l), +(372,302,l), +(478,261,l), +(478,345,l), +(65,513,l) +); +} +); +width = 533; +} +); +unicode = 62; +}, +{ +color = 6; +glyphname = less; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(171,304,l), +(488,383,l), +(488,523,l), +(35,385,l), +(35,221,l) +); +}, +{ +closed = 1; +nodes = ( +(488,225,l), +(171,304,l), +(35,385,l), +(35,221,l), +(488,83,l) +); +} +); +width = 533; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(161,304,l), +(468,423,l), +(468,513,l), +(55,345,l), +(55,261,l) +); +}, +{ +closed = 1; +nodes = ( +(468,185,l), +(161,304,l), +(55,345,l), +(55,261,l), +(468,93,l) +); +} +); +width = 533; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(55,261,l), +(161,304,l), +(468,423,l), +(468,513,l), +(55,345,l) +); +}, +{ +closed = 1; +nodes = ( +(468,185,l), +(161,304,l), +(55,345,l), +(55,261,l), +(468,93,l) +); +} +); +width = 533; +} +); +unicode = 60; +}, +{ +color = 6; +glyphname = greaterequal; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(491,465,l), +(42,543,l), +(42,410,l), +(367,372,l), +(491,281,l) +); +}, +{ +closed = 1; +nodes = ( +(491,63,l), +(491,199,l), +(42,199,l), +(42,63,l) +); +}, +{ +closed = 1; +nodes = ( +(491,281,l), +(491,465,l), +(367,372,l), +(42,335,l), +(42,203,l) +); +} +); +width = 533; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(473,404,l), +(60,513,l), +(60,427,l), +(374,352,l), +(473,302,l) +); +}, +{ +closed = 1; +nodes = ( +(473,93,l), +(473,174,l), +(60,174,l), +(60,93,l) +); +}, +{ +closed = 1; +nodes = ( +(473,302,l), +(473,404,l), +(374,352,l), +(60,277,l), +(60,193,l) +); +} +); +width = 533; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(473,404,l), +(374,352,l), +(60,277,l), +(60,193,l), +(473,302,l) +); +}, +{ +closed = 1; +nodes = ( +(60,427,l), +(374,352,l), +(473,302,l), +(473,404,l), +(60,513,l) +); +}, +{ +closed = 1; +nodes = ( +(60,93,l), +(473,93,l), +(473,174,l), +(60,174,l) +); +} +); +width = 533; +} +); +unicode = 8805; +}, +{ +color = 6; +glyphname = lessequal; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(166,374,l), +(491,411,l), +(491,543,l), +(42,465,l), +(42,281,l) +); +}, +{ +closed = 1; +nodes = ( +(491,63,l), +(491,199,l), +(42,199,l), +(42,63,l) +); +}, +{ +closed = 1; +nodes = ( +(491,336,l), +(166,374,l), +(42,465,l), +(42,281,l), +(491,203,l) +); +} +); +width = 533; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(159,354,l), +(473,429,l), +(473,513,l), +(60,404,l), +(60,302,l) +); +}, +{ +closed = 1; +nodes = ( +(473,93,l), +(473,174,l), +(60,174,l), +(60,93,l) +); +}, +{ +closed = 1; +nodes = ( +(473,279,l), +(159,354,l), +(60,404,l), +(60,302,l), +(473,193,l) +); +} +); +width = 533; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(60,302,l), +(159,354,l), +(473,429,l), +(473,513,l), +(60,404,l) +); +}, +{ +closed = 1; +nodes = ( +(473,279,l), +(159,354,l), +(60,404,l), +(60,302,l), +(473,193,l) +); +}, +{ +closed = 1; +nodes = ( +(60,93,l), +(473,93,l), +(473,174,l), +(60,174,l) +); +} +); +width = 533; +} +); +unicode = 8804; +}, +{ +color = 6; +glyphname = plusminus; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(491,322,l), +(491,458,l), +(42,458,l), +(42,322,l) +); +}, +{ +closed = 1; +nodes = ( +(491,44,l), +(491,179,l), +(42,179,l), +(42,44,l) +); +}, +{ +closed = 1; +nodes = ( +(336,220,l), +(336,560,l), +(197,560,l), +(197,220,l) +); +} +); +width = 533; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(473,318,l), +(473,399,l), +(60,399,l), +(60,318,l) +); +}, +{ +closed = 1; +nodes = ( +(473,62,l), +(473,143,l), +(60,143,l), +(60,62,l) +); +}, +{ +closed = 1; +nodes = ( +(309,202,l), +(309,515,l), +(224,515,l), +(224,202,l) +); +} +); +width = 533; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(60,318,l), +(473,318,l), +(473,399,l), +(60,399,l) +); +}, +{ +closed = 1; +nodes = ( +(224,515,l), +(224,202,l), +(309,202,l), +(309,515,l) +); +}, +{ +closed = 1; +nodes = ( +(60,62,l), +(473,62,l), +(473,143,l), +(60,143,l) +); +} +); +width = 533; +} +); +unicode = 177; +}, +{ +color = 6; +glyphname = approxequal; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(412,333,o), +(450,341,o), +(491,353,c), +(491,484,l), +(450,472,o), +(412,464,o), +(371,464,c), +(291,464,o), +(242,504,o), +(162,504,c), +(121,504,o), +(83,496,o), +(42,484,c), +(42,353,l), +(83,365,o), +(121,373,o), +(162,373,c), +(242,373,o), +(291,333,o), +(371,333,c) +); +}, +{ +closed = 1; +nodes = ( +(412,103,o), +(450,111,o), +(491,123,c), +(491,254,l), +(450,242,o), +(412,234,o), +(371,234,c), +(291,234,o), +(242,274,o), +(162,274,c), +(121,274,o), +(83,266,o), +(42,254,c), +(42,123,l), +(83,135,o), +(121,143,o), +(162,143,c), +(242,143,o), +(291,103,o), +(371,103,c) +); +} +); +width = 533; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(405,343,o), +(439,351,o), +(473,363,c), +(473,444,l), +(439,432,o), +(405,424,o), +(371,424,c), +(291,424,o), +(242,464,o), +(162,464,c), +(128,464,o), +(94,456,o), +(60,444,c), +(60,363,l), +(94,375,o), +(128,383,o), +(162,383,c), +(242,383,o), +(291,343,o), +(371,343,c) +); +}, +{ +closed = 1; +nodes = ( +(405,143,o), +(439,151,o), +(473,163,c), +(473,244,l), +(439,232,o), +(405,224,o), +(371,224,c), +(291,224,o), +(242,264,o), +(162,264,c), +(128,264,o), +(94,256,o), +(60,244,c), +(60,163,l), +(94,175,o), +(128,183,o), +(162,183,c), +(242,183,o), +(291,143,o), +(371,143,c) +); +} +); +width = 533; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(60,363,l), +(94,375,o), +(128,383,o), +(162,383,c), +(242,383,o), +(291,343,o), +(371,343,c), +(405,343,o), +(439,351,o), +(473,363,c), +(473,444,l), +(439,432,o), +(405,424,o), +(371,424,c), +(291,424,o), +(242,464,o), +(162,464,c), +(128,464,o), +(94,456,o), +(60,444,c) +); +}, +{ +closed = 1; +nodes = ( +(60,163,l), +(94,175,o), +(128,183,o), +(162,183,c), +(242,183,o), +(291,143,o), +(371,143,c), +(405,143,o), +(439,151,o), +(473,163,c), +(473,244,l), +(439,232,o), +(405,224,o), +(371,224,c), +(291,224,o), +(242,264,o), +(162,264,c), +(128,264,o), +(94,256,o), +(60,244,c) +); +} +); +width = 533; +} +); +unicode = 8776; +}, +{ +color = 6; +glyphname = asciitilde; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(129,277,l), +(131,320,o), +(141,336,o), +(173,336,c), +(223,336,o), +(260,277,o), +(340,277,c), +(428,277,o), +(483,356,o), +(481,475,c), +(367,475,l), +(365,432,o), +(355,416,o), +(323,416,c), +(276,416,o), +(238,475,o), +(156,475,c), +(67,475,o), +(13,396,o), +(15,277,c) +); +} +); +width = 496; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(121,295,l), +(123,348,o), +(138,372,o), +(173,372,c), +(221,372,o), +(254,295,o), +(332,295,c), +(408,295,o), +(455,357,o), +(453,455,c), +(379,455,l), +(377,402,o), +(362,378,o), +(327,378,c), +(281,378,o), +(247,455,o), +(168,455,c), +(92,455,o), +(45,393,o), +(47,295,c) +); +} +); +width = 500; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(408,295,o), +(455,357,o), +(453,455,c), +(379,455,l), +(377,402,o), +(362,378,o), +(327,378,c), +(281,378,o), +(247,455,o), +(168,455,c), +(92,455,o), +(45,393,o), +(47,295,c), +(121,295,l), +(123,348,o), +(138,372,o), +(173,372,c), +(221,372,o), +(254,295,o), +(332,295,c) +); +} +); +width = 500; +} +); +unicode = 126; +}, +{ +color = 6; +glyphname = logicalnot; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(491,236,l), +(491,371,l), +(42,371,l), +(42,236,l) +); +}, +{ +closed = 1; +nodes = ( +(491,74,l), +(491,371,l), +(352,371,l), +(352,74,l) +); +} +); +width = 533; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(473,263,l), +(473,344,l), +(60,344,l), +(60,263,l) +); +}, +{ +closed = 1; +nodes = ( +(473,92,l), +(473,344,l), +(388,344,l), +(388,92,l) +); +} +); +width = 533; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(60,263,l), +(473,263,l), +(473,344,l), +(60,344,l) +); +}, +{ +closed = 1; +nodes = ( +(388,344,l), +(388,92,l), +(473,92,l), +(473,344,l) +); +} +); +width = 533; +} +); +unicode = 172; +}, +{ +color = 6; +glyphname = asciicircum; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(480,277,l), +(326,690,l), +(174,690,l), +(251,537,l), +(336,277,l) +); +}, +{ +closed = 1; +nodes = ( +(166,278,l), +(251,537,l), +(326,690,l), +(174,690,l), +(20,278,l) +); +} +); +width = 500; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(450,277,l), +(282,690,l), +(198,690,l), +(241,584,l), +(360,277,l) +); +}, +{ +closed = 1; +nodes = ( +(122,278,l), +(241,584,l), +(282,690,l), +(198,690,l), +(30,278,l) +); +} +); +width = 480; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(198,690,l), +(241,584,l), +(360,277,l), +(450,277,l), +(282,690,l) +); +}, +{ +closed = 1; +nodes = ( +(122,278,l), +(241,584,l), +(282,690,l), +(198,690,l), +(30,278,l) +); +} +); +width = 480; +} +); +unicode = 94; +}, +{ +color = 6; +glyphname = infinity; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(699,120,o), +(774,201,o), +(774,303,c), +(774,405,o), +(699,486,o), +(594,486,c), +(390,486,o), +(395,196,o), +(249,196,cs), +(194,196,o), +(151,242,o), +(151,303,c), +(151,364,o), +(193.829,410,o), +(249,410,c), +(395,410,o), +(380,120,o), +(594,120,c) +); +}, +{ +closed = 1; +nodes = ( +(140,486,o), +(65,405,o), +(65,303,c), +(65,201,o), +(140,120,o), +(244,120,c), +(449,120,o), +(444,410,o), +(589,410,cs), +(645,410,o), +(688,364,o), +(688,303,c), +(688,242,o), +(645,196,o), +(589,196,c), +(444,196,o), +(459,486,o), +(244,486,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(730,100,o), +(814,190,o), +(814,303,c), +(814,416,o), +(730,506,o), +(611,506,c), +(386,506,o), +(398,226,o), +(255,226,cs), +(214,226,o), +(181,259,o), +(181,303,c), +(181,347,o), +(214,380,o), +(255,380,c), +(398,380,o), +(376,100,o), +(611,100,c) +); +}, +{ +closed = 1; +nodes = ( +(473,100,o), +(461,380,o), +(603,380,cs), +(645,380,o), +(678,347,o), +(678,303,c), +(678,259,o), +(645,226,o), +(603,226,c), +(461,226,o), +(483,506,o), +(247,506,c), +(129,506,o), +(45,416,o), +(45,303,c), +(45,190,o), +(129,100,o), +(247,100,c) +); +} +); +width = 859; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(464,405,o), +(388.844,486,o), +(279,486,cs), +(170.22,486,o), +(95,405,o), +(95,303,c), +(95,201,o), +(170.22,120,o), +(279,120,cs), +(388.844,120,o), +(464,201,o), +(464,303,c) +); +}, +{ +closed = 1; +nodes = ( +(181,364,o), +(223.829,410,o), +(279,410,cs), +(335.319,410,o), +(378,364,o), +(378,303,c), +(378,242,o), +(335.319,196,o), +(279,196,cs), +(223.829,196,o), +(181,242,o), +(181,303,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(699,120,o), +(774,201,o), +(774,303,c), +(774,405,o), +(699,486,o), +(594,486,c), +(390,486,o), +(395,196,o), +(249,196,cs), +(194,196,o), +(151,242,o), +(151,303,c), +(151,364,o), +(194,410,o), +(249,410,c), +(395,410,o), +(380,120,o), +(594,120,c) +); +}, +{ +closed = 1; +nodes = ( +(449,120,o), +(444,410,o), +(589,410,cs), +(645,410,o), +(688,364,o), +(688,303,c), +(688,242,o), +(645,196,o), +(589,196,c), +(444,196,o), +(459,486,o), +(244,486,c), +(140,486,o), +(65,405,o), +(65,303,c), +(65,201,o), +(140,120,o), +(244,120,c) +); +} +); +width = 839; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(464,405,o), +(388.844,486,o), +(279,486,cs), +(170.22,486,o), +(95,405,o), +(95,303,c), +(95,201,o), +(170.22,120,o), +(279,120,cs), +(388.844,120,o), +(464,201,o), +(464,303,c) +); +}, +{ +closed = 1; +nodes = ( +(181,364,o), +(223.829,410,o), +(279,410,cs), +(335.319,410,o), +(378,364,o), +(378,303,c), +(378,242,o), +(335.319,196,o), +(279,196,cs), +(223.829,196,o), +(181,242,o), +(181,303,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(699,120,o), +(774,201,o), +(774,303,c), +(774,405,o), +(699,486,o), +(594,486,c), +(390,486,o), +(395,196,o), +(249,196,cs), +(194,196,o), +(151,242,o), +(151,303,c), +(151,364,o), +(193.829,410,o), +(249,410,c), +(395,410,o), +(380,120,o), +(594,120,c) +); +}, +{ +closed = 1; +nodes = ( +(140,486,o), +(65,405,o), +(65,303,c), +(65,201,o), +(140,120,o), +(244,120,c), +(449,120,o), +(444,410,o), +(589,410,cs), +(645,410,o), +(688,364,o), +(688,303,c), +(688,242,o), +(645,196,o), +(589,196,c), +(444,196,o), +(459,486,o), +(244,486,c) +); +} +); +width = 839; +} +); +unicode = 8734; +}, +{ +color = 6; +glyphname = integral; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(220,582,o), +(245,603,o), +(291,603,c), +(317,603,o), +(340,598,o), +(364,592,c), +(364,715,l), +(332,724,o), +(301,730,o), +(260,730,c), +(143,730,o), +(71,665,o), +(71,536,c), +(71,0,l), +(220,0,l), +(220,541,l) +); +}, +{ +closed = 1; +nodes = ( +(358,407,l), +(358,530,l), +(5,530,l), +(5,407,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(112,-189,o), +(194,-143,o), +(221,-14,cs), +(339,541,ls), +(348,582,o), +(374,603,o), +(415,603,c), +(443,603,o), +(467,597,o), +(488,589,c), +(514,712,l), +(485,723,o), +(445,729,o), +(405,729,c), +(302,729,o), +(220,683,o), +(193,554,cs), +(75,-1,ls), +(66,-42,o), +(40,-63,o), +(-1,-63,c), +(-29,-63,o), +(-53,-57,o), +(-74,-49,c), +(-100,-172,l), +(-71,-183,o), +(-31,-189,o), +(9,-189,c) +); +} +); +width = 504; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(100,-185,o), +(165,-138,o), +(190,-21,c), +(313,557,ls), +(324,610,o), +(355,636,o), +(403,636,c), +(426,636,o), +(446,630,o), +(466,621,c), +(484,708,l), +(458,718,o), +(430,725,o), +(398,725,c), +(304,725,o), +(239,678,o), +(214,561,cs), +(91,-17,l), +(80,-70,o), +(49,-96,o), +(1,-96,c), +(-22,-96,o), +(-42,-90,o), +(-62,-81,c), +(-80,-168,l), +(-54,-178,o), +(-26,-185,o), +(6,-185,c) +); +} +); +width = 484; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(313,557,ls), +(324,610,o), +(355,636,o), +(403,636,c), +(426,636,o), +(446,630,o), +(466,621,c), +(484,708,l), +(458,718,o), +(430,725,o), +(398,725,c), +(304,725,o), +(239,678,o), +(214,561,cs), +(91,-17,l), +(80,-70,o), +(49,-96,o), +(1,-96,c), +(-22,-96,o), +(-42,-90,o), +(-62,-81,c), +(-80,-168,l), +(-54,-178,o), +(-26,-185,o), +(6,-185,c), +(100,-185,o), +(165,-138,o), +(190,-21,c) +); +} +); +width = 484; +} +); +unicode = 8747; +}, +{ +color = 6; +glyphname = ohm; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(325,294,l), +(253,301,o), +(198,347,o), +(198,422,cs), +(198,504,o), +(261,558,o), +(355,558,c), +(449,558,o), +(512,504,o), +(512,422,cs), +(512,347,o), +(457,301,o), +(385,294,c), +(385,173,l), +(572,185,o), +(670,286,o), +(670,425,cs), +(670,589,o), +(543,704,o), +(355,704,c), +(167,704,o), +(40,589,o), +(40,425,cs), +(40,286,o), +(138,185,o), +(325,173,c) +); +}, +{ +closed = 1; +nodes = ( +(325,0,l), +(325,147,l), +(40,147,l), +(40,0,l) +); +}, +{ +closed = 1; +nodes = ( +(325,0,l), +(325,225,l), +(200,225,l), +(200,0,l) +); +}, +{ +closed = 1; +nodes = ( +(510,0,l), +(510,225,l), +(385,225,l), +(385,0,l) +); +}, +{ +closed = 1; +nodes = ( +(670,0,l), +(670,147,l), +(385,147,l), +(385,0,l) +); +} +); +width = 710; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(300,205,l), +(210,228,o), +(146,298,o), +(146,412,cs), +(146,521,o), +(224,593,o), +(345,593,c), +(466,593,o), +(544,521,o), +(544,412,cs), +(544,298,o), +(480,228,o), +(390,205,c), +(390,128,l), +(536,153,o), +(650,256,o), +(650,415,cs), +(650,585,o), +(527,700,o), +(345,700,c), +(163,700,o), +(40,585,o), +(40,415,cs), +(40,256,o), +(154,153,o), +(300,128,c) +); +}, +{ +closed = 1; +nodes = ( +(300,0,l), +(300,96,l), +(40,96,l), +(40,0,l) +); +}, +{ +closed = 1; +nodes = ( +(300,0,l), +(300,180,l), +(200,180,l), +(200,0,l) +); +}, +{ +closed = 1; +nodes = ( +(490,0,l), +(490,180,l), +(390,180,l), +(390,0,l) +); +}, +{ +closed = 1; +nodes = ( +(650,0,l), +(650,96,l), +(390,96,l), +(390,0,l) +); +} +); +width = 690; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(650,0,l), +(650,96,l), +(390,96,l), +(390,0,l) +); +}, +{ +closed = 1; +nodes = ( +(490,180,l), +(390,180,l), +(390,0,l), +(490,0,l) +); +}, +{ +closed = 1; +nodes = ( +(466,593,o), +(544,521,o), +(544,412,cs), +(544,298,o), +(480,228.1,o), +(390,205,c), +(390,128,l), +(536,152.866,o), +(650,256.477,o), +(650,415,cs), +(650,585,o), +(527,700,o), +(345,700,c), +(163,700,o), +(40,585,o), +(40,415,cs), +(40,256.477,o), +(154,152.866,o), +(300,128,c), +(300,205,l), +(210,228.1,o), +(146,298,o), +(146,412,cs), +(146,521,o), +(224,593,o), +(345,593,c) +); +}, +{ +closed = 1; +nodes = ( +(300,96,l), +(40,96,l), +(40,0,l), +(300,0,l) +); +}, +{ +closed = 1; +nodes = ( +(300,0,l), +(300,180,l), +(200,180,l), +(200,0,l) +); +} +); +width = 690; +} +); +unicode = 8486; +}, +{ +color = 6; +glyphname = increment; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(672,0,l), +(451,690,l), +(296,690,l), +(506,0,l) +); +}, +{ +closed = 1; +nodes = ( +(543,0,l), +(543,141,l), +(125,141,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(160,0,l), +(364,690,l), +(218,690,l), +(-3,0,l) +); +} +); +width = 668; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(642,0,l), +(403,690,l), +(301,690,l), +(532,0,l) +); +}, +{ +closed = 1; +nodes = ( +(561,0,l), +(561,96,l), +(93,96,l), +(93,0,l) +); +}, +{ +closed = 1; +nodes = ( +(119,0,l), +(345,690,l), +(251,690,l), +(12,0,l) +); +} +); +width = 654; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(93,0,l), +(561,0,l), +(561,96,l), +(93,96,l) +); +}, +{ +closed = 1; +nodes = ( +(301,690,l), +(532,0,l), +(642,0,l), +(403,690,l) +); +}, +{ +closed = 1; +nodes = ( +(251,690,l), +(12,0,l), +(119,0,l), +(345,690,l) +); +} +); +width = 654; +} +); +unicode = 8710; +}, +{ +color = 6; +glyphname = product; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(588,-175,l), +(588,690,l), +(434,690,l), +(434,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(252,-175,l), +(252,690,l), +(97,690,l), +(97,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(670,545,l), +(670,690,l), +(15,690,l), +(15,545,l) +); +} +); +width = 685; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(560,-175,l), +(560,690,l), +(455,690,l), +(455,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(230,-175,l), +(230,690,l), +(125,690,l), +(125,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(660,594,l), +(660,690,l), +(25,690,l), +(25,594,l) +); +} +); +width = 685; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(230,-175,l), +(230,690,l), +(125,690,l), +(125,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(25,594,l), +(660,594,l), +(660,690,l), +(25,690,l) +); +}, +{ +closed = 1; +nodes = ( +(560,-175,l), +(560,690,l), +(455,690,l), +(455,-175,l) +); +} +); +width = 685; +} +); +unicode = 8719; +}, +{ +color = 6; +glyphname = summation; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(202,-72,l), +(440,209,l), +(440,312,l), +(208,587,l), +(23,587,l), +(333,220,l), +(333,295,l), +(23,-72,l) +); +}, +{ +closed = 1; +nodes = ( +(590,-175,l), +(590,-35,l), +(81,-35,l), +(23,-72,l), +(23,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(590,550,l), +(590,690,l), +(23,690,l), +(23,587,l), +(81,550,l) +); +} +); +width = 613; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(152,-123,l), +(415,235,l), +(415,287,l), +(157,638,l), +(30,638,l), +(324,238,l), +(324,277,l), +(30,-123,l) +); +}, +{ +closed = 1; +nodes = ( +(580,-175,l), +(580,-79,l), +(70,-79,l), +(30,-123,l), +(30,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(580,594,l), +(580,690,l), +(30,690,l), +(30,638,l), +(70,594,l) +); +} +); +width = 610; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(30,-175,l), +(580,-175,l), +(580,-79,l), +(70,-79,l), +(30,-123,l) +); +}, +{ +closed = 1; +nodes = ( +(70,594,l), +(580,594,l), +(580,690,l), +(30,690,l), +(30,638,l) +); +}, +{ +closed = 1; +nodes = ( +(415,287,l), +(157,638,l), +(30,638,l), +(324,238,l), +(324,277,l), +(30,-123,l), +(152,-123,l), +(415,235,l) +); +} +); +width = 610; +} +); +unicode = 8721; +}, +{ +color = 6; +glyphname = radical; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(446,0,l), +(637,690,l), +(480,690,l), +(309,0,l) +); +}, +{ +closed = 1; +nodes = ( +(358,0,l), +(224,530,l), +(63,530,l), +(212,0,l) +); +}, +{ +closed = 1; +nodes = ( +(160,407,l), +(160,530,l), +(5,530,l), +(5,407,l) +); +} +); +width = 637; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(379,0,l), +(597,690,l), +(496,690,l), +(286,0,l) +); +}, +{ +closed = 1; +nodes = ( +(326,0,l), +(161,530,l), +(56,530,l), +(225,0,l) +); +}, +{ +closed = 1; +nodes = ( +(133,443,l), +(133,530,l), +(5,530,l), +(5,443,l) +); +} +); +width = 602; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(326,0,l), +(161,530,l), +(56,530,l), +(225,0,l) +); +}, +{ +closed = 1; +nodes = ( +(379,0,l), +(597,690,l), +(496,690,l), +(286,0,l) +); +}, +{ +closed = 1; +nodes = ( +(5,443,l), +(133,443,l), +(133,530,l), +(5,530,l) +); +} +); +width = 602; +} +); +unicode = 8730; +}, +{ +color = 6; +glyphname = mu.math; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(400,530,l), +(400,0,l), +(500,0,l), +(500,530,l) +); +}, +{ +closed = 1; +nodes = ( +(160,530,l), +(60,530,l), +(60,-175,l), +(160,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(134,70,o), +(191,-10,o), +(278,-10,c), +(366,-10,o), +(429,79,o), +(429,221,c), +(400,221,l), +(400,127,o), +(347,78,o), +(280,78,c), +(213,78,o), +(160,127,o), +(160,221,c), +(134,198,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(202,-175,l), +(202,530,l), +(53,530,l), +(53,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(355,-14,o), +(400,73,o), +(400,226,c), +(384,226,l), +(384,155,o), +(346,118,o), +(293,118,c), +(240,118,o), +(202,155,o), +(202,226,c), +(183,196,l), +(183,64,o), +(224,-14,o), +(289,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(533,0,l), +(533,530,l), +(384,530,l), +(384,0,l) +); +} +); +width = 586; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,-175,l), +(165,530,l), +(65,530,l), +(65,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(371,-10,o), +(434,79,o), +(434,221,c), +(405,221,l), +(405,127,o), +(352,78,o), +(285,78,c), +(218,78,o), +(165,127,o), +(165,221,c), +(139,198,l), +(139,70,o), +(196,-10,o), +(283,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +} +); +width = 570; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(405,530,l), +(405,0,l), +(505,0,l), +(505,530,l) +); +}, +{ +closed = 1; +nodes = ( +(165,530,l), +(65,530,l), +(65,-175,l), +(165,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(139,70,o), +(196,-10,o), +(283,-10,c), +(371,-10,o), +(434,79,o), +(434,221,c), +(405,221,l), +(405,127,o), +(352,78,o), +(285,78,c), +(218,78,o), +(165,127,o), +(165,221,c), +(139,198,l) +); +} +); +width = 570; +} +); +unicode = 181; +}, +{ +color = 6; +glyphname = partialdiff; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(222,346,o), +(161,273,o), +(161,189,c), +(161,131,o), +(198,85,o), +(274,85,c), +(360,85,o), +(443,160,o), +(443,243,cs), +(443,300,o), +(395,346,o), +(319,346,c) +); +}, +{ +closed = 1; +nodes = ( +(473.839,330.936,o), +(493,412,o), +(493,466,c), +(493,553,o), +(452,603,o), +(377,603,c), +(338,603,o), +(293,588,o), +(251,557,c), +(206,641,l), +(263,679,o), +(325,700,o), +(386,700,c), +(524,700,o), +(597,618,o), +(597,463,c), +(597,192,o), +(467,-10,o), +(263,-10,c), +(134,-10,o), +(56,72,o), +(56,178,c), +(56,323,o), +(175,437,o), +(308,437,c), +(407,437,o), +(473,383,o), +(473,294,cs), +(473,282,o), +(470,274,o), +(468,261,c), +(461,286,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(475,-14,o), +(616,179,o), +(616,450,c), +(616,615,o), +(512,704,o), +(374,704,c), +(295,704,o), +(223,679,o), +(164,641,c), +(229,522,l), +(274,549,o), +(321,563,o), +(356,563,c), +(418,563,o), +(461,523,o), +(461,450,c), +(461,412,o), +(448,340,o), +(429,286,c), +(448,263,l), +(450,276,o), +(451,282,o), +(451,294,cs), +(451,366,o), +(378,441,o), +(272,441,c), +(121,441,o), +(20,328,o), +(20,191,c), +(20,77,o), +(108,-14,o), +(256,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(207,115,o), +(174,152,o), +(174,207,c), +(174,262,o), +(216,316,o), +(302,316,c), +(369,316,o), +(411,279,o), +(411,228,c), +(411,163,o), +(350,115,o), +(272,115,c) +); +} +); +width = 636; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(225.332,344,o), +(155,270.772,o), +(155,185,cs), +(155,129,o), +(194,85,o), +(267,85,c), +(351,85,o), +(424,143,o), +(440,218,c), +(442,227,o), +(443,235,o), +(443,243,cs), +(443,300,o), +(398,344,o), +(327,344,c) +); +}, +{ +closed = 1; +nodes = ( +(467,307,o), +(473,331,o), +(481,365,c), +(489,404,o), +(493,438,o), +(493,467,cs), +(493,561,o), +(452,604,o), +(377,604,c), +(335,604,o), +(290,587,o), +(256,556,c), +(206,641,l), +(263,679,o), +(322,700,o), +(383,700,c), +(521,700,o), +(597,618,o), +(597,463,cs), +(597,422,o), +(592,376,o), +(581,325,c), +(532,96,o), +(409,-10,o), +(255,-10,c), +(125,-10,o), +(50,70,o), +(50,174,cs), +(50,321,o), +(177,437,o), +(315,437,c), +(404,437,o), +(472,391,o), +(472,297,cs), +(472,285,o), +(471,274,o), +(469,261,c), +(461,286,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(467,-10,o), +(597,192,o), +(597,463,c), +(597,618,o), +(524,700,o), +(386,700,c), +(325,700,o), +(263,679,o), +(206,641,c), +(251,557,l), +(293,588,o), +(338,603,o), +(377,603,c), +(452,603,o), +(493,553,o), +(493,466,c), +(493,412,o), +(474,331,o), +(461,286,c), +(468,261,l), +(470,274,o), +(473,282,o), +(473,294,cs), +(473,383,o), +(407,437,o), +(308,437,c), +(175,437,o), +(56,323,o), +(56,178,c), +(56,72,o), +(134,-10,o), +(263,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(198,85,o), +(161,131,o), +(161,189,c), +(161,273,o), +(222,346,o), +(319,346,c), +(395,346,o), +(443,300,o), +(443,243,cs), +(443,160,o), +(360,85,o), +(274,85,c) +); +} +); +width = 587; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(225.332,344,o), +(155,270.772,o), +(155,185,cs), +(155,129,o), +(194,85,o), +(267,85,c), +(351,85,o), +(424,143,o), +(440,218,c), +(442,227,o), +(443,235,o), +(443,243,cs), +(443,300,o), +(398,344,o), +(327,344,c) +); +}, +{ +closed = 1; +nodes = ( +(467,307,o), +(473,331,o), +(481,365,c), +(489,404,o), +(493,438,o), +(493,467,cs), +(493,561,o), +(452,604,o), +(377,604,c), +(335,604,o), +(290,587,o), +(256,556,c), +(206,641,l), +(263,679,o), +(322,700,o), +(383,700,c), +(521,700,o), +(597,618,o), +(597,463,cs), +(597,422,o), +(592,376,o), +(581,325,c), +(532,96,o), +(409,-10,o), +(255,-10,c), +(125,-10,o), +(50,70,o), +(50,174,cs), +(50,321,o), +(177,437,o), +(315,437,c), +(404,437,o), +(472,391,o), +(472,297,cs), +(472,285,o), +(471,274,o), +(469,261,c), +(461,286,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(222,346,o), +(161,273,o), +(161,189,c), +(161,131,o), +(198,85,o), +(274,85,c), +(360,85,o), +(443,160,o), +(443,243,cs), +(443,300,o), +(395,346,o), +(319,346,c) +); +}, +{ +closed = 1; +nodes = ( +(473.839,330.936,o), +(493,412,o), +(493,466,c), +(493,553,o), +(452,603,o), +(377,603,c), +(338,603,o), +(293,588,o), +(251,557,c), +(206,641,l), +(263,679,o), +(325,700,o), +(386,700,c), +(524,700,o), +(597,618,o), +(597,463,c), +(597,192,o), +(467,-10,o), +(263,-10,c), +(134,-10,o), +(56,72,o), +(56,178,c), +(56,323,o), +(175,437,o), +(308,437,c), +(407,437,o), +(473,383,o), +(473,294,cs), +(473,282,o), +(470,274,o), +(468,261,c), +(461,286,l) +); +} +); +width = 587; +} +); +unicode = 8706; +}, +{ +color = 6; +glyphname = percent; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(359,633,o), +(294,700,o), +(199,700,cs), +(105,700,o), +(40,633,o), +(40,537,c), +(40,441,o), +(105,374,o), +(199,374,cs), +(294,374,o), +(359,441,o), +(359,537,c) +); +}, +{ +closed = 1; +nodes = ( +(127,592,o), +(158,624,o), +(199,624,cs), +(241,624,o), +(272,592,o), +(272,537,c), +(272,482,o), +(241,450,o), +(199,450,cs), +(158,450,o), +(127,482,o), +(127,537,c) +); +}, +{ +closed = 1; +nodes = ( +(699,249,o), +(634,316,o), +(539,316,cs), +(445,316,o), +(380,249,o), +(380,153,c), +(380,57,o), +(445,-10,o), +(539,-10,cs), +(634,-10,o), +(699,57,o), +(699,153,c) +); +}, +{ +closed = 1; +nodes = ( +(467,208,o), +(498,240,o), +(539,240,cs), +(581,240,o), +(612,208,o), +(612,153,c), +(612,98,o), +(581,66,o), +(539,66,cs), +(498,66,o), +(467,98,o), +(467,153,c) +); +}, +{ +closed = 1; +nodes = ( +(203,0,l), +(639,690,l), +(536,690,l), +(100,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(256,0,l), +(682,690,l), +(538,690,l), +(112,0,l) +); +}, +{ +closed = 1; +nodes = ( +(693,-14,o), +(764,54,o), +(764,153,c), +(764,252,o), +(693,320,o), +(592,320,cs), +(492,320,o), +(421,252,o), +(421,153,c), +(421,54,o), +(492,-14,o), +(592,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(561,91,o), +(537,114,o), +(537,153,c), +(537,192,o), +(561,215,o), +(592,215,cs), +(624,215,o), +(648,192,o), +(648,153,c), +(648,114,o), +(624,91,o), +(592,91,cs) +); +}, +{ +closed = 1; +nodes = ( +(302,370,o), +(373,438,o), +(373,537,c), +(373,636,o), +(302,704,o), +(201,704,cs), +(101,704,o), +(30,636,o), +(30,537,c), +(30,438,o), +(101,370,o), +(201,370,cs) +); +}, +{ +closed = 1; +nodes = ( +(170,475,o), +(146,498,o), +(146,537,c), +(146,576,o), +(170,599,o), +(201,599,cs), +(233,599,o), +(257,576,o), +(257,537,c), +(257,498,o), +(233,475,o), +(201,475,cs) +); +} +); +width = 794; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(203,0,l), +(639,690,l), +(536,690,l), +(100,0,l) +); +}, +{ +closed = 1; +nodes = ( +(634,-10,o), +(699,57,o), +(699,153,cs), +(699,249,o), +(634,316,o), +(539,316,cs), +(445,316,o), +(380,249,o), +(380,153,cs), +(380,57,o), +(445,-10,o), +(539,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(498,66,o), +(467,98,o), +(467,153,cs), +(467,208,o), +(498,240,o), +(539,240,cs), +(581,240,o), +(612,208,o), +(612,153,cs), +(612,98,o), +(581,66,o), +(539,66,cs) +); +}, +{ +closed = 1; +nodes = ( +(294,374,o), +(359,441,o), +(359,537,cs), +(359,633,o), +(294,700,o), +(199,700,cs), +(105,700,o), +(40,633,o), +(40,537,cs), +(40,441,o), +(105,374,o), +(199,374,cs) +); +}, +{ +closed = 1; +nodes = ( +(158,450,o), +(127,482,o), +(127,537,cs), +(127,592,o), +(158,624,o), +(199,624,cs), +(241,624,o), +(272,592,o), +(272,537,cs), +(272,482,o), +(241,450,o), +(199,450,cs) +); +} +); +width = 739; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(359,633,o), +(294,700,o), +(199,700,cs), +(105,700,o), +(40,633,o), +(40,537,c), +(40,441,o), +(105,374,o), +(199,374,cs), +(294,374,o), +(359,441,o), +(359,537,c) +); +}, +{ +closed = 1; +nodes = ( +(127,592,o), +(158,624,o), +(199,624,cs), +(241,624,o), +(272,592,o), +(272,537,c), +(272,482,o), +(241,450,o), +(199,450,cs), +(158,450,o), +(127,482,o), +(127,537,c) +); +}, +{ +closed = 1; +nodes = ( +(699,249,o), +(634,316,o), +(539,316,cs), +(445,316,o), +(380,249,o), +(380,153,c), +(380,57,o), +(445,-10,o), +(539,-10,cs), +(634,-10,o), +(699,57,o), +(699,153,c) +); +}, +{ +closed = 1; +nodes = ( +(467,208,o), +(498,240,o), +(539,240,cs), +(581,240,o), +(612,208,o), +(612,153,c), +(612,98,o), +(581,66,o), +(539,66,cs), +(498,66,o), +(467,98,o), +(467,153,c) +); +}, +{ +closed = 1; +nodes = ( +(203,0,l), +(639,690,l), +(536,690,l), +(100,0,l) +); +} +); +width = 739; +} +); +unicode = 37; +}, +{ +color = 6; +glyphname = perthousand; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(359,633,o), +(294,700,o), +(199,700,cs), +(105,700,o), +(40,633,o), +(40,537,c), +(40,441,o), +(105,374,o), +(199,374,cs), +(294,374,o), +(359,441,o), +(359,537,c) +); +}, +{ +closed = 1; +nodes = ( +(127,592,o), +(158,624,o), +(199,624,cs), +(241,624,o), +(272,592,o), +(272,537,c), +(272,482,o), +(241,450,o), +(199,450,cs), +(158,450,o), +(127,482,o), +(127,537,c) +); +}, +{ +closed = 1; +nodes = ( +(699,249,o), +(634,316,o), +(539,316,cs), +(445,316,o), +(380,249,o), +(380,153,c), +(380,57,o), +(445,-10,o), +(539,-10,cs), +(634,-10,o), +(699,57,o), +(699,153,c) +); +}, +{ +closed = 1; +nodes = ( +(467,208,o), +(498,240,o), +(539,240,cs), +(581,240,o), +(612,208,o), +(612,153,c), +(612,98,o), +(581,66,o), +(539,66,cs), +(498,66,o), +(467,98,o), +(467,153,c) +); +}, +{ +closed = 1; +nodes = ( +(203,0,l), +(639,690,l), +(536,690,l), +(100,0,l) +); +}, +{ +closed = 1; +nodes = ( +(1049,249,o), +(984,316,o), +(889,316,cs), +(795,316,o), +(730,249,o), +(730,153,c), +(730,57,o), +(795,-10,o), +(889,-10,cs), +(984,-10,o), +(1049,57,o), +(1049,153,c) +); +}, +{ +closed = 1; +nodes = ( +(817,208,o), +(848,240,o), +(889,240,cs), +(931,240,o), +(962,208,o), +(962,153,c), +(962,98,o), +(931,66,o), +(889,66,cs), +(848,66,o), +(817,98,o), +(817,153,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(256,0,l), +(682,690,l), +(538,690,l), +(112,0,l) +); +}, +{ +closed = 1; +nodes = ( +(693,-14,o), +(764,54,o), +(764,153,c), +(764,252,o), +(693,320,o), +(592,320,cs), +(492,320,o), +(421,252,o), +(421,153,c), +(421,54,o), +(492,-14,o), +(592,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(561,91,o), +(537,114,o), +(537,153,c), +(537,192,o), +(561,215,o), +(592,215,cs), +(624,215,o), +(648,192,o), +(648,153,c), +(648,114,o), +(624,91,o), +(592,91,cs) +); +}, +{ +closed = 1; +nodes = ( +(302,370,o), +(373,438,o), +(373,537,c), +(373,636,o), +(302,704,o), +(201,704,cs), +(101,704,o), +(30,636,o), +(30,537,c), +(30,438,o), +(101,370,o), +(201,370,cs) +); +}, +{ +closed = 1; +nodes = ( +(170,475,o), +(146,498,o), +(146,537,c), +(146,576,o), +(170,599,o), +(201,599,cs), +(233,599,o), +(257,576,o), +(257,537,c), +(257,498,o), +(233,475,o), +(201,475,cs) +); +}, +{ +closed = 1; +nodes = ( +(1061,-14,o), +(1132,54,o), +(1132,153,c), +(1132,252,o), +(1061,320,o), +(960,320,cs), +(860,320,o), +(789,252,o), +(789,153,c), +(789,54,o), +(860,-14,o), +(960,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(929,91,o), +(905,114,o), +(905,153,c), +(905,192,o), +(929,215,o), +(960,215,cs), +(992,215,o), +(1016,192,o), +(1016,153,c), +(1016,114,o), +(992,91,o), +(960,91,cs) +); +} +); +width = 1162; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(203,0,l), +(639,690,l), +(536,690,l), +(100,0,l) +); +}, +{ +closed = 1; +nodes = ( +(634,-10,o), +(699,57,o), +(699,153,cs), +(699,249,o), +(634,316,o), +(539,316,cs), +(445,316,o), +(380,249,o), +(380,153,cs), +(380,57,o), +(445,-10,o), +(539,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(498,66,o), +(467,98,o), +(467,153,cs), +(467,208,o), +(498,240,o), +(539,240,cs), +(581,240,o), +(612,208,o), +(612,153,cs), +(612,98,o), +(581,66,o), +(539,66,cs) +); +}, +{ +closed = 1; +nodes = ( +(294,374,o), +(359,441,o), +(359,537,cs), +(359,633,o), +(294,700,o), +(199,700,cs), +(105,700,o), +(40,633,o), +(40,537,cs), +(40,441,o), +(105,374,o), +(199,374,cs) +); +}, +{ +closed = 1; +nodes = ( +(158,450,o), +(127,482,o), +(127,537,cs), +(127,592,o), +(158,624,o), +(199,624,cs), +(241,624,o), +(272,592,o), +(272,537,cs), +(272,482,o), +(241,450,o), +(199,450,cs) +); +}, +{ +closed = 1; +nodes = ( +(984,-10,o), +(1049,57,o), +(1049,153,cs), +(1049,249,o), +(984,316,o), +(889,316,cs), +(795,316,o), +(730,249,o), +(730,153,cs), +(730,57,o), +(795,-10,o), +(889,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(848,66,o), +(817,98,o), +(817,153,cs), +(817,208,o), +(848,240,o), +(889,240,cs), +(931,240,o), +(962,208,o), +(962,153,cs), +(962,98,o), +(931,66,o), +(889,66,cs) +); +} +); +width = 1089; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(359,633,o), +(294,700,o), +(199,700,cs), +(105,700,o), +(40,633,o), +(40,537,c), +(40,441,o), +(105,374,o), +(199,374,cs), +(294,374,o), +(359,441,o), +(359,537,c) +); +}, +{ +closed = 1; +nodes = ( +(127,592,o), +(158,624,o), +(199,624,cs), +(241,624,o), +(272,592,o), +(272,537,c), +(272,482,o), +(241,450,o), +(199,450,cs), +(158,450,o), +(127,482,o), +(127,537,c) +); +}, +{ +closed = 1; +nodes = ( +(699,249,o), +(634,316,o), +(539,316,cs), +(445,316,o), +(380,249,o), +(380,153,c), +(380,57,o), +(445,-10,o), +(539,-10,cs), +(634,-10,o), +(699,57,o), +(699,153,c) +); +}, +{ +closed = 1; +nodes = ( +(467,208,o), +(498,240,o), +(539,240,cs), +(581,240,o), +(612,208,o), +(612,153,c), +(612,98,o), +(581,66,o), +(539,66,cs), +(498,66,o), +(467,98,o), +(467,153,c) +); +}, +{ +closed = 1; +nodes = ( +(203,0,l), +(639,690,l), +(536,690,l), +(100,0,l) +); +}, +{ +closed = 1; +nodes = ( +(1049,249,o), +(984,316,o), +(889,316,cs), +(795,316,o), +(730,249,o), +(730,153,c), +(730,57,o), +(795,-10,o), +(889,-10,cs), +(984,-10,o), +(1049,57,o), +(1049,153,c) +); +}, +{ +closed = 1; +nodes = ( +(817,208,o), +(848,240,o), +(889,240,cs), +(931,240,o), +(962,208,o), +(962,153,c), +(962,98,o), +(931,66,o), +(889,66,cs), +(848,66,o), +(817,98,o), +(817,153,c) +); +} +); +width = 1089; +} +); +unicode = 8240; +}, +{ +color = 6; +glyphname = lozenge; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(387,-175,l), +(526,258,l), +(387,690,l), +(232,690,l), +(366,249,l), +(241,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(309,-175,l), +(175,266,l), +(300,690,l), +(154,690,l), +(15,257,l), +(154,-175,l) +); +} +); +width = 541; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(322,-175,l), +(472,257,l), +(322,690,l), +(220,690,l), +(367,250,l), +(228,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(272,-175,l), +(125,265,l), +(264,690,l), +(170,690,l), +(20,257,l), +(170,-175,l) +); +} +); +width = 492; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(322,690,l), +(220,690,l), +(367,250,l), +(228,-175,l), +(322,-175,l), +(472,257,l) +); +}, +{ +closed = 1; +nodes = ( +(170,-175,l), +(272,-175,l), +(125,265,l), +(264,690,l), +(170,690,l), +(20,257,l) +); +} +); +width = 492; +} +); +unicode = 9674; +}, +{ +color = 6; +glyphname = dieresiscomb; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (250,530); +}, +{ +name = top; +pos = (250,728); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(388,588,o), +(420,617,o), +(420,658,cs), +(420,700,o), +(388,728,o), +(349,728,cs), +(310,728,o), +(279,700,o), +(279,658,cs), +(279,617,o), +(310,588,o), +(349,588,cs) +); +}, +{ +closed = 1; +nodes = ( +(190,588,o), +(221,617,o), +(221,658,cs), +(221,700,o), +(190,728,o), +(151,728,cs), +(112,728,o), +(80,700,o), +(80,658,cs), +(80,617,o), +(112,588,o), +(151,588,cs) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +}, +{ +name = top; +pos = (250,715); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(373,602,o), +(398,625,o), +(398,658,cs), +(398,692,o), +(373,715,o), +(341,715,cs), +(309,715,o), +(284,692,o), +(284,658,cs), +(284,625,o), +(309,602,o), +(341,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(191,602,o), +(216,625,o), +(216,658,cs), +(216,692,o), +(191,715,o), +(159,715,cs), +(127,715,o), +(102,692,o), +(102,658,cs), +(102,625,o), +(127,602,o), +(159,602,cs) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(191,602,o), +(216,625,o), +(216,658,cs), +(216,692,o), +(191,715,o), +(159,715,cs), +(127,715,o), +(102,692,o), +(102,658,cs), +(102,625,o), +(127,602,o), +(159,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(373,602,o), +(398,625,o), +(398,658,cs), +(398,692,o), +(373,715,o), +(341,715,cs), +(309,715,o), +(284,692,o), +(284,658,cs), +(284,625,o), +(309,602,o), +(341,602,cs) +); +} +); +width = 500; +} +); +unicode = 776; +}, +{ +color = 6; +glyphname = dotaccentcomb; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (250,530); +}, +{ +name = top; +pos = (250,738); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(293,588,o), +(326,619,o), +(326,664,cs), +(326,710,o), +(293,738,o), +(250,738,cs), +(206,738,o), +(174,710,o), +(174,664,cs), +(174,619,o), +(206,588,o), +(250,588,cs) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +}, +{ +name = top; +pos = (250,725); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(285,602,o), +(312,627,o), +(312,663,cs), +(312,700,o), +(285,725,o), +(250,725,cs), +(215,725,o), +(188,700,o), +(188,663,cs), +(188,627,o), +(215,602,o), +(250,602,cs) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(285,602,o), +(312,627,o), +(312,663,cs), +(312,700,o), +(285,725,o), +(250,725,cs), +(215,725,o), +(188,700,o), +(188,663,cs), +(188,627,o), +(215,602,o), +(250,602,cs) +); +} +); +width = 500; +} +); +unicode = 775; +}, +{ +color = 6; +glyphname = gravecomb; +lastChange = "2024-03-21 13:48:26 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (250,530); +}, +{ +name = top; +pos = (200,730); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(318,585,l), +(238,730,l), +(81,730,l), +(206,585,l) +); +} +); +width = 398; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +}, +{ +name = top; +pos = (205,725); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(303,585,l), +(233,725,l), +(107,725,l), +(217,585,l) +); +} +); +width = 403; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(233,725,l), +(107,725,l), +(217,585,l), +(303,585,l) +); +} +); +width = 500; +} +); +unicode = 768; +}, +{ +color = 6; +glyphname = acutecomb; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (131,530); +}, +{ +name = top; +pos = (199,730); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(318,730,l), +(161,730,l), +(81,585,l), +(193,585,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (160,530); +}, +{ +name = top; +pos = (205,725); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(303,725,l), +(177,725,l), +(107,585,l), +(193,585,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(233,725,l), +(107,725,l), +(217,585,l), +(303,585,l) +); +} +); +width = 500; +} +); +unicode = 769; +}, +{ +color = 6; +glyphname = hungarumlautcomb; +lastChange = "2024-03-21 13:48:44 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (252,530); +}, +{ +name = top; +pos = (316,730); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(375,585,l), +(500,730,l), +(353,730,l), +(269,585,l) +); +}, +{ +closed = 1; +nodes = ( +(238,585,l), +(322,730,l), +(182,730,l), +(131,585,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +}, +{ +name = top; +pos = (303,725); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(358,585,l), +(458,725,l), +(347,725,l), +(277,585,l) +); +}, +{ +closed = 1; +nodes = ( +(228,585,l), +(298,725,l), +(197,725,l), +(147,585,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(228,585,l), +(298,725,l), +(197,725,l), +(147,585,l) +); +}, +{ +closed = 1; +nodes = ( +(358,585,l), +(458,725,l), +(347,725,l), +(277,585,l) +); +} +); +width = 500; +} +); +unicode = 779; +}, +{ +color = 6; +glyphname = caroncomb.alt; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _topright; +pos = (191,715); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(147,442,l), +(191,715,l), +(87,715,l), +(87,442,l) +); +} +); +width = 300; +}, +{ +anchors = ( +{ +name = _topright; +pos = (87,715); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(187,442,l), +(231,715,l), +(87,715,l), +(87,442,l) +); +} +); +width = 300; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +width = 300; +} +); +}, +{ +color = 6; +glyphname = circumflexcomb; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (250,530); +}, +{ +name = top; +pos = (250,730); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(422,585,l), +(320,730,l), +(184,730,l), +(312,585,l) +); +}, +{ +closed = 1; +nodes = ( +(188,585,l), +(316,730,l), +(180,730,l), +(78,585,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +}, +{ +name = top; +pos = (250,725); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(406,585,l), +(306,725,l), +(200,725,l), +(318,585,l) +); +}, +{ +closed = 1; +nodes = ( +(182,585,l), +(300,725,l), +(194,725,l), +(94,585,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(306,725,l), +(200,725,l), +(318,585,l), +(406,585,l) +); +}, +{ +closed = 1; +nodes = ( +(182,585,l), +(300,725,l), +(194,725,l), +(94,585,l) +); +} +); +width = 500; +} +); +unicode = 770; +}, +{ +color = 6; +glyphname = caroncomb; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (250,530); +}, +{ +name = top; +pos = (250,730); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(320,585,l), +(422,730,l), +(312,730,l), +(184,585,l) +); +}, +{ +closed = 1; +nodes = ( +(316,585,l), +(188,730,l), +(78,730,l), +(180,585,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +}, +{ +name = top; +pos = (250,725); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(306,585,l), +(406,725,l), +(318,725,l), +(200,585,l) +); +}, +{ +closed = 1; +nodes = ( +(300,585,l), +(182,725,l), +(94,725,l), +(194,585,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(194,585,l), +(300,585,l), +(182,725,l), +(94,725,l) +); +}, +{ +closed = 1; +nodes = ( +(318,725,l), +(200,585,l), +(306,585,l), +(406,725,l) +); +} +); +width = 500; +} +); +unicode = 780; +}, +{ +color = 6; +glyphname = brevecomb; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (250,530); +}, +{ +name = top; +pos = (250,730); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(349,585,o), +(397,639,o), +(399,730,c), +(308,730,l), +(307,693,o), +(287,671,o), +(250,671,c), +(213,671,o), +(193,693,o), +(192,730,c), +(101,730,l), +(103,639,o), +(151,585,o), +(250,585,c) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +}, +{ +name = top; +pos = (250,725); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(194,585,l), +(302,585,l), +(184,725,l), +(94,725,l) +); +}, +{ +closed = 1; +nodes = ( +(316,725,l), +(198,585,l), +(306,585,l), +(406,725,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(343,585,o), +(388,639,o), +(390,725,c), +(320,725,l), +(319,684,o), +(295,660,o), +(250,660,c), +(205,660,o), +(181,684,o), +(180,725,c), +(110,725,l), +(112,639,o), +(157,585,o), +(250,585,c) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(194,585,l), +(302,585,l), +(184,725,l), +(94,725,l) +); +}, +{ +closed = 1; +nodes = ( +(316,725,l), +(198,585,l), +(306,585,l), +(406,725,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(205,660,o), +(181,684,o), +(180,725,c), +(110,725,l), +(112,639,o), +(157,585,o), +(250,585,c), +(343,585,o), +(388,639,o), +(390,725,c), +(320,725,l), +(319,684,o), +(295,660,o), +(250,660,c) +); +} +); +width = 500; +} +); +unicode = 774; +}, +{ +color = 6; +glyphname = ringcomb; +lastChange = "2024-03-21 13:49:42 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (150,530); +}, +{ +name = top; +pos = (150,731); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(206,575,o), +(247,611,o), +(247,666,cs), +(247,722,o), +(206,758,o), +(150,758,cs), +(94,758,o), +(53,722,o), +(53,666,cs), +(53,611,o), +(94,575,o), +(150,575,cs) +); +}, +{ +closed = 1; +nodes = ( +(129,630,o), +(116,646,o), +(116,666,cs), +(116,687,o), +(129,703,o), +(150,703,cs), +(171,703,o), +(184,687,o), +(184,666,cs), +(184,646,o), +(171,630,o), +(150,630,cs) +); +} +); +width = 300; +}, +{ +anchors = ( +{ +name = _top; +pos = (150,530); +}, +{ +name = top; +pos = (150,743); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(213,575,o), +(253,614,o), +(253,670,cs), +(253,728,o), +(213,767,o), +(150,767,cs), +(87,767,o), +(47,728,o), +(47,670,cs), +(47,614,o), +(87,575,o), +(150,575,cs) +); +}, +{ +closed = 1; +nodes = ( +(132,640,o), +(120,653,o), +(120,670,cs), +(120,689,o), +(132,702,o), +(150,702,cs), +(168,702,o), +(180,689,o), +(180,670,cs), +(180,653,o), +(168,640,o), +(150,640,cs) +); +} +); +width = 300; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +width = 300; +} +); +unicode = 778; +}, +{ +color = 6; +glyphname = tildecomb; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (250,530); +}, +{ +name = top; +pos = (250,730); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(175,585,l), +(178,612,o), +(190,624,o), +(205,624,c), +(235,624,o), +(254,585,o), +(312,585,c), +(366,585,o), +(406,641,o), +(409,730,c), +(325,730,l), +(322,702,o), +(310,690,o), +(295,690,c), +(267,690,o), +(246,730,o), +(188,730,c), +(133,730,o), +(93,674,o), +(91,585,c) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +}, +{ +name = top; +pos = (250,725); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(194,585,l), +(302,585,l), +(184,725,l), +(94,725,l) +); +}, +{ +closed = 1; +nodes = ( +(316,725,l), +(198,585,l), +(306,585,l), +(406,725,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(168,585,l), +(169,624,o), +(178,642,o), +(197,642,c), +(229,642,o), +(249,585,o), +(308,585,c), +(361,585,o), +(394,639,o), +(400,725,c), +(332,725,l), +(331,686,o), +(322,668,o), +(303,668,c), +(272,668,o), +(251,725,o), +(192,725,c), +(139,725,o), +(106,671,o), +(100,585,c) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(194,585,l), +(302,585,l), +(184,725,l), +(94,725,l) +); +}, +{ +closed = 1; +nodes = ( +(316,725,l), +(198,585,l), +(306,585,l), +(406,725,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(361,585,o), +(394,639,o), +(400,725,c), +(332,725,l), +(331,686,o), +(322,668,o), +(303,668,c), +(272,668,o), +(251,725,o), +(192,725,c), +(139,725,o), +(106,671,o), +(100,585,c), +(168,585,l), +(169,624,o), +(178,642,o), +(197,642,c), +(229,642,o), +(249,585,o), +(308,585,c) +); +} +); +width = 500; +} +); +unicode = 771; +}, +{ +color = 6; +glyphname = macroncomb; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (250,530); +}, +{ +name = top; +pos = (250,718); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(397,603,l), +(397,718,l), +(103,718,l), +(103,603,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +}, +{ +name = top; +pos = (250,705); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(388,621,l), +(388,705,l), +(112,705,l), +(112,621,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(388,621,l), +(388,705,l), +(112,705,l), +(112,621,l) +); +} +); +width = 500; +} +); +unicode = 772; +}, +{ +color = 6; +glyphname = commaaccent; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (254,0); +}, +{ +name = bottom; +pos = (254,-270); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(326,-73,o), +(292,-43,o), +(249,-43,cs), +(206,-43,o), +(174,-73,o), +(174,-119,cs), +(174,-164,o), +(206,-193,o), +(249,-193,c), +(231,-175,l), +(193,-270,l), +(266,-270,l), +(298,-215,ls), +(318,-181,o), +(326,-156,o), +(326,-124,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(278,-270,l), +(320,-54,l), +(188,-54,l), +(188,-270,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (255,0); +}, +{ +name = bottom; +pos = (255,-275); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(215,-72,o), +(188,-97,o), +(188,-133,cs), +(188,-170,o), +(215,-195,o), +(250,-195,cs), +(285,-195,o), +(312,-170,o), +(312,-133,cs), +(312,-97,o), +(285,-72,o), +(250,-72,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(266,-275,l), +(307,-72,l), +(203,-72,l), +(203,-275,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (250,0); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(215,-72,o), +(188,-97,o), +(188,-133,cs), +(188,-170,o), +(215,-195,o), +(250,-195,cs), +(285,-195,o), +(312,-170,o), +(312,-133,cs), +(312,-97,o), +(285,-72,o), +(250,-72,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(203,-275,l), +(266,-275,l), +(307,-72,l), +(203,-72,l) +); +} +); +width = 500; +} +); +}, +{ +color = 6; +glyphname = commaaccentcomb; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (141,0); +}, +{ +name = bottom; +pos = (145,-275); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(156,-275,l), +(197,-72,l), +(93,-72,l), +(93,-275,l) +); +} +); +width = 300; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (144,0); +}, +{ +name = bottom; +pos = (144,-270); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(168,-270,l), +(210,-54,l), +(78,-54,l), +(78,-270,l) +); +} +); +width = 300; +} +); +unicode = 806; +}, +{ +color = 6; +glyphname = cedillacomb; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (253,0); +}, +{ +name = bottom; +pos = (253,-190); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(318,-190,o), +(352,-154,o), +(352,-106,cs), +(352,-57,o), +(316,-29,o), +(258,-29,c), +(270,-43,l), +(276,9,l), +(208,11,l), +(194,-80,l), +(205,-76,o), +(215,-74,o), +(227,-74,c), +(250,-74,o), +(260,-82,o), +(260,-92,c), +(260,-103,o), +(250,-109,o), +(230,-109,c), +(210,-109,o), +(187,-105,o), +(166,-94,c), +(154,-174,l), +(181,-185,o), +(212,-190,o), +(240,-190,c) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (252,0); +}, +{ +name = bottom; +pos = (252,-185); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(283,-43,l), +(290,9,l), +(233,11,l), +(220,-73,l), +(231,-71,o), +(238,-70,o), +(250,-70,c), +(273,-70,o), +(287,-79,o), +(287,-96,c), +(287,-110,o), +(274,-119,o), +(256,-119,c), +(241,-119,o), +(225,-114,o), +(211,-99,c), +(170,-150,l), +(191,-170,o), +(223,-185,o), +(262,-185,c), +(320,-185,o), +(356,-151,o), +(356,-106,cs), +(356,-57,o), +(319,-29,o), +(271,-29,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(301,-185,o), +(337,-151,o), +(337,-106,cs), +(337,-57,o), +(300,-29,o), +(252,-29,c), +(264,-43,l), +(270,9,l), +(214,11,l), +(201,-73,l), +(212,-71,o), +(219,-70,o), +(230,-70,c), +(254,-70,o), +(268,-79,o), +(268,-96,c), +(268,-110,o), +(255,-119,o), +(234,-119,c), +(214,-119,o), +(198,-114,o), +(180,-105,c), +(167,-169,l), +(192,-180,o), +(217,-185,o), +(243,-185,c) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (250,0); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(283,-43,l), +(290,9,l), +(233,11,l), +(220,-73,l), +(231,-71,o), +(238,-70,o), +(250,-70,c), +(273,-70,o), +(287,-79,o), +(287,-96,c), +(287,-110,o), +(274,-119,o), +(256,-119,c), +(241,-119,o), +(225,-114,o), +(211,-99,c), +(170,-150,l), +(191,-170,o), +(223,-185,o), +(262,-185,c), +(320,-185,o), +(356,-151,o), +(356,-106,cs), +(356,-57,o), +(319,-29,o), +(271,-29,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(264,-43,l), +(270,9,l), +(214,11,l), +(201,-73,l), +(212,-71,o), +(219,-70,o), +(230,-70,c), +(254,-70,o), +(268,-79,o), +(268,-96,c), +(268,-110,o), +(255,-119,o), +(234,-119,c), +(214,-119,o), +(198,-114,o), +(180,-105,c), +(167,-169,l), +(192,-180,o), +(217,-185,o), +(243,-185,c), +(301,-185,o), +(337,-151,o), +(337,-106,cs), +(337,-57,o), +(300,-29,o), +(252,-29,c) +); +} +); +width = 500; +} +); +unicode = 807; +}, +{ +color = 6; +glyphname = ogonekcomb; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _ogonek; +pos = (339,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(314,-56,l), +(299,-95,l), +(298,-141,l), +(343,-176,l), +(389,-186,l), +(461,-178,l), +(498,-155,l), +(498,-82,l), +(451,-100,l), +(394,-99,l), +(371,-92,l), +(393,-63,l), +(439,-30,l), +(493,-2,l), +(401,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(273,-190,o), +(309,-183,o), +(339,-170,c), +(330,-75,l), +(310,-87,o), +(284,-96,o), +(265,-96,c), +(250,-96,o), +(242,-89,o), +(242,-79,c), +(242,-60,o), +(270,-31,o), +(339,0,c), +(234,0,l), +(159,-37,o), +(131,-69,o), +(131,-111,c), +(131,-156,o), +(170,-190,o), +(242,-190,cs) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (304,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(314,-56,l), +(299,-95,l), +(298,-141,l), +(343,-176,l), +(389,-186,l), +(461,-178,l), +(498,-155,l), +(498,-82,l), +(451,-100,l), +(394,-99,l), +(371,-92,l), +(393,-63,l), +(439,-30,l), +(493,-2,l), +(401,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(241,-185,o), +(276,-176,o), +(304,-165,c), +(295,-84,l), +(272,-94,o), +(238,-106,o), +(218,-106,c), +(205,-106,o), +(197,-101,o), +(197,-89,c), +(197,-65,o), +(234,-34,o), +(304,0,c), +(204,0,l), +(136,-37,o), +(113,-69,o), +(113,-111,c), +(113,-153,o), +(147,-185,o), +(212,-185,cs) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (250,0); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(314,-56,l), +(299,-95,l), +(298,-141,l), +(343,-176,l), +(389,-186,l), +(461,-178,l), +(498,-155,l), +(498,-82,l), +(451,-100,l), +(394,-99,l), +(371,-92,l), +(393,-63,l), +(439,-30,l), +(493,-2,l), +(401,0,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(136,-37,o), +(113,-69,o), +(113,-111,c), +(113,-153,o), +(147,-185,o), +(212,-185,cs), +(241,-185,o), +(276,-176,o), +(304,-165,c), +(295,-84,l), +(272,-94,o), +(238,-106,o), +(218,-106,c), +(205,-106,o), +(197,-101,o), +(197,-89,c), +(197,-65,o), +(234,-34,o), +(304,0,c), +(204,0,l) +); +} +); +width = 500; +} +); +unicode = 808; +}, +{ +color = 6; +glyphname = commaaccent.alt; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (249,530); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(174,603,o), +(207,573,o), +(250,573,cs), +(293,573,o), +(326,603,o), +(326,649,cs), +(326,694,o), +(293,723,o), +(250,723,c), +(268,705,l), +(306,800,l), +(233,800,l), +(201,745,ls), +(181,711,o), +(174,686,o), +(174,654,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(311,584,l), +(311,800,l), +(221,800,l), +(179,584,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(297,602,l), +(297,805,l), +(234,805,l), +(193,602,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(297,805,l), +(234,805,l), +(193,602,l), +(297,602,l) +); +} +); +width = 500; +} +); +}, +{ +color = 6; +glyphname = dieresiscomb.case; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(398,742,o), +(430,769,o), +(430,807,cs), +(430,846,o), +(398,873,o), +(359,873,cs), +(320,873,o), +(289,846,o), +(289,807,cs), +(289,769,o), +(320,742,o), +(359,742,cs) +); +}, +{ +closed = 1; +nodes = ( +(180,742,o), +(211,769,o), +(211,807,cs), +(211,846,o), +(180,873,o), +(141,873,cs), +(102,873,o), +(70,846,o), +(70,807,cs), +(70,769,o), +(102,742,o), +(141,742,cs) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(383,742,o), +(408,765,o), +(408,798,cs), +(408,832,o), +(383,855,o), +(351,855,cs), +(319,855,o), +(294,832,o), +(294,798,cs), +(294,765,o), +(319,742,o), +(351,742,cs) +); +}, +{ +closed = 1; +nodes = ( +(181,742,o), +(206,765,o), +(206,798,cs), +(206,832,o), +(181,855,o), +(149,855,cs), +(117,855,o), +(92,832,o), +(92,798,cs), +(92,765,o), +(117,742,o), +(149,742,cs) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(181,742,o), +(206,765,o), +(206,798,cs), +(206,832,o), +(181,855,o), +(149,855,cs), +(117,855,o), +(92,832,o), +(92,798,cs), +(92,765,o), +(117,742,o), +(149,742,cs) +); +}, +{ +closed = 1; +nodes = ( +(383,742,o), +(408,765,o), +(408,798,cs), +(408,832,o), +(383,855,o), +(351,855,cs), +(319,855,o), +(294,832,o), +(294,798,cs), +(294,765,o), +(319,742,o), +(351,742,cs) +); +} +); +width = 500; +} +); +}, +{ +color = 6; +glyphname = dotaccentcomb.case; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(293,741,o), +(326,770,o), +(326,812,cs), +(326,855,o), +(293,882,o), +(250,882,cs), +(206,882,o), +(174,855,o), +(174,812,cs), +(174,770,o), +(206,741,o), +(250,741,cs) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(285,735,o), +(312,760,o), +(312,796,cs), +(312,833,o), +(285,858,o), +(250,858,cs), +(215,858,o), +(188,833,o), +(188,796,cs), +(188,760,o), +(215,735,o), +(250,735,cs) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(285,735,o), +(312,760,o), +(312,796,cs), +(312,833,o), +(285,858,o), +(250,858,cs), +(215,858,o), +(188,833,o), +(188,796,cs), +(188,760,o), +(215,735,o), +(250,735,cs) +); +} +); +width = 500; +} +); +}, +{ +color = 6; +glyphname = gravecomb.case; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(321,735,l), +(218,850,l), +(49,850,l), +(200,735,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(311,735,l), +(211,845,l), +(80,845,l), +(217,735,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(211,845,l), +(80,845,l), +(217,735,l), +(311,735,l) +); +} +); +width = 500; +} +); +}, +{ +color = 6; +glyphname = acutecomb.case; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(300,735,l), +(451,850,l), +(282,850,l), +(179,735,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(283,735,l), +(420,845,l), +(289,845,l), +(189,735,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(283,735,l), +(420,845,l), +(289,845,l), +(189,735,l) +); +} +); +width = 500; +} +); +}, +{ +color = 6; +glyphname = hungarumlautcomb.case; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(386,735,l), +(537,850,l), +(384,850,l), +(275,735,l) +); +}, +{ +closed = 1; +nodes = ( +(235,735,l), +(343,850,l), +(200,850,l), +(129,735,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(371,735,l), +(508,845,l), +(383,845,l), +(283,735,l) +); +}, +{ +closed = 1; +nodes = ( +(225,735,l), +(322,845,l), +(208,845,l), +(137,735,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(371,735,l), +(508,845,l), +(383,845,l), +(283,735,l) +); +}, +{ +closed = 1; +nodes = ( +(225,735,l), +(322,845,l), +(208,845,l), +(137,735,l) +); +} +); +width = 500; +} +); +}, +{ +color = 6; +glyphname = circumflexcomb.case; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(444,735,l), +(334,850,l), +(175,850,l), +(322,735,l) +); +}, +{ +closed = 1; +nodes = ( +(178,735,l), +(325,850,l), +(166,850,l), +(56,735,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(433,735,l), +(319,845,l), +(185,845,l), +(334,735,l) +); +}, +{ +closed = 1; +nodes = ( +(166,735,l), +(315,845,l), +(181,845,l), +(67,735,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(166,735,l), +(315,845,l), +(181,845,l), +(67,735,l) +); +}, +{ +closed = 1; +nodes = ( +(319,845,l), +(185,845,l), +(334,735,l), +(433,735,l) +); +} +); +width = 500; +} +); +}, +{ +color = 6; +glyphname = caroncomb.case; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(334,735,l), +(444,850,l), +(322,850,l), +(175,735,l) +); +}, +{ +closed = 1; +nodes = ( +(325,735,l), +(178,850,l), +(56,850,l), +(166,735,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(319,735,l), +(433,845,l), +(334,845,l), +(185,735,l) +); +}, +{ +closed = 1; +nodes = ( +(315,735,l), +(166,845,l), +(67,845,l), +(181,735,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(334,845,l), +(185,735,l), +(319,735,l), +(433,845,l) +); +}, +{ +closed = 1; +nodes = ( +(181,735,l), +(315,735,l), +(166,845,l), +(67,845,l) +); +} +); +width = 500; +} +); +}, +{ +color = 6; +glyphname = brevecomb.case; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(354,730,o), +(406,779,o), +(409,850,c), +(312,850,l), +(307,827,o), +(291,814,o), +(250,814,c), +(209,814,o), +(193,827,o), +(188,850,c), +(91,850,l), +(94,779,o), +(146,730,o), +(250,730,c) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(333,845,l), +(184,735,l), +(319,735,l), +(433,845,l) +); +}, +{ +closed = 1; +nodes = ( +(181,735,l), +(316,735,l), +(167,845,l), +(67,845,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(347,735,o), +(395,777,o), +(400,845,c), +(330,845,l), +(326,820,o), +(305,805,o), +(250,805,c), +(195,805,o), +(174,820,o), +(170,845,c), +(100,845,l), +(105,777,o), +(153,735,o), +(250,735,c) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(333,845,l), +(184,735,l), +(319,735,l), +(433,845,l) +); +}, +{ +closed = 1; +nodes = ( +(181,735,l), +(316,735,l), +(167,845,l), +(67,845,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(195,805,o), +(174,820,o), +(170,845,c), +(100,845,l), +(105,777,o), +(153,735,o), +(250,735,c), +(347,735,o), +(395,777,o), +(400,845,c), +(330,845,l), +(326,820,o), +(305,805,o), +(250,805,c) +); +} +); +width = 500; +} +); +}, +{ +color = 6; +glyphname = ringcomb.case; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (250,690); +}, +{ +name = top; +pos = (250,917); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(313,735,o), +(353,772,o), +(353,826,cs), +(353,880,o), +(313,917,o), +(250,917,cs), +(187,917,o), +(147,880,o), +(147,826,cs), +(147,772,o), +(187,735,o), +(250,735,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,800,o), +(220,811,o), +(220,826,cs), +(220,841,o), +(232,852,o), +(250,852,cs), +(268,852,o), +(280,841,o), +(280,826,cs), +(280,811,o), +(268,800,o), +(250,800,cs) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +}, +{ +name = top; +pos = (250,880); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(306,735,o), +(347,769,o), +(347,821,cs), +(347,874,o), +(306,908,o), +(250,908,cs), +(194,908,o), +(153,874,o), +(153,821,cs), +(153,769,o), +(194,735,o), +(250,735,cs) +); +}, +{ +closed = 1; +nodes = ( +(229,790,o), +(216,804,o), +(216,821,cs), +(216,839,o), +(229,853,o), +(250,853,cs), +(271,853,o), +(284,839,o), +(284,821,cs), +(284,804,o), +(271,790,o), +(250,790,cs) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(229,790,o), +(216,803.778,o), +(216,821,cs), +(216,839.162,o), +(229,853,o), +(250,853,cs), +(271,853,o), +(284,839.162,o), +(284,821,cs), +(284,803.778,o), +(271,790,o), +(250,790,cs) +); +}, +{ +closed = 1; +nodes = ( +(306,735,o), +(347,769.022,o), +(347,821,cs), +(347,873.957,o), +(306,908,o), +(250,908,cs), +(194,908,o), +(153,873.957,o), +(153,821,cs), +(153,769.022,o), +(194,735,o), +(250,735,cs) +); +} +); +width = 500; +} +); +}, +{ +color = 6; +glyphname = tildecomb.case; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(165,735,l), +(168,761,o), +(180,772,o), +(196,772,c), +(226,772,o), +(248,735,o), +(313,735,c), +(372,735,o), +(415,781,o), +(419,854,c), +(335,854,l), +(332,828,o), +(320,817,o), +(304,817,c), +(276,817,o), +(252,854,o), +(187,854,c), +(127,854,o), +(84,808,o), +(81,735,c) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(158,735,l), +(159,757,o), +(171,773,o), +(192,773,c), +(223,773,o), +(253,735,o), +(310,735,c), +(367,735,o), +(403,777,o), +(410,845,c), +(342,845,l), +(341,823,o), +(329,807,o), +(308,807,c), +(278,807,o), +(247,845,o), +(190,845,c), +(133,845,o), +(97,803,o), +(90,735,c) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(367,735,o), +(403.348,777.429,o), +(410,845,c), +(342,845,l), +(340.655,823.105,o), +(329,807,o), +(308,807,c), +(278,807,o), +(247,845,o), +(190,845,c), +(133,845,o), +(96.652,802.571,o), +(90,735,c), +(158,735,l), +(159.345,756.895,o), +(171,773,o), +(192,773,c), +(223,773,o), +(253,735,o), +(310,735,c) +); +} +); +width = 500; +} +); +}, +{ +color = 6; +glyphname = macroncomb.case; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(415,735,l), +(415,850,l), +(85,850,l), +(85,735,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(408,753,l), +(408,837,l), +(92,837,l), +(92,753,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(408,753,l), +(408,837,l), +(92,837,l), +(92,753,l) +); +} +); +width = 500; +} +); +}, +{ +color = 10; +glyphname = dieresis; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = dieresiscomb; +} +); +width = 500; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = dieresiscomb; +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(191,602,o), +(216,625,o), +(216,658,cs), +(216,692,o), +(191,715,o), +(159,715,cs), +(127,715,o), +(102,692,o), +(102,658,cs), +(102,625,o), +(127,602,o), +(159,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(373,602,o), +(398,625,o), +(398,658,cs), +(398,692,o), +(373,715,o), +(341,715,cs), +(309,715,o), +(284,692,o), +(284,658,cs), +(284,625,o), +(309,602,o), +(341,602,cs) +); +} +); +width = 500; +} +); +unicode = 168; +}, +{ +color = 10; +glyphname = dotaccent; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = dotaccentcomb; +} +); +width = 500; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = dotaccentcomb; +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(285,602,o), +(312,627,o), +(312,663,cs), +(312,700,o), +(285,725,o), +(250,725,cs), +(215,725,o), +(188,700,o), +(188,663,cs), +(188,627,o), +(215,602,o), +(250,602,cs) +); +} +); +width = 500; +} +); +unicode = 729; +}, +{ +color = 10; +glyphname = grave; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = gravecomb; +} +); +width = 500; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = gravecomb; +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(233,725,l), +(107,725,l), +(217,585,l), +(303,585,l) +); +} +); +width = 500; +} +); +unicode = 96; +}, +{ +color = 10; +glyphname = acute; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = acutecomb; +} +); +width = 500; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = acutecomb; +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(283,585,l), +(393,725,l), +(267,725,l), +(197,585,l) +); +} +); +width = 500; +} +); +unicode = 180; +}, +{ +color = 10; +glyphname = hungarumlaut; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = hungarumlautcomb; +} +); +width = 500; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = hungarumlautcomb; +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(228,585,l), +(298,725,l), +(197,725,l), +(147,585,l) +); +}, +{ +closed = 1; +nodes = ( +(358,585,l), +(458,725,l), +(347,725,l), +(277,585,l) +); +} +); +width = 500; +} +); +unicode = 733; +}, +{ +color = 10; +glyphname = circumflex; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = circumflexcomb; +} +); +width = 500; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = circumflexcomb; +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(306,725,l), +(200,725,l), +(318,585,l), +(406,585,l) +); +}, +{ +closed = 1; +nodes = ( +(182,585,l), +(300,725,l), +(194,725,l), +(94,585,l) +); +} +); +width = 500; +} +); +unicode = 710; +}, +{ +color = 6; +glyphname = macronmod; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(397,603,l), +(397,718,l), +(103,718,l), +(103,603,l) +); +} +); +width = 500; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(388,621,l), +(388,705,l), +(112,705,l), +(112,621,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(388,621,l), +(388,705,l), +(112,705,l), +(112,621,l) +); +} +); +width = 500; +} +); +unicode = 713; +}, +{ +color = 10; +glyphname = caron; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = caroncomb; +} +); +width = 500; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = caroncomb; +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(194,585,l), +(300,585,l), +(182,725,l), +(94,725,l) +); +}, +{ +closed = 1; +nodes = ( +(318,725,l), +(200,585,l), +(306,585,l), +(406,725,l) +); +} +); +width = 500; +} +); +unicode = 711; +}, +{ +color = 10; +glyphname = breve; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = brevecomb; +} +); +width = 500; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(194,585,l), +(302,585,l), +(184,725,l), +(94,725,l) +); +}, +{ +closed = 1; +nodes = ( +(316,725,l), +(198,585,l), +(306,585,l), +(406,725,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = brevecomb; +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(194,585,l), +(302,585,l), +(184,725,l), +(94,725,l) +); +}, +{ +closed = 1; +nodes = ( +(316,725,l), +(198,585,l), +(306,585,l), +(406,725,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(205,660,o), +(181,684,o), +(180,725,c), +(110,725,l), +(112,639,o), +(157,585,o), +(250,585,c), +(343,585,o), +(388,639,o), +(390,725,c), +(320,725,l), +(319,684,o), +(295,660,o), +(250,660,c) +); +} +); +width = 500; +} +); +unicode = 728; +}, +{ +color = 10; +glyphname = ring; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = ringcomb; +} +); +width = 300; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = ringcomb; +} +); +width = 300; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(229,630,o), +(216,646,o), +(216,666,cs), +(216,687,o), +(229,703,o), +(250,703,cs), +(271,703,o), +(284,687,o), +(284,666,cs), +(284,646,o), +(271,630,o), +(250,630,cs) +); +}, +{ +closed = 1; +nodes = ( +(305.88,575,o), +(347,610.977,o), +(347,666,cs), +(347,722.046,o), +(305.88,758,o), +(250,758,cs), +(194.12,758,o), +(153,722.046,o), +(153,666,cs), +(153,610.977,o), +(194.12,575,o), +(250,575,cs) +); +} +); +width = 500; +} +); +unicode = 730; +}, +{ +color = 10; +glyphname = tilde; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = tildecomb; +} +); +width = 500; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(194,585,l), +(302,585,l), +(184,725,l), +(94,725,l) +); +}, +{ +closed = 1; +nodes = ( +(316,725,l), +(198,585,l), +(306,585,l), +(406,725,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = tildecomb; +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(194,585,l), +(302,585,l), +(184,725,l), +(94,725,l) +); +}, +{ +closed = 1; +nodes = ( +(316,725,l), +(198,585,l), +(306,585,l), +(406,725,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(361,585,o), +(394,639,o), +(400,725,c), +(332,725,l), +(331,686,o), +(322,668,o), +(303,668,c), +(272,668,o), +(251,725,o), +(192,725,c), +(139,725,o), +(106,671,o), +(100,585,c), +(168,585,l), +(169,624,o), +(178,642,o), +(197,642,c), +(229,642,o), +(249,585,o), +(308,585,c) +); +} +); +width = 500; +} +); +unicode = 732; +}, +{ +color = 10; +glyphname = macron; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = macroncomb; +} +); +width = 500; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = macroncomb; +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(388,621,l), +(388,705,l), +(112,705,l), +(112,621,l) +); +} +); +width = 500; +} +); +unicode = 175; +}, +{ +color = 10; +glyphname = cedilla; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = cedillacomb; +} +); +width = 500; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(283,-43,l), +(290,9,l), +(233,11,l), +(220,-73,l), +(231,-71,o), +(238,-70,o), +(250,-70,c), +(273,-70,o), +(287,-79,o), +(287,-96,c), +(287,-110,o), +(274,-119,o), +(256,-119,c), +(241,-119,o), +(225,-114,o), +(211,-99,c), +(170,-150,l), +(191,-170,o), +(223,-185,o), +(262,-185,c), +(320,-185,o), +(356,-151,o), +(356,-106,cs), +(356,-57,o), +(319,-29,o), +(271,-29,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = cedillacomb; +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (250,0); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(283,-43,l), +(290,9,l), +(233,11,l), +(220,-73,l), +(231,-71,o), +(238,-70,o), +(250,-70,c), +(273,-70,o), +(287,-79,o), +(287,-96,c), +(287,-110,o), +(274,-119,o), +(256,-119,c), +(241,-119,o), +(225,-114,o), +(211,-99,c), +(170,-150,l), +(191,-170,o), +(223,-185,o), +(262,-185,c), +(320,-185,o), +(356,-151,o), +(356,-106,cs), +(356,-57,o), +(319,-29,o), +(271,-29,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(264,-43,l), +(270,9,l), +(214,11,l), +(201,-73,l), +(212,-71,o), +(219,-70,o), +(230,-70,c), +(254,-70,o), +(268,-79,o), +(268,-96,c), +(268,-110,o), +(255,-119,o), +(234,-119,c), +(214,-119,o), +(198,-114,o), +(180,-105,c), +(167,-169,l), +(192,-180,o), +(217,-185,o), +(243,-185,c), +(301,-185,o), +(337,-151,o), +(337,-106,cs), +(337,-57,o), +(300,-29,o), +(252,-29,c) +); +} +); +width = 500; +} +); +unicode = 184; +}, +{ +color = 10; +glyphname = ogonek; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(314,-56,l), +(299,-95,l), +(298,-141,l), +(343,-176,l), +(389,-186,l), +(461,-178,l), +(498,-155,l), +(498,-82,l), +(451,-100,l), +(394,-99,l), +(371,-92,l), +(393,-63,l), +(439,-30,l), +(493,-2,l), +(401,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = ogonekcomb; +} +); +width = 500; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(314,-56,l), +(299,-95,l), +(298,-141,l), +(343,-176,l), +(389,-186,l), +(461,-178,l), +(498,-155,l), +(498,-82,l), +(451,-100,l), +(394,-99,l), +(371,-92,l), +(393,-63,l), +(439,-30,l), +(493,-2,l), +(401,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = ogonekcomb; +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (250,0); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(314,-56,l), +(299,-95,l), +(298,-141,l), +(343,-176,l), +(389,-186,l), +(461,-178,l), +(498,-155,l), +(498,-82,l), +(451,-100,l), +(394,-99,l), +(371,-92,l), +(393,-63,l), +(439,-30,l), +(493,-2,l), +(401,0,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(136,-37,o), +(113,-69,o), +(113,-111,c), +(113,-153,o), +(147,-185,o), +(212,-185,cs), +(241,-185,o), +(276,-176,o), +(304,-165,c), +(295,-84,l), +(272,-94,o), +(238,-106,o), +(218,-106,c), +(205,-106,o), +(197,-101,o), +(197,-89,c), +(197,-65,o), +(234,-34,o), +(304,0,c), +(204,0,l) +); +} +); +width = 500; +} +); +unicode = 731; +}, +{ +color = 6; +glyphname = caron.alt; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(277,408,l), +(339,715,l), +(189,715,l), +(189,408,l) +); +} +); +width = 500; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(263,442,l), +(307,715,l), +(203,715,l), +(203,442,l) +); +} +); +width = 500; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(203,442,l), +(263,442,l), +(307,715,l), +(203,715,l) +); +} +); +width = 500; +} +); +}, +{ +color = 6; +glyphname = IJacute; +kernLeft = H; +kernRight = U; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(716,-14,o), +(814,91,o), +(814,253,c), +(814,690,l), +(659,690,l), +(659,261,l), +(659,180,o), +(620,132,o), +(549,132,c), +(489,132,o), +(448,169,o), +(441,240,c), +(291,202,l), +(314,66,o), +(409,-14,o), +(548,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(217,0,l), +(217,690,l), +(62,690,l), +(62,0,l) +); +}, +{ +closed = 1; +nodes = ( +(189,735,l), +(340,850,l), +(171,850,l), +(68,735,l) +); +}, +{ +closed = 1; +nodes = ( +(786,735,l), +(937,850,l), +(768,850,l), +(665,735,l) +); +} +); +width = 869; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(652,-10,o), +(745,86,o), +(745,237,c), +(745,690,l), +(640,690,l), +(640,244,l), +(640,138,o), +(589,87,o), +(511,87,c), +(436,87,o), +(392,136,o), +(379,230,c), +(276,209,l), +(296,67,o), +(383,-10,o), +(511,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(161,735,l), +(298,845,l), +(167,845,l), +(67,735,l) +); +}, +{ +closed = 1; +nodes = ( +(726,735,l), +(863,845,l), +(732,845,l), +(632,735,l) +); +} +); +width = 815; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(296,67,o), +(383,-10,o), +(511,-10,c), +(652,-10,o), +(745,86,o), +(745,237,c), +(745,690,l), +(640,690,l), +(640,244,l), +(640,138,o), +(589,87,o), +(511,87,c), +(436,87,o), +(392,136,o), +(379,230,c), +(276,209,l) +); +}, +{ +closed = 1; +nodes = ( +(726,735,l), +(863,845,l), +(732,845,l), +(632,735,l) +); +}, +{ +closed = 1; +nodes = ( +(161,735,l), +(298,845,l), +(167,845,l), +(67,735,l) +); +} +); +width = 815; +} +); +}, +{ +color = 6; +glyphname = dotbelow; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (250,0); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(293,-198,o), +(326,-167,o), +(326,-122,cs), +(326,-76,o), +(293,-48,o), +(250,-48,cs), +(206,-48,o), +(174,-76,o), +(174,-122,cs), +(174,-167,o), +(206,-198,o), +(250,-198,cs) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (250,0); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(285,-195,o), +(312,-170,o), +(312,-133,cs), +(312,-97,o), +(285,-72,o), +(250,-72,cs), +(215,-72,o), +(188,-97,o), +(188,-133,cs), +(188,-170,o), +(215,-195,o), +(250,-195,cs) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (250,0); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(285,-195,o), +(312,-170,o), +(312,-133,cs), +(312,-97,o), +(285,-72,o), +(250,-72,cs), +(215,-72,o), +(188,-97,o), +(188,-133,cs), +(188,-170,o), +(215,-195,o), +(250,-195,cs) +); +} +); +width = 500; +} +); +}, +{ +color = 6; +glyphname = gem; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(40,256,o), +(76,198,o), +(127,167,c), +(127,473,l), +(76,442,o), +(40,384,o), +(40,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(156,221,o), +(236,141,o), +(334,141,c), +(334,499,l), +(236,499,o), +(156,419,o), +(156,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(164,20,o), +(240,-56,o), +(334,-56,c), +(334,114,l), +(164,114,l) +); +}, +{ +closed = 1; +nodes = ( +(334,526,l), +(334,696,l), +(240,696,o), +(164,620,o), +(164,526,c) +); +}, +{ +closed = 1; +nodes = ( +(361,16,o), +(441,-64,o), +(540,-64,cs), +(639,-64,o), +(719,16,o), +(719,114,c), +(361,114,l) +); +}, +{ +closed = 1; +nodes = ( +(361,221,o), +(441,141,o), +(540,141,cs), +(639,141,o), +(719,221,o), +(719,320,cs), +(719,419,o), +(639,499,o), +(540,499,cs), +(441,499,o), +(361,419,o), +(361,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(719,526,l), +(719,624,o), +(639,704,o), +(540,704,cs), +(441,704,o), +(361,624,o), +(361,526,c) +); +}, +{ +closed = 1; +nodes = ( +(418,-144,o), +(476,-180,o), +(540,-180,cs), +(604,-180,o), +(662,-144,o), +(693,-93,c), +(387,-93,l) +); +}, +{ +closed = 1; +nodes = ( +(693,733,l), +(662,784,o), +(604,820,o), +(540,820,cs), +(476,820,o), +(418,784,o), +(387,733,c) +); +}, +{ +closed = 1; +nodes = ( +(840,-56,o), +(916,20,o), +(916,114,c), +(746,114,l), +(746,-56,l) +); +}, +{ +closed = 1; +nodes = ( +(844,141,o), +(924,221,o), +(924,320,cs), +(924,419,o), +(844,499,o), +(746,499,c), +(746,141,l) +); +}, +{ +closed = 1; +nodes = ( +(916,526,l), +(916,620,o), +(840,696,o), +(746,696,c), +(746,526,l) +); +}, +{ +closed = 1; +nodes = ( +(1004,198,o), +(1040,256,o), +(1040,320,cs), +(1040,384,o), +(1004,442,o), +(953,473,c), +(953,167,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(639,141,o), +(719,221,o), +(719,320,cs), +(719,419,o), +(639,499,o), +(540,499,cs), +(441,499,o), +(361,419,o), +(361,320,cs), +(361,221,o), +(441,141,o), +(540,141,cs) +); +}, +{ +closed = 1; +nodes = ( +(334,114,l), +(164,114,l), +(164,20,o), +(240,-56,o), +(334,-56,c) +); +}, +{ +closed = 1; +nodes = ( +(127,473,l), +(76,442,o), +(40,384,o), +(40,320,cs), +(40,256,o), +(76,198,o), +(127,167,c) +); +}, +{ +closed = 1; +nodes = ( +(604,-180,o), +(662,-144,o), +(693,-93,c), +(387,-93,l), +(418,-144,o), +(476,-180,o), +(540,-180,cs) +); +}, +{ +closed = 1; +nodes = ( +(334,499,l), +(236,499,o), +(156,419,o), +(156,320,cs), +(156,221,o), +(236,141,o), +(334,141,c) +); +}, +{ +closed = 1; +nodes = ( +(639,-64,o), +(719,16,o), +(719,114,c), +(361,114,l), +(361,16,o), +(441,-64,o), +(540,-64,cs) +); +}, +{ +closed = 1; +nodes = ( +(334,526,l), +(334,696,l), +(240,696,o), +(164,620,o), +(164,526,c) +); +}, +{ +closed = 1; +nodes = ( +(840,-56,o), +(916,20,o), +(916,114,c), +(746,114,l), +(746,-56,l) +); +}, +{ +closed = 1; +nodes = ( +(719,526,l), +(719,624,o), +(639,704,o), +(540,704,cs), +(441,704,o), +(361,624,o), +(361,526,c) +); +}, +{ +closed = 1; +nodes = ( +(844,141,o), +(924,221,o), +(924,320,cs), +(924,419,o), +(844,499,o), +(746,499,c), +(746,141,l) +); +}, +{ +closed = 1; +nodes = ( +(693,733,l), +(662,784,o), +(604,820,o), +(540,820,cs), +(476,820,o), +(418,784,o), +(387,733,c) +); +}, +{ +closed = 1; +nodes = ( +(1004,198,o), +(1040,256,o), +(1040,320,cs), +(1040,384,o), +(1004,442,o), +(953,473,c), +(953,167,l) +); +}, +{ +closed = 1; +nodes = ( +(916,526,l), +(916,620,o), +(840,696,o), +(746,696,c), +(746,526,l) +); +} +); +width = 1080; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(40,256,o), +(76,198,o), +(127,167,c), +(127,473,l), +(76,442,o), +(40,384,o), +(40,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(156,221,o), +(236,141,o), +(334,141,c), +(334,499,l), +(236,499,o), +(156,419,o), +(156,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(164,20,o), +(240,-56,o), +(334,-56,c), +(334,114,l), +(164,114,l) +); +}, +{ +closed = 1; +nodes = ( +(334,526,l), +(334,696,l), +(240,696,o), +(164,620,o), +(164,526,c) +); +}, +{ +closed = 1; +nodes = ( +(361,16,o), +(441,-64,o), +(540,-64,cs), +(639,-64,o), +(719,16,o), +(719,114,c), +(361,114,l) +); +}, +{ +closed = 1; +nodes = ( +(361,221,o), +(441,141,o), +(540,141,cs), +(639,141,o), +(719,221,o), +(719,320,cs), +(719,419,o), +(639,499,o), +(540,499,cs), +(441,499,o), +(361,419,o), +(361,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(719,526,l), +(719,624,o), +(639,704,o), +(540,704,cs), +(441,704,o), +(361,624,o), +(361,526,c) +); +}, +{ +closed = 1; +nodes = ( +(418,-144,o), +(476,-180,o), +(540,-180,cs), +(604,-180,o), +(662,-144,o), +(693,-93,c), +(387,-93,l) +); +}, +{ +closed = 1; +nodes = ( +(693,733,l), +(662,784,o), +(604,820,o), +(540,820,cs), +(476,820,o), +(418,784,o), +(387,733,c) +); +}, +{ +closed = 1; +nodes = ( +(840,-56,o), +(916,20,o), +(916,114,c), +(746,114,l), +(746,-56,l) +); +}, +{ +closed = 1; +nodes = ( +(844,141,o), +(924,221,o), +(924,320,cs), +(924,419,o), +(844,499,o), +(746,499,c), +(746,141,l) +); +}, +{ +closed = 1; +nodes = ( +(916,526,l), +(916,620,o), +(840,696,o), +(746,696,c), +(746,526,l) +); +}, +{ +closed = 1; +nodes = ( +(1004,198,o), +(1040,256,o), +(1040,320,cs), +(1040,384,o), +(1004,442,o), +(953,473,c), +(953,167,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(639,141,o), +(719,221,o), +(719,320,cs), +(719,419,o), +(639,499,o), +(540,499,cs), +(441,499,o), +(361,419,o), +(361,320,cs), +(361,221,o), +(441,141,o), +(540,141,cs) +); +}, +{ +closed = 1; +nodes = ( +(334,114,l), +(164,114,l), +(164,20,o), +(240,-56,o), +(334,-56,c) +); +}, +{ +closed = 1; +nodes = ( +(127,473,l), +(76,442,o), +(40,384,o), +(40,320,cs), +(40,256,o), +(76,198,o), +(127,167,c) +); +}, +{ +closed = 1; +nodes = ( +(604,-180,o), +(662,-144,o), +(693,-93,c), +(387,-93,l), +(418,-144,o), +(476,-180,o), +(540,-180,cs) +); +}, +{ +closed = 1; +nodes = ( +(334,499,l), +(236,499,o), +(156,419,o), +(156,320,cs), +(156,221,o), +(236,141,o), +(334,141,c) +); +}, +{ +closed = 1; +nodes = ( +(639,-64,o), +(719,16,o), +(719,114,c), +(361,114,l), +(361,16,o), +(441,-64,o), +(540,-64,cs) +); +}, +{ +closed = 1; +nodes = ( +(334,526,l), +(334,696,l), +(240,696,o), +(164,620,o), +(164,526,c) +); +}, +{ +closed = 1; +nodes = ( +(840,-56,o), +(916,20,o), +(916,114,c), +(746,114,l), +(746,-56,l) +); +}, +{ +closed = 1; +nodes = ( +(719,526,l), +(719,624,o), +(639,704,o), +(540,704,cs), +(441,704,o), +(361,624,o), +(361,526,c) +); +}, +{ +closed = 1; +nodes = ( +(844,141,o), +(924,221,o), +(924,320,cs), +(924,419,o), +(844,499,o), +(746,499,c), +(746,141,l) +); +}, +{ +closed = 1; +nodes = ( +(693,733,l), +(662,784,o), +(604,820,o), +(540,820,cs), +(476,820,o), +(418,784,o), +(387,733,c) +); +}, +{ +closed = 1; +nodes = ( +(1004,198,o), +(1040,256,o), +(1040,320,cs), +(1040,384,o), +(1004,442,o), +(953,473,c), +(953,167,l) +); +}, +{ +closed = 1; +nodes = ( +(916,526,l), +(916,620,o), +(840,696,o), +(746,696,c), +(746,526,l) +); +} +); +width = 1080; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(40,256,o), +(76,198,o), +(127,167,c), +(127,473,l), +(76,442,o), +(40,384,o), +(40,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(156,221,o), +(236,141,o), +(334,141,c), +(334,499,l), +(236,499,o), +(156,419,o), +(156,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(164,20,o), +(240,-56,o), +(334,-56,c), +(334,114,l), +(164,114,l) +); +}, +{ +closed = 1; +nodes = ( +(334,526,l), +(334,696,l), +(240,696,o), +(164,620,o), +(164,526,c) +); +}, +{ +closed = 1; +nodes = ( +(361,16,o), +(441,-64,o), +(540,-64,cs), +(639,-64,o), +(719,16,o), +(719,114,c), +(361,114,l) +); +}, +{ +closed = 1; +nodes = ( +(361,221,o), +(441,141,o), +(540,141,cs), +(639,141,o), +(719,221,o), +(719,320,cs), +(719,419,o), +(639,499,o), +(540,499,cs), +(441,499,o), +(361,419,o), +(361,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(719,526,l), +(719,624,o), +(639,704,o), +(540,704,cs), +(441,704,o), +(361,624,o), +(361,526,c) +); +}, +{ +closed = 1; +nodes = ( +(418,-144,o), +(476,-180,o), +(540,-180,cs), +(604,-180,o), +(662,-144,o), +(693,-93,c), +(387,-93,l) +); +}, +{ +closed = 1; +nodes = ( +(693,733,l), +(662,784,o), +(604,820,o), +(540,820,cs), +(476,820,o), +(418,784,o), +(387,733,c) +); +}, +{ +closed = 1; +nodes = ( +(840,-56,o), +(916,20,o), +(916,114,c), +(746,114,l), +(746,-56,l) +); +}, +{ +closed = 1; +nodes = ( +(844,141,o), +(924,221,o), +(924,320,cs), +(924,419,o), +(844,499,o), +(746,499,c), +(746,141,l) +); +}, +{ +closed = 1; +nodes = ( +(916,526,l), +(916,620,o), +(840,696,o), +(746,696,c), +(746,526,l) +); +}, +{ +closed = 1; +nodes = ( +(1004,198,o), +(1040,256,o), +(1040,320,cs), +(1040,384,o), +(1004,442,o), +(953,473,c), +(953,167,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(40,256,o), +(76,198,o), +(127,167,c), +(127,473,l), +(76,442,o), +(40,384,o), +(40,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(156,221,o), +(236,141,o), +(334,141,c), +(334,499,l), +(236,499,o), +(156,419,o), +(156,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(164,20,o), +(240,-56,o), +(334,-56,c), +(334,114,l), +(164,114,l) +); +}, +{ +closed = 1; +nodes = ( +(334,526,l), +(334,696,l), +(240,696,o), +(164,620,o), +(164,526,c) +); +}, +{ +closed = 1; +nodes = ( +(361,16,o), +(441,-64,o), +(540,-64,cs), +(639,-64,o), +(719,16,o), +(719,114,c), +(361,114,l) +); +}, +{ +closed = 1; +nodes = ( +(361,221,o), +(441,141,o), +(540,141,cs), +(639,141,o), +(719,221,o), +(719,320,cs), +(719,419,o), +(639,499,o), +(540,499,cs), +(441,499,o), +(361,419,o), +(361,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(719,526,l), +(719,624,o), +(639,704,o), +(540,704,cs), +(441,704,o), +(361,624,o), +(361,526,c) +); +}, +{ +closed = 1; +nodes = ( +(418,-144,o), +(476,-180,o), +(540,-180,cs), +(604,-180,o), +(662,-144,o), +(693,-93,c), +(387,-93,l) +); +}, +{ +closed = 1; +nodes = ( +(693,733,l), +(662,784,o), +(604,820,o), +(540,820,cs), +(476,820,o), +(418,784,o), +(387,733,c) +); +}, +{ +closed = 1; +nodes = ( +(840,-56,o), +(916,20,o), +(916,114,c), +(746,114,l), +(746,-56,l) +); +}, +{ +closed = 1; +nodes = ( +(844,141,o), +(924,221,o), +(924,320,cs), +(924,419,o), +(844,499,o), +(746,499,c), +(746,141,l) +); +}, +{ +closed = 1; +nodes = ( +(916,526,l), +(916,620,o), +(840,696,o), +(746,696,c), +(746,526,l) +); +}, +{ +closed = 1; +nodes = ( +(1004,198,o), +(1040,256,o), +(1040,320,cs), +(1040,384,o), +(1004,442,o), +(953,473,c), +(953,167,l) +); +} +); +width = 1080; +} +); +}, +{ +color = 6; +glyphname = ijacute; +kernLeft = n; +kernRight = q; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(386,-190,o), +(457,-125,o), +(457,4,c), +(457,530,l), +(308,530,l), +(308,9,l), +(308,-33,o), +(284,-54,o), +(238,-54,c), +(215,-54,o), +(195,-49,o), +(175,-42,c), +(175,-175,l), +(203,-184,o), +(231,-190,o), +(269,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(202,0,l), +(202,530,l), +(53,530,l), +(53,0,l) +); +}, +{ +closed = 1; +nodes = ( +(172,585,l), +(297,730,l), +(140,730,l), +(60,585,l) +); +}, +{ +closed = 1; +nodes = ( +(427,585,l), +(552,730,l), +(395,730,l), +(315,585,l) +); +} +); +width = 510; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(337,-185,o), +(395,-123,o), +(395,-10,c), +(395,530,l), +(295,530,l), +(295,-7,l), +(295,-70,o), +(270,-94,o), +(213,-94,c), +(196,-94,o), +(175,-90,o), +(157,-83,c), +(157,-175,l), +(180,-182,o), +(203,-185,o), +(231,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(148,585,l), +(258,725,l), +(132,725,l), +(62,585,l) +); +}, +{ +closed = 1; +nodes = ( +(378,585,l), +(488,725,l), +(362,725,l), +(292,585,l) +); +} +); +width = 460; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(295,-70,o), +(270,-94,o), +(213,-94,c), +(196,-94,o), +(175,-90,o), +(157,-83,c), +(157,-175,l), +(180,-182,o), +(203,-185,o), +(231,-185,c), +(337,-185,o), +(395,-123,o), +(395,-10,c), +(395,530,l), +(295,530,l), +(295,-7,l) +); +}, +{ +closed = 1; +nodes = ( +(378,585,l), +(488,725,l), +(362,725,l), +(292,585,l) +); +}, +{ +closed = 1; +nodes = ( +(148,585,l), +(258,725,l), +(132,725,l), +(62,585,l) +); +} +); +width = 460; +} +); +}, +{ +color = 6; +glyphname = macronmodcomb; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(397,603,l), +(397,718,l), +(103,718,l), +(103,603,l) +); +} +); +width = 500; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(388,621,l), +(388,705,l), +(112,705,l), +(112,621,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(388,621,l), +(388,705,l), +(112,705,l), +(112,621,l) +); +} +); +width = 500; +} +); +} +); +instances = ( +{ +axesValues = ( +400 +); +instanceInterpolations = { +"0EB46722-B91C-41F5-AE00-C58F8D8E3AB4" = 1; +}; +name = Regular; +}, +{ +axesValues = ( +500 +); +instanceInterpolations = { +"0EB46722-B91C-41F5-AE00-C58F8D8E3AB4" = 0.66667; +m001 = 0.33333; +}; +name = Medium; +weightClass = 500; +}, +{ +axesValues = ( +600 +); +instanceInterpolations = { +"0EB46722-B91C-41F5-AE00-C58F8D8E3AB4" = 0.33333; +m001 = 0.66667; +}; +name = SemiBold; +weightClass = 600; +}, +{ +axesValues = ( +700 +); +instanceInterpolations = { +m001 = 1; +}; +isBold = 1; +name = Bold; +weightClass = 700; +} +); +kerningLTR = { +"0EB46722-B91C-41F5-AE00-C58F8D8E3AB4" = { +"@MMK_L_A" = { +"@MMK_R_I" = -80; +"@MMK_R_K" = 10; +"@MMK_R_L" = -20; +"@MMK_R_M" = -80; +"@MMK_R_O" = -20; +"@MMK_R_T" = -50; +"@MMK_R_U" = -10; +"@MMK_R_V" = -50; +"@MMK_R_W" = -20; +"@MMK_R_Y" = -50; +"@MMK_R_a" = -10; +"@MMK_R_f" = -10; +"@MMK_R_o" = -10; +"@MMK_R_s" = -5; +"@MMK_R_t" = -10; +"@MMK_R_u" = -5; +"@MMK_R_v" = -20; +"@MMK_R_w" = -10; +"@MMK_R_x" = -10; +backslash = -40; +question = -60; +}; +"@MMK_L_B" = { +"@MMK_R_B" = -20; +"@MMK_R_I" = -10; +"@MMK_R_M" = -20; +"@MMK_R_T" = -10; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_Y" = -30; +"@MMK_R_v" = -5; +"@MMK_R_x" = -10; +backslash = -10; +}; +"@MMK_L_C" = { +"@MMK_R_A" = -10; +"@MMK_R_B" = -30; +"@MMK_R_T" = -10; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -20; +"@MMK_R_Y" = -20; +}; +"@MMK_L_D" = { +"@MMK_R_A" = -20; +"@MMK_R_B" = -40; +}; +"@MMK_L_E" = { +"@MMK_R_o" = -10; +"@MMK_R_v" = -10; +"@MMK_R_x" = -10; +}; +"@MMK_L_F" = { +"@MMK_R_A" = -50; +"@MMK_R_B" = -90; +"@MMK_R_E" = -20; +"@MMK_R_J" = -60; +"@MMK_R_K" = -80; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -20; +"@MMK_R_Y" = -20; +"@MMK_R_Z" = -10; +"@MMK_R_a" = -10; +"@MMK_R_n" = -10; +"@MMK_R_o" = -20; +"@MMK_R_p" = -10; +"@MMK_R_s" = -20; +"@MMK_R_u" = -10; +"@MMK_R_v" = -10; +"@MMK_R_w" = -5; +"@MMK_R_x" = -30; +"@MMK_R_z" = -20; +ibreve = 10; +icircumflex = 20; +idieresis = 20; +igrave = 0; +imacron = 20; +itilde = 20; +slash = -20; +}; +"@MMK_L_G" = { +"@MMK_R_T" = -10; +"@MMK_R_V" = -10; +"@MMK_R_Y" = -10; +}; +"@MMK_L_I" = { +"@MMK_R_V" = -20; +"@MMK_R_Y" = -20; +}; +"@MMK_L_J" = { +"@MMK_R_B" = -50; +"@MMK_R_T" = -40; +"@MMK_R_V" = -30; +"@MMK_R_W" = -10; +"@MMK_R_X" = -20; +"@MMK_R_Y" = -40; +"@MMK_R_Z" = -20; +"@MMK_R_o" = 10; +}; +"@MMK_L_K" = { +"@MMK_R_T" = -40; +"@MMK_R_f" = 10; +"@MMK_R_t" = 10; +}; +"@MMK_L_L" = { +"@MMK_R_F" = -20; +"@MMK_R_I" = -80; +"@MMK_R_K" = 10; +"@MMK_R_L" = -60; +"@MMK_R_M" = -100; +"@MMK_R_O" = -20; +"@MMK_R_T" = -70; +"@MMK_R_U" = -10; +"@MMK_R_V" = -50; +"@MMK_R_W" = -30; +"@MMK_R_X" = -10; +"@MMK_R_Y" = -80; +"@MMK_R_a" = -10; +"@MMK_R_o" = -10; +"@MMK_R_t" = -10; +"@MMK_R_u" = -10; +"@MMK_R_v" = -20; +"@MMK_R_w" = -10; +backslash = -50; +periodcentered.loclCAT.case = -180; +question = -40; +}; +"@MMK_L_N" = { +"@MMK_R_A" = -80; +"@MMK_R_B" = -100; +"@MMK_R_J" = -100; +"@MMK_R_K" = -80; +"@MMK_R_O" = -10; +"@MMK_R_T" = 20; +"@MMK_R_V" = 10; +"@MMK_R_W" = 10; +"@MMK_R_X" = 10; +"@MMK_R_Y" = 10; +"@MMK_R_a" = -10; +"@MMK_R_f" = 20; +"@MMK_R_o" = -10; +"@MMK_R_t" = 10; +"@MMK_R_v" = 10; +"@MMK_R_w" = 10; +eth = -30; +}; +"@MMK_L_O" = { +"@MMK_R_A" = -20; +"@MMK_R_B" = -50; +"@MMK_R_I" = -10; +"@MMK_R_K" = -10; +"@MMK_R_T" = -20; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -20; +"@MMK_R_Y" = -30; +"@MMK_R_Z" = -10; +backslash = -10; +slash = -10; +}; +"@MMK_L_P" = { +"@MMK_R_A" = -50; +"@MMK_R_B" = -80; +"@MMK_R_J" = -70; +"@MMK_R_K" = -80; +"@MMK_R_T" = -10; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -30; +"@MMK_R_Y" = -30; +"@MMK_R_a" = -10; +"@MMK_R_o" = -10; +"@MMK_R_s" = -10; +"@MMK_R_x" = -10; +slash = -40; +}; +"@MMK_L_Q" = { +"@MMK_R_A" = 10; +"@MMK_R_B" = 20; +"@MMK_R_I" = -80; +"@MMK_R_J" = 10; +"@MMK_R_O" = -10; +"@MMK_R_T" = -80; +"@MMK_R_V" = -60; +"@MMK_R_W" = -30; +"@MMK_R_X" = 10; +"@MMK_R_Y" = -50; +"@MMK_R_f" = -20; +"@MMK_R_j" = 50; +"@MMK_R_t" = -20; +"@MMK_R_v" = -30; +"@MMK_R_w" = -20; +"@MMK_R_x" = 10; +}; +"@MMK_L_R" = { +"@MMK_R_B" = -20; +"@MMK_R_J" = -20; +"@MMK_R_L" = -10; +"@MMK_R_T" = -10; +"@MMK_R_V" = -10; +"@MMK_R_W" = -5; +"@MMK_R_Y" = -15; +"@MMK_R_o" = -10; +"@MMK_R_s" = -5; +"@MMK_R_v" = -5; +}; +"@MMK_L_S" = { +"@MMK_R_B" = -20; +"@MMK_R_T" = -10; +"@MMK_R_V" = -10; +"@MMK_R_Y" = -20; +}; +"@MMK_L_T" = { +"@MMK_R_A" = -50; +"@MMK_R_B" = -100; +"@MMK_R_C" = -20; +"@MMK_R_E" = -40; +"@MMK_R_F" = -40; +"@MMK_R_I" = 20; +"@MMK_R_J" = -60; +"@MMK_R_K" = -80; +"@MMK_R_L" = -60; +"@MMK_R_O" = -20; +"@MMK_R_T" = -10; +"@MMK_R_V" = -10; +"@MMK_R_W" = -5; +"@MMK_R_X" = -10; +"@MMK_R_Z" = -10; +"@MMK_R_a" = -40; +"@MMK_R_n" = -20; +"@MMK_R_o" = -40; +"@MMK_R_p" = -20; +"@MMK_R_s" = -40; +"@MMK_R_u" = -20; +"@MMK_R_v" = -30; +"@MMK_R_w" = -20; +"@MMK_R_x" = -30; +"@MMK_R_z" = -20; +Germandbls = -10; +ibreve = 20; +icircumflex = 40; +idieresis = 40; +igrave = 20; +imacron = 30; +itilde = 40; +slash = -30; +}; +"@MMK_L_U" = { +"@MMK_R_A" = -10; +"@MMK_R_B" = -40; +}; +"@MMK_L_V" = { +"@MMK_R_A" = -50; +"@MMK_R_B" = -90; +"@MMK_R_C" = -20; +"@MMK_R_D" = -20; +"@MMK_R_F" = -30; +"@MMK_R_I" = 10; +"@MMK_R_J" = -50; +"@MMK_R_K" = -60; +"@MMK_R_L" = -20; +"@MMK_R_O" = -20; +"@MMK_R_S" = -5; +"@MMK_R_T" = -10; +"@MMK_R_Z" = -10; +"@MMK_R_a" = -30; +"@MMK_R_n" = -20; +"@MMK_R_o" = -30; +"@MMK_R_p" = -20; +"@MMK_R_s" = -20; +"@MMK_R_u" = -20; +"@MMK_R_v" = -20; +"@MMK_R_w" = -10; +"@MMK_R_x" = -25; +"@MMK_R_z" = -20; +Germandbls = -20; +ibreve = 30; +icircumflex = 20; +idieresis = 30; +igrave = 20; +imacron = 30; +itilde = 20; +slash = -40; +}; +"@MMK_L_W" = { +"@MMK_R_A" = -20; +"@MMK_R_B" = -60; +"@MMK_R_C" = -10; +"@MMK_R_F" = -10; +"@MMK_R_I" = 10; +"@MMK_R_J" = -30; +"@MMK_R_K" = -30; +"@MMK_R_L" = -10; +"@MMK_R_O" = -10; +"@MMK_R_T" = -5; +"@MMK_R_a" = -15; +"@MMK_R_n" = -10; +"@MMK_R_o" = -15; +"@MMK_R_p" = -10; +"@MMK_R_s" = -15; +"@MMK_R_u" = -10; +"@MMK_R_v" = -5; +"@MMK_R_x" = -10; +"@MMK_R_z" = -10; +Germandbls = -10; +ibreve = 20; +icircumflex = 20; +idieresis = 30; +igrave = 10; +imacron = 30; +itilde = 30; +slash = -30; +}; +"@MMK_L_X" = { +"@MMK_R_B" = -20; +"@MMK_R_F" = -20; +"@MMK_R_I" = 10; +"@MMK_R_J" = -20; +"@MMK_R_K" = 10; +"@MMK_R_L" = -30; +"@MMK_R_O" = -20; +"@MMK_R_T" = -10; +"@MMK_R_a" = -10; +"@MMK_R_o" = -15; +"@MMK_R_s" = -10; +"@MMK_R_u" = -10; +"@MMK_R_v" = -10; +"@MMK_R_w" = -5; +ibreve = 10; +idieresis = 20; +imacron = 20; +}; +"@MMK_L_Y" = { +"@MMK_R_A" = -50; +"@MMK_R_B" = -80; +"@MMK_R_C" = -30; +"@MMK_R_D" = -20; +"@MMK_R_F" = -40; +"@MMK_R_I" = 10; +"@MMK_R_J" = -80; +"@MMK_R_K" = -50; +"@MMK_R_L" = -40; +"@MMK_R_O" = -30; +"@MMK_R_S" = -20; +"@MMK_R_a" = -30; +"@MMK_R_n" = -20; +"@MMK_R_o" = -30; +"@MMK_R_p" = -20; +"@MMK_R_s" = -25; +"@MMK_R_u" = -20; +"@MMK_R_v" = -10; +"@MMK_R_x" = -25; +"@MMK_R_z" = -20; +Germandbls = -20; +ibreve = 30; +icircumflex = 10; +idieresis = 40; +igrave = 20; +imacron = 30; +itilde = 20; +slash = -30; +}; +"@MMK_L_Z" = { +"@MMK_R_F" = -30; +"@MMK_R_L" = -30; +"@MMK_R_O" = -10; +"@MMK_R_T" = -10; +"@MMK_R_V" = -10; +"@MMK_R_o" = -10; +"@MMK_R_v" = -10; +"@MMK_R_w" = -5; +}; +"@MMK_L_a" = { +"@MMK_R_A" = -20; +"@MMK_R_B" = -80; +"@MMK_R_J" = -20; +"@MMK_R_T" = -60; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -30; +"@MMK_R_Y" = -40; +"@MMK_R_Z" = -30; +"@MMK_R_f" = -10; +"@MMK_R_x" = -30; +"@MMK_R_z" = -20; +Dcroat = 20; +eth = 10; +}; +"@MMK_L_b" = { +"@MMK_R_A" = -80; +"@MMK_R_B" = -100; +"@MMK_R_J" = -100; +"@MMK_R_t" = 10; +"@MMK_R_v" = 10; +"@MMK_R_w" = 10; +eth = -20; +}; +"@MMK_L_c" = { +"@MMK_R_I" = -10; +}; +"@MMK_L_dcaron" = { +"@MMK_R_H" = 60; +"@MMK_R_l" = 80; +"@MMK_R_n" = 60; +}; +"@MMK_L_f" = { +"@MMK_R_F" = -10; +"@MMK_R_I" = 30; +"@MMK_R_K" = -40; +"@MMK_R_L" = -40; +"@MMK_R_M" = 10; +ibreve = 30; +icircumflex = 20; +idieresis = 40; +igrave = 30; +imacron = 30; +itilde = 30; +slash = -30; +}; +"@MMK_L_lcaron" = { +"@MMK_R_H" = 60; +"@MMK_R_l" = 80; +"@MMK_R_n" = 60; +}; +"@MMK_L_n" = { +"@MMK_R_I" = -10; +backslash = -10; +}; +"@MMK_L_o" = { +"@MMK_R_F" = 10; +"@MMK_R_I" = -10; +"@MMK_R_x" = -10; +}; +"@MMK_L_q" = { +"@MMK_R_j" = 20; +}; +"@MMK_L_r" = { +"@MMK_R_I" = 10; +"@MMK_R_K" = -40; +"@MMK_R_L" = -20; +"@MMK_R_M" = 10; +slash = -10; +}; +"@MMK_L_s" = { +"@MMK_R_I" = -10; +}; +"@MMK_L_t" = { +"@MMK_R_L" = -10; +"@MMK_R_M" = 10; +}; +"@MMK_L_tcaron" = { +"@MMK_R_H" = 60; +"@MMK_R_l" = 100; +"@MMK_R_n" = 60; +}; +"@MMK_L_v" = { +"@MMK_R_I" = 10; +"@MMK_R_K" = -30; +"@MMK_R_M" = 10; +slash = -10; +}; +"@MMK_L_w" = { +"@MMK_R_I" = 10; +"@MMK_R_K" = -20; +"@MMK_R_M" = 10; +}; +"@MMK_L_x" = { +"@MMK_R_K" = 10; +"@MMK_R_L" = -30; +"@MMK_R_o" = -10; +backslash = -20; +}; +"@MMK_L_z" = { +"@MMK_R_L" = -20; +backslash = -20; +}; +Germandbls = { +"@MMK_R_I" = -20; +"@MMK_R_M" = -20; +"@MMK_R_T" = -20; +"@MMK_R_U" = -10; +"@MMK_R_V" = -40; +"@MMK_R_W" = -20; +"@MMK_R_Y" = -40; +"@MMK_R_v" = -10; +"@MMK_R_w" = -5; +"@MMK_R_x" = -10; +backslash = -30; +question = -20; +}; +Thorn = { +"@MMK_R_A" = -40; +"@MMK_R_B" = -80; +"@MMK_R_J" = -10; +"@MMK_R_K" = -50; +"@MMK_R_L" = 10; +"@MMK_R_S" = -10; +"@MMK_R_T" = -20; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -40; +"@MMK_R_Y" = -30; +"@MMK_R_Z" = -20; +}; +backslash = { +"@MMK_R_O" = -10; +"@MMK_R_T" = -30; +"@MMK_R_V" = -40; +"@MMK_R_W" = -30; +"@MMK_R_Y" = -30; +"@MMK_R_j" = 90; +"@MMK_R_v" = -10; +}; +dcaron = { +"@MMK_R_E" = 10; +"@MMK_R_K" = -20; +"@MMK_R_L" = -30; +"@MMK_R_M" = 30; +backslash = 30; +}; +eth = { +"@MMK_R_I" = -20; +"@MMK_R_L" = 10; +backslash = -20; +}; +four = { +seven = -10; +}; +germandbls = { +"@MMK_R_I" = -40; +"@MMK_R_M" = -40; +backslash = -30; +question = -40; +}; +iacute = { +"@MMK_R_Y" = 10; +}; +ibreve = { +"@MMK_R_T" = 20; +"@MMK_R_V" = 30; +"@MMK_R_W" = 20; +"@MMK_R_X" = 10; +"@MMK_R_Y" = 30; +}; +icircumflex = { +"@MMK_R_T" = 40; +"@MMK_R_V" = 20; +"@MMK_R_W" = 20; +"@MMK_R_Y" = 10; +}; +idieresis = { +"@MMK_R_T" = 40; +"@MMK_R_V" = 30; +"@MMK_R_W" = 30; +"@MMK_R_X" = 20; +"@MMK_R_Y" = 40; +}; +imacron = { +"@MMK_R_T" = 30; +"@MMK_R_V" = 30; +"@MMK_R_W" = 30; +"@MMK_R_X" = 20; +"@MMK_R_Y" = 30; +}; +itilde = { +"@MMK_R_T" = 40; +"@MMK_R_V" = 40; +"@MMK_R_W" = 30; +"@MMK_R_X" = 30; +"@MMK_R_Y" = 40; +}; +questiondown = { +"@MMK_R_J" = -50; +"@MMK_R_O" = -60; +"@MMK_R_T" = -100; +"@MMK_R_U" = -70; +"@MMK_R_V" = -80; +"@MMK_R_W" = -50; +"@MMK_R_Y" = -100; +"@MMK_R_j" = 30; +}; +seven = { +eight = -10; +four = -40; +seven = -10; +six = -10; +three = -10; +two = -10; +zero = -10; +}; +slash = { +"@MMK_R_A" = -40; +"@MMK_R_B" = -80; +"@MMK_R_J" = -40; +"@MMK_R_O" = -10; +"@MMK_R_x" = -20; +"@MMK_R_z" = -20; +eth = -30; +}; +two = { +four = -20; +seven = -10; +}; +}; +m001 = { +"@MMK_L_A" = { +"@MMK_R_I" = -80; +"@MMK_R_K" = 10; +"@MMK_R_L" = -20; +"@MMK_R_M" = -80; +"@MMK_R_O" = -20; +"@MMK_R_T" = -50; +"@MMK_R_U" = -10; +"@MMK_R_V" = -40; +"@MMK_R_W" = -20; +"@MMK_R_Y" = -50; +"@MMK_R_f" = -10; +"@MMK_R_o" = -10; +"@MMK_R_s" = -5; +"@MMK_R_t" = -10; +"@MMK_R_u" = -5; +"@MMK_R_v" = -20; +"@MMK_R_w" = -10; +"@MMK_R_x" = -10; +backslash = -40; +question = -60; +}; +"@MMK_L_B" = { +"@MMK_R_B" = -20; +"@MMK_R_I" = -10; +"@MMK_R_M" = -20; +"@MMK_R_T" = -10; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_Y" = -30; +"@MMK_R_v" = -5; +"@MMK_R_x" = -10; +backslash = -10; +}; +"@MMK_L_C" = { +"@MMK_R_A" = -10; +"@MMK_R_B" = -30; +"@MMK_R_T" = -10; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -20; +"@MMK_R_Y" = -20; +}; +"@MMK_L_D" = { +"@MMK_R_A" = -20; +"@MMK_R_B" = -40; +}; +"@MMK_L_E" = { +"@MMK_R_o" = -10; +"@MMK_R_v" = -10; +"@MMK_R_x" = -10; +icircumflex = 20; +idieresis = 20; +itilde = 10; +}; +"@MMK_L_F" = { +"@MMK_R_A" = -50; +"@MMK_R_B" = -90; +"@MMK_R_E" = -20; +"@MMK_R_J" = -60; +"@MMK_R_K" = -80; +"@MMK_R_V" = -10; +"@MMK_R_W" = -10; +"@MMK_R_X" = -20; +"@MMK_R_Y" = -10; +"@MMK_R_Z" = -10; +"@MMK_R_a" = -20; +"@MMK_R_n" = -10; +"@MMK_R_o" = -20; +"@MMK_R_p" = -10; +"@MMK_R_s" = -20; +"@MMK_R_u" = -10; +"@MMK_R_v" = -10; +"@MMK_R_w" = -5; +"@MMK_R_x" = -30; +"@MMK_R_z" = -20; +ibreve = 10; +icircumflex = 30; +idieresis = 40; +igrave = 10; +imacron = 20; +itilde = 30; +slash = -20; +}; +"@MMK_L_G" = { +"@MMK_R_T" = -10; +"@MMK_R_V" = -10; +"@MMK_R_Y" = -20; +}; +"@MMK_L_I" = { +"@MMK_R_V" = -20; +"@MMK_R_Y" = -20; +}; +"@MMK_L_J" = { +"@MMK_R_B" = -50; +"@MMK_R_T" = -40; +"@MMK_R_V" = -30; +"@MMK_R_W" = -10; +"@MMK_R_X" = -20; +"@MMK_R_Y" = -40; +"@MMK_R_Z" = -20; +"@MMK_R_o" = 10; +}; +"@MMK_L_K" = { +"@MMK_R_T" = -40; +"@MMK_R_f" = 20; +"@MMK_R_t" = 20; +}; +"@MMK_L_L" = { +"@MMK_R_F" = -20; +"@MMK_R_I" = -80; +"@MMK_R_K" = 10; +"@MMK_R_L" = -60; +"@MMK_R_M" = -100; +"@MMK_R_O" = -20; +"@MMK_R_T" = -80; +"@MMK_R_U" = -10; +"@MMK_R_V" = -50; +"@MMK_R_W" = -30; +"@MMK_R_X" = -10; +"@MMK_R_Y" = -90; +"@MMK_R_a" = -10; +"@MMK_R_o" = -10; +"@MMK_R_t" = -10; +"@MMK_R_u" = -10; +"@MMK_R_v" = -30; +"@MMK_R_w" = -10; +backslash = -50; +periodcentered.loclCAT.case = -180; +question = -40; +}; +"@MMK_L_N" = { +"@MMK_R_A" = -80; +"@MMK_R_B" = -100; +"@MMK_R_J" = -100; +"@MMK_R_K" = -100; +"@MMK_R_O" = -10; +"@MMK_R_T" = 20; +"@MMK_R_V" = 10; +"@MMK_R_W" = 10; +"@MMK_R_X" = 10; +"@MMK_R_Y" = 10; +"@MMK_R_a" = -10; +"@MMK_R_f" = 20; +"@MMK_R_o" = -10; +"@MMK_R_t" = 10; +"@MMK_R_v" = 10; +"@MMK_R_w" = 10; +eth = -30; +}; +"@MMK_L_O" = { +"@MMK_R_A" = -20; +"@MMK_R_B" = -50; +"@MMK_R_I" = -10; +"@MMK_R_K" = -10; +"@MMK_R_T" = -20; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -20; +"@MMK_R_Y" = -30; +"@MMK_R_Z" = -10; +backslash = -10; +slash = -10; +}; +"@MMK_L_P" = { +"@MMK_R_A" = -50; +"@MMK_R_B" = -90; +"@MMK_R_J" = -70; +"@MMK_R_K" = -80; +"@MMK_R_T" = -10; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -30; +"@MMK_R_Y" = -40; +"@MMK_R_a" = -10; +"@MMK_R_o" = -10; +"@MMK_R_s" = -10; +"@MMK_R_x" = -10; +slash = -40; +}; +"@MMK_L_Q" = { +"@MMK_R_A" = 10; +"@MMK_R_B" = 20; +"@MMK_R_I" = -100; +"@MMK_R_J" = 10; +"@MMK_R_O" = -10; +"@MMK_R_T" = -80; +"@MMK_R_V" = -60; +"@MMK_R_W" = -30; +"@MMK_R_X" = 10; +"@MMK_R_Y" = -50; +"@MMK_R_f" = -20; +"@MMK_R_j" = 50; +"@MMK_R_t" = -20; +"@MMK_R_v" = -30; +"@MMK_R_w" = -20; +"@MMK_R_x" = 10; +}; +"@MMK_L_R" = { +"@MMK_R_B" = -20; +"@MMK_R_J" = -20; +"@MMK_R_L" = -10; +"@MMK_R_T" = -10; +"@MMK_R_V" = -10; +"@MMK_R_W" = -5; +"@MMK_R_Y" = -20; +"@MMK_R_o" = -10; +"@MMK_R_s" = -5; +"@MMK_R_v" = -5; +}; +"@MMK_L_S" = { +"@MMK_R_B" = -20; +"@MMK_R_T" = -10; +"@MMK_R_V" = -10; +"@MMK_R_Y" = -20; +}; +"@MMK_L_T" = { +"@MMK_R_A" = -50; +"@MMK_R_B" = -100; +"@MMK_R_C" = -20; +"@MMK_R_E" = -40; +"@MMK_R_F" = -40; +"@MMK_R_I" = 20; +"@MMK_R_J" = -60; +"@MMK_R_K" = -80; +"@MMK_R_L" = -60; +"@MMK_R_O" = -20; +"@MMK_R_T" = -10; +"@MMK_R_W" = -5; +"@MMK_R_X" = -10; +"@MMK_R_Z" = -10; +"@MMK_R_a" = -35; +"@MMK_R_n" = -20; +"@MMK_R_o" = -40; +"@MMK_R_p" = -20; +"@MMK_R_s" = -40; +"@MMK_R_u" = -20; +"@MMK_R_v" = -30; +"@MMK_R_w" = -20; +"@MMK_R_x" = -30; +"@MMK_R_z" = -20; +Germandbls = -10; +ibreve = 10; +icircumflex = 40; +idieresis = 40; +igrave = 10; +imacron = 20; +itilde = 30; +slash = -30; +}; +"@MMK_L_U" = { +"@MMK_R_A" = -10; +"@MMK_R_B" = -40; +}; +"@MMK_L_V" = { +"@MMK_R_A" = -40; +"@MMK_R_B" = -90; +"@MMK_R_C" = -20; +"@MMK_R_D" = -20; +"@MMK_R_F" = -30; +"@MMK_R_I" = 10; +"@MMK_R_J" = -50; +"@MMK_R_K" = -60; +"@MMK_R_L" = -30; +"@MMK_R_O" = -20; +"@MMK_R_S" = -5; +"@MMK_R_Z" = -10; +"@MMK_R_a" = -30; +"@MMK_R_n" = -20; +"@MMK_R_o" = -35; +"@MMK_R_p" = -20; +"@MMK_R_s" = -20; +"@MMK_R_u" = -20; +"@MMK_R_v" = -20; +"@MMK_R_w" = -10; +"@MMK_R_x" = -25; +"@MMK_R_z" = -20; +Germandbls = -20; +ibreve = 30; +icircumflex = 30; +idieresis = 50; +igrave = 30; +imacron = 30; +itilde = 30; +slash = -40; +}; +"@MMK_L_W" = { +"@MMK_R_A" = -20; +"@MMK_R_B" = -60; +"@MMK_R_C" = -10; +"@MMK_R_F" = -10; +"@MMK_R_I" = 10; +"@MMK_R_J" = -30; +"@MMK_R_K" = -30; +"@MMK_R_L" = -10; +"@MMK_R_O" = -10; +"@MMK_R_T" = -5; +"@MMK_R_a" = -15; +"@MMK_R_n" = -10; +"@MMK_R_o" = -15; +"@MMK_R_p" = -10; +"@MMK_R_s" = -15; +"@MMK_R_u" = -10; +"@MMK_R_v" = -5; +"@MMK_R_x" = -10; +"@MMK_R_z" = -10; +Germandbls = -10; +ibreve = 30; +icircumflex = 40; +idieresis = 50; +igrave = 20; +imacron = 30; +itilde = 30; +slash = -30; +}; +"@MMK_L_X" = { +"@MMK_R_B" = -20; +"@MMK_R_F" = -20; +"@MMK_R_I" = 10; +"@MMK_R_J" = -20; +"@MMK_R_K" = 10; +"@MMK_R_L" = -40; +"@MMK_R_O" = -20; +"@MMK_R_T" = -10; +"@MMK_R_a" = -10; +"@MMK_R_o" = -25; +"@MMK_R_s" = -10; +"@MMK_R_u" = -10; +"@MMK_R_v" = -20; +"@MMK_R_w" = -5; +ibreve = 20; +idieresis = 40; +igrave = 20; +imacron = 20; +itilde = 10; +}; +"@MMK_L_Y" = { +"@MMK_R_A" = -50; +"@MMK_R_B" = -80; +"@MMK_R_C" = -30; +"@MMK_R_D" = -20; +"@MMK_R_F" = -40; +"@MMK_R_I" = 10; +"@MMK_R_J" = -80; +"@MMK_R_K" = -50; +"@MMK_R_L" = -70; +"@MMK_R_O" = -30; +"@MMK_R_S" = -20; +"@MMK_R_a" = -30; +"@MMK_R_n" = -20; +"@MMK_R_o" = -30; +"@MMK_R_p" = -20; +"@MMK_R_s" = -25; +"@MMK_R_u" = -20; +"@MMK_R_v" = -10; +"@MMK_R_x" = -25; +"@MMK_R_z" = -20; +Germandbls = -20; +ibreve = 30; +icircumflex = 10; +idieresis = 50; +igrave = 20; +imacron = 30; +itilde = 20; +slash = -30; +}; +"@MMK_L_Z" = { +"@MMK_R_F" = -30; +"@MMK_R_L" = -30; +"@MMK_R_O" = -10; +"@MMK_R_T" = -10; +"@MMK_R_V" = -10; +"@MMK_R_o" = -10; +"@MMK_R_v" = -10; +"@MMK_R_w" = -5; +icircumflex = 20; +idieresis = 20; +imacron = 10; +itilde = 10; +}; +"@MMK_L_a" = { +"@MMK_R_A" = -20; +"@MMK_R_B" = -80; +"@MMK_R_J" = -20; +"@MMK_R_T" = -60; +"@MMK_R_V" = -30; +"@MMK_R_W" = -10; +"@MMK_R_X" = -40; +"@MMK_R_Y" = -70; +"@MMK_R_Z" = -30; +"@MMK_R_f" = -10; +"@MMK_R_x" = -40; +"@MMK_R_z" = -20; +Dcroat = 20; +eth = 10; +}; +"@MMK_L_b" = { +"@MMK_R_A" = -80; +"@MMK_R_B" = -100; +"@MMK_R_J" = -100; +"@MMK_R_t" = 10; +"@MMK_R_v" = 10; +"@MMK_R_w" = 10; +eth = -20; +}; +"@MMK_L_c" = { +"@MMK_R_I" = -10; +}; +"@MMK_L_dcaron" = { +"@MMK_R_l" = 140; +}; +"@MMK_L_f" = { +"@MMK_R_I" = 40; +"@MMK_R_K" = -40; +"@MMK_R_L" = -30; +"@MMK_R_M" = 20; +ibreve = 40; +icircumflex = 60; +idieresis = 70; +igrave = 50; +imacron = 50; +itilde = 60; +slash = -30; +}; +"@MMK_L_lcaron" = { +"@MMK_R_l" = 140; +}; +"@MMK_L_n" = { +"@MMK_R_I" = -10; +backslash = -10; +}; +"@MMK_L_o" = { +"@MMK_R_F" = 10; +"@MMK_R_I" = -10; +"@MMK_R_x" = -10; +}; +"@MMK_L_q" = { +"@MMK_R_j" = 20; +idieresis = 20; +}; +"@MMK_L_r" = { +"@MMK_R_I" = 10; +"@MMK_R_K" = -40; +"@MMK_R_L" = -10; +"@MMK_R_M" = 10; +slash = -10; +}; +"@MMK_L_s" = { +"@MMK_R_I" = -10; +}; +"@MMK_L_t" = { +"@MMK_R_L" = -10; +"@MMK_R_M" = 10; +}; +"@MMK_L_tcaron" = { +"@MMK_R_H" = 120; +"@MMK_R_a" = 120; +"@MMK_R_l" = 140; +"@MMK_R_n" = 120; +"@MMK_R_o" = 80; +}; +"@MMK_L_v" = { +"@MMK_R_I" = 10; +"@MMK_R_K" = -30; +"@MMK_R_M" = 10; +slash = -10; +}; +"@MMK_L_w" = { +"@MMK_R_I" = 10; +"@MMK_R_K" = -20; +"@MMK_R_M" = 10; +}; +"@MMK_L_x" = { +"@MMK_R_K" = 10; +"@MMK_R_L" = -50; +"@MMK_R_o" = -20; +backslash = -20; +}; +"@MMK_L_z" = { +"@MMK_R_L" = -20; +backslash = -20; +}; +Germandbls = { +"@MMK_R_I" = -20; +"@MMK_R_M" = -30; +"@MMK_R_T" = -20; +"@MMK_R_U" = -10; +"@MMK_R_V" = -40; +"@MMK_R_W" = -20; +"@MMK_R_Y" = -40; +"@MMK_R_v" = -10; +"@MMK_R_w" = -5; +"@MMK_R_x" = -10; +backslash = -30; +question = -20; +}; +Thorn = { +"@MMK_R_A" = -40; +"@MMK_R_B" = -80; +"@MMK_R_J" = -10; +"@MMK_R_K" = -50; +"@MMK_R_L" = 10; +"@MMK_R_S" = -10; +"@MMK_R_T" = -20; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -40; +"@MMK_R_Y" = -30; +"@MMK_R_Z" = -20; +}; +backslash = { +"@MMK_R_O" = -10; +"@MMK_R_T" = -30; +"@MMK_R_V" = -40; +"@MMK_R_W" = -30; +"@MMK_R_Y" = -30; +"@MMK_R_j" = 90; +"@MMK_R_v" = -10; +}; +dcaron = { +"@MMK_R_E" = 10; +"@MMK_R_H" = 140; +"@MMK_R_K" = -20; +"@MMK_R_L" = -30; +"@MMK_R_M" = 30; +"@MMK_R_a" = 80; +"@MMK_R_n" = 120; +"@MMK_R_o" = 80; +backslash = 30; +}; +eth = { +"@MMK_R_I" = -20; +"@MMK_R_L" = 10; +backslash = -20; +}; +four = { +seven = -10; +}; +germandbls = { +"@MMK_R_I" = -40; +"@MMK_R_M" = -40; +backslash = -30; +question = -40; +}; +iacute = { +"@MMK_R_T" = 10; +"@MMK_R_V" = 20; +"@MMK_R_W" = 20; +"@MMK_R_X" = 10; +"@MMK_R_Y" = 20; +}; +ibreve = { +"@MMK_R_T" = 10; +"@MMK_R_V" = 30; +"@MMK_R_W" = 30; +"@MMK_R_X" = 20; +"@MMK_R_Y" = 30; +}; +icircumflex = { +"@MMK_R_T" = 40; +"@MMK_R_V" = 30; +"@MMK_R_W" = 40; +"@MMK_R_Y" = 10; +"@MMK_R_Z" = 20; +}; +idieresis = { +"@MMK_R_T" = 40; +"@MMK_R_V" = 50; +"@MMK_R_W" = 50; +"@MMK_R_X" = 40; +"@MMK_R_Y" = 50; +"@MMK_R_Z" = 20; +"@MMK_R_j" = 20; +}; +imacron = { +"@MMK_R_T" = 20; +"@MMK_R_V" = 30; +"@MMK_R_W" = 30; +"@MMK_R_X" = 20; +"@MMK_R_Y" = 30; +"@MMK_R_Z" = 10; +}; +itilde = { +"@MMK_R_T" = 30; +"@MMK_R_V" = 40; +"@MMK_R_W" = 40; +"@MMK_R_X" = 30; +"@MMK_R_Y" = 40; +"@MMK_R_Z" = 10; +}; +lcaron = { +"@MMK_R_H" = 140; +"@MMK_R_a" = 100; +"@MMK_R_n" = 120; +"@MMK_R_o" = 80; +}; +questiondown = { +"@MMK_R_J" = -50; +"@MMK_R_O" = -60; +"@MMK_R_T" = -100; +"@MMK_R_U" = -70; +"@MMK_R_V" = -80; +"@MMK_R_W" = -50; +"@MMK_R_Y" = -100; +"@MMK_R_j" = 50; +}; +seven = { +eight = -10; +four = -40; +seven = -10; +six = -10; +three = -10; +two = -10; +zero = -10; +}; +slash = { +"@MMK_R_A" = -40; +"@MMK_R_B" = -80; +"@MMK_R_J" = -40; +"@MMK_R_O" = -10; +"@MMK_R_x" = -20; +"@MMK_R_z" = -20; +eth = -30; +}; +two = { +four = -20; +seven = -10; +}; +}; +}; +metrics = ( +{ +type = ascender; +}, +{ +type = "cap height"; +}, +{ +type = "x-height"; +}, +{ +type = baseline; +}, +{ +type = descender; +} +); +properties = ( +{ +key = copyrights; +values = ( +{ +language = dflt; +value = "Copyright 2022 The Radio Canada Display Project Authors (https://github.com/googlefonts/radiocanadadisplay)"; +} +); +}, +{ +key = designers; +values = ( +{ +language = dflt; +value = "Étienne Aubert Bonn"; +} +); +}, +{ +key = designerURL; +value = "http://www.coppersandbrasses.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://openfontlicense.org"; +} +); +}, +{ +key = licenseURL; +value = "https://openfontlicense.org"; +}, +{ +key = manufacturers; +values = ( +{ +language = dflt; +value = "Coppers and Brasses"; +} +); +}, +{ +key = manufacturerURL; +value = "http://www.coppersandbrasses.com"; +}, +{ +key = vendorID; +value = "C&B "; +} +); +stems = ( +{ +name = vStem0; +}, +{ +name = vStem0; +}, +{ +name = vStem0; +}, +{ +horizontal = 1; +name = hStem0; +}, +{ +horizontal = 1; +name = hStem0; +}, +{ +horizontal = 1; +name = hStem0; +}, +{ +name = vStem0; +}, +{ +name = vStem0; +}, +{ +horizontal = 1; +name = hStem0; +}, +{ +horizontal = 1; +name = hStem0; +} +); +unitsPerEm = 1000; +userData = { +UFO.lib = { +com.defcon.sortDescriptor = ( +{ +allowPseudoUnicode = 0; +ascending = "Radio-Canada Display"; +type = characterSet; +} +); +com.typemytype.robofont.compileSettings.autohint = 1; +com.typemytype.robofont.compileSettings.checkOutlines = 1; +com.typemytype.robofont.compileSettings.createDummyDSIG = 1; +com.typemytype.robofont.compileSettings.decompose = 1; +com.typemytype.robofont.compileSettings.generateFormat = 0; +com.typemytype.robofont.compileSettings.releaseMode = 1; +com.typemytype.robofont.generateFeaturesWithFontTools = 0; +com.typemytype.robofont.italicSlantOffset = 0; +com.typemytype.robofont.shouldAddPointsInSplineConversion = 1; +com.typesupply.metricsMachine4.groupColors = { +public.kern1.A = ( +1, +0, +0, +0.25 +); +public.kern1.B = ( +1, +0.5, +0, +0.25 +); +public.kern1.C = ( +1, +1, +0, +0.25 +); +public.kern1.D = ( +0, +1, +0, +0.25 +); +public.kern1.E = ( +0, +1, +1, +0.25 +); +public.kern1.F = ( +0, +0.5, +1, +0.25 +); +public.kern1.G = ( +0, +0, +1, +0.25 +); +public.kern1.H = ( +0.5, +0, +1, +0.25 +); +public.kern1.I = ( +1, +0, +0.5, +0.25 +); +public.kern1.J = ( +1, +0.5, +0, +0.25 +); +public.kern1.K = ( +1, +0, +0, +0.25 +); +public.kern1.L = ( +1, +0, +0, +0.25 +); +public.kern1.M = ( +0, +1, +1, +0.25 +); +public.kern1.N = ( +0, +0.5, +1, +0.25 +); +public.kern1.O = ( +0, +1, +0, +0.25 +); +public.kern1.P = ( +1, +0.5, +0, +0.25 +); +public.kern1.Q = ( +0.5, +0, +1, +0.25 +); +public.kern1.R = ( +1, +1, +0, +0.25 +); +public.kern1.S = ( +0, +1, +0, +0.25 +); +public.kern1.T = ( +0, +1, +1, +0.25 +); +public.kern1.U = ( +1, +0, +1, +0.25 +); +public.kern1.V = ( +0, +0.5, +1, +0.25 +); +public.kern1.W = ( +0, +0, +1, +0.25 +); +public.kern1.X = ( +1, +0, +0.5, +0.25 +); +public.kern1.Y = ( +0.5, +0, +1, +0.25 +); +public.kern1.Z = ( +1, +0, +1, +0.25 +); +public.kern1.a = ( +0, +0, +1, +0.25 +); +public.kern1.b = ( +1, +0, +1, +0.25 +); +public.kern1.c = ( +1, +0.5, +0, +0.25 +); +public.kern1.f = ( +0, +1, +0, +0.25 +); +public.kern1.i = ( +0, +0.5, +1, +0.25 +); +public.kern1.l = ( +1, +1, +0, +0.25 +); +public.kern1.n = ( +1, +0, +0.5, +0.25 +); +public.kern1.o = ( +1, +0, +0, +0.25 +); +public.kern1.q = ( +0, +1, +1, +0.25 +); +public.kern1.r = ( +0.5, +0, +1, +0.25 +); +public.kern1.s = ( +1, +0, +1, +0.25 +); +public.kern1.t = ( +1, +0, +0.5, +0.25 +); +public.kern1.v = ( +1, +0, +0, +0.25 +); +public.kern1.w = ( +1, +0.5, +0, +0.25 +); +public.kern1.x = ( +0, +0, +1, +0.25 +); +public.kern1.z = ( +1, +1, +0, +0.25 +); +public.kern2.A = ( +1, +0, +0, +0.25 +); +public.kern2.B = ( +0, +0, +1, +0.25 +); +public.kern2.C = ( +0.5, +0, +1, +0.25 +); +public.kern2.D = ( +0, +1, +0, +0.25 +); +public.kern2.E = ( +0, +0.5, +1, +0.25 +); +public.kern2.F = ( +0, +1, +1, +0.25 +); +public.kern2.G = ( +1, +0, +1, +0.25 +); +public.kern2.H = ( +1, +0.5, +0, +0.25 +); +public.kern2.I = ( +1, +0, +0, +0.25 +); +public.kern2.J = ( +0, +1, +0, +0.25 +); +public.kern2.K = ( +1, +0.5, +0, +0.25 +); +public.kern2.L = ( +1, +1, +0, +0.25 +); +public.kern2.M = ( +1, +0, +0.5, +0.25 +); +public.kern2.O = ( +1, +1, +0, +0.25 +); +public.kern2.S = ( +0, +1, +1, +0.25 +); +public.kern2.T = ( +0, +0.5, +1, +0.25 +); +public.kern2.U = ( +0, +0, +1, +0.25 +); +public.kern2.V = ( +0.5, +0, +1, +0.25 +); +public.kern2.W = ( +1, +0, +1, +0.25 +); +public.kern2.X = ( +1, +0, +0.5, +0.25 +); +public.kern2.Y = ( +1, +0, +0, +0.25 +); +public.kern2.Z = ( +1, +0.5, +0, +0.25 +); +public.kern2.a = ( +1, +1, +0, +0.25 +); +public.kern2.f = ( +0, +0.5, +1, +0.25 +); +public.kern2.j = ( +0.5, +0, +1, +0.25 +); +public.kern2.l = ( +0, +1, +0, +0.25 +); +public.kern2.n = ( +0, +0, +1, +0.25 +); +public.kern2.o = ( +0, +1, +1, +0.25 +); +public.kern2.p = ( +1, +0, +1, +0.25 +); +public.kern2.s = ( +1, +0, +0.5, +0.25 +); +public.kern2.t = ( +1, +0, +0, +0.25 +); +public.kern2.u = ( +1, +0.5, +0, +0.25 +); +public.kern2.v = ( +1, +1, +0, +0.25 +); +public.kern2.w = ( +0, +1, +0, +0.25 +); +public.kern2.x = ( +0, +1, +1, +0.25 +); +public.kern2.z = ( +0, +0.5, +1, +0.25 +); +}; +designspace.location = ( +( +newAxis0, +900 +) +); +}; +UFOFormat = 3; +UFOLayerName = foreground; +}; +versionMajor = 1; +versionMinor = 1; +} diff --git a/sources/config.yaml b/sources/config.yaml new file mode 100644 index 0000000..785b82e --- /dev/null +++ b/sources/config.yaml @@ -0,0 +1,105 @@ +# The configuration for the builder is in YAML format. You can use +# https://www.yamllint.com/ to make sure that your configuration +# file is correctly formatted. + +# First we need to define the source files to build. Please list +# all sources in the same family. These are expected to be in the +# sources/ directory, so all paths should be relative to that +# directory. +sources: + - RadioCanadaDisplay.glyphs + - RadioCanadaDisplay-Italic.glyphs +# You don't have to supply the family name, but builds are slightly +# faster if you do. +familyName: "Radio Canada Display" + +# Next you can supply alternative paths for where you want the +# binaries to live. But we'd recommend you stick to the defaults +# especially if you are planning to upload your font to Google Fonts. + +# outputDir: ../fonts +# vfDir: $outputDir/variable +# ttDir: $outputDir/ttf +# otDir: $outputDir/otf +# woffDir: $outputDir/webfonts + +# The following entries, which are either "true" or "false" +# determine which targets to build. We turn off OTFs for this demo. + +# buildVariable: true +# buildStatic: true +# buildTTF: true +buildOTF: false +# buildSmallCap: false + +# The next flags control autohinting. +# autohintTTF: true +# autohintOTF: false +# ttfaUseScript: false # Set this to true if your font is not Latin + +# The "fix" operation can optionally fix some problems which +# are better dealt with in the font sources. Set this to true if you +# want gftools-fix to automatically fix source problems. +# includeSourceFixes: false + +# These options give fine-grained control over how fontmake builds +# the fonts. +# flattenComponents: true +# decomposeTransformedComponents: true +# checkCompatibility: true +# overlaps: booleanOperations +# expandFeaturesToInstances: false +# reverseOutlineDirection: true +# removeOutlineOverlaps: true +# extraFontmakeArgs: "" +# extraVariableFontmakeArgs: "" +# extraStaticFontmakeArgs: "" +# glyphData: GlyphData.xml + +# This control how STAT tables are generated. The STAT table is +# specified here as a list of axis names, tags and values. You +# can either map a list to each output VF, or provide a single +# list which is used for all VFs. Note that the build will fail +# if you specify a dictionary which does not contain an entry +# for each VF file built. +stat: + RadioCanadaDisplay[wght].ttf: + - name: Weight + tag: wght + values: + - name: Regular + value: 400 + linkedValue: 700 + flags: 2 + - name: Medium + value: 500 + - name: SemiBold + value: 600 + - name: Bold + value: 700 + - name: Italic + tag: ital + values: + - name: Roman + value: 0 + linkedValue: 1 + flags: 2 + RadioCanadaDisplay-Italic[wght].ttf: + - name: Weight + tag: wght + values: + - name: Regular + value: 400 + linkedValue: 700 + flags: 2 + - name: Medium + value: 500 + - name: SemiBold + value: 600 + - name: Bold + value: 700 + - name: Italic + tag: ital + values: + - name: Italic + value: 1