diff --git a/README.md b/README.md index f745e09cd..b6701498a 100644 --- a/README.md +++ b/README.md @@ -40,8 +40,8 @@ Following are the specialities of the font ![Sample Image](documentation/image3.png) ![Sample Image](documentation/image4.png) ![Sample Image](documentation/image5.png) - - +![Sample Image](documentation/image6.png) +![Sample Image](documentation/image7.png) ## About diff --git a/documentation/image1.png b/documentation/image1.png index 9094cb581..b7a5701c1 100644 Binary files a/documentation/image1.png and b/documentation/image1.png differ diff --git a/documentation/image2.png b/documentation/image2.png index 6d2ff4b4a..3ce0a8f9e 100644 Binary files a/documentation/image2.png and b/documentation/image2.png differ diff --git a/documentation/image3.png b/documentation/image3.png index 334571bed..0e22e2969 100644 Binary files a/documentation/image3.png and b/documentation/image3.png differ diff --git a/documentation/image4.png b/documentation/image4.png index 7864fc7c5..5c07c2c22 100644 Binary files a/documentation/image4.png and b/documentation/image4.png differ diff --git a/documentation/image5.png b/documentation/image5.png index 82ada1b1e..87ca77425 100644 Binary files a/documentation/image5.png and b/documentation/image5.png differ diff --git a/documentation/image6.png b/documentation/image6.png new file mode 100644 index 000000000..d45d15dcb Binary files /dev/null and b/documentation/image6.png differ diff --git a/documentation/image6.py b/documentation/image6.py new file mode 100644 index 000000000..dcc80a324 --- /dev/null +++ b/documentation/image6.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/Samaano-Thin-Slanted.ttf" +FONT_LICENSE = "OFL v1.1" +AUXILIARY_FONT = "Helvetica" +AUXILIARY_FONT_SIZE = 48 + +LINE_ONE = "ABCDEFGHIJKLMNOPQRSTUVWXYZ " +LINE_TWO = "abcdefghijklmnopqrstuvwxyz" +LINE_THREE = "अआइईउऊऋएऐओऔकखगघङचछजझञटठडढण" +LINE_FOUR = "तथदधनऩपफबभमयरलळशषसहक्षज्ञर्र्रह्मौं" +BIG_TEXT_FONT_SIZE = 72 +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/image7.png b/documentation/image7.png new file mode 100644 index 000000000..55d9869c7 Binary files /dev/null and b/documentation/image7.png differ diff --git a/documentation/image7.py b/documentation/image7.py new file mode 100644 index 000000000..4d694015c --- /dev/null +++ b/documentation/image7.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/Samaano-Bold-Slanted.ttf" +FONT_LICENSE = "OFL v1.1" +AUXILIARY_FONT = "Helvetica" +AUXILIARY_FONT_SIZE = 48 + +LINE_ONE = "ABCDEFGHIJKLMNOPQRSTUVWXYZ " +LINE_TWO = "abcdefghijklmnopqrstuvwxyz" +LINE_THREE = "अआइईउऊऋएऐओऔकखगघङचछजझञटठडढण" +LINE_FOUR = "तथदधनऩपफबभमयरलळशषसहक्षज्ञर्र्रह्मौं" +BIG_TEXT_FONT_SIZE = 72 +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/out/badges/FontFileChecks.json b/out/badges/FontFileChecks.json index e9e860272..20d64ac6c 100644 --- a/out/badges/FontFileChecks.json +++ b/out/badges/FontFileChecks.json @@ -2,6 +2,6 @@ "color": "green", "label": "Font File Checks", "logoSvg": "", - "message": "87%", + "message": "89%", "schemaVersion": 1 } \ No newline at end of file diff --git a/out/badges/UniversalProfileChecks.json b/out/badges/UniversalProfileChecks.json index ccd86b801..9c6db76f0 100644 --- a/out/badges/UniversalProfileChecks.json +++ b/out/badges/UniversalProfileChecks.json @@ -1,7 +1,7 @@ { - "color": "green", + "color": "brightgreen", "label": "Universal Profile Checks", "logoSvg": "", - "message": "88%", + "message": "91%", "schemaVersion": 1 } \ No newline at end of file diff --git a/out/badges/overall.json b/out/badges/overall.json index f9c5a8e61..126f6a497 100644 --- a/out/badges/overall.json +++ b/out/badges/overall.json @@ -1,7 +1,7 @@ { - "color": "green", + "color": "brightgreen", "label": "FontBakery QA", "logoSvg": "", - "message": "88%", + "message": "90%", "schemaVersion": 1 } \ No newline at end of file diff --git a/out/fontbakery/fontbakery-report.html b/out/fontbakery/fontbakery-report.html index 48292d804..5a3ef0c8f 100644 --- a/out/fontbakery/fontbakery-report.html +++ b/out/fontbakery/fontbakery-report.html @@ -272,20 +272,20 @@

Summary

0 0 - 40 - 117 - 928 - 49 - 748 + 7 + 23 + 183 + 15 + 256 0% 0% - 2% - 6% - 49% + 1% + 5% + 38% 3% - 40% + 53% @@ -315,7 +315,7 @@

Summary

OpenType Specification Checks

- 🔥🔥🔥🔥🔥🔥⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩ + 🔥🔥🔥🔥⚠️⚠️⚠️⚠️⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩

@@ -424,79 +424,6 @@

-
- - 🔥 - - Family Check - - -
-
    - -
  • - - 🔥 FAIL - - - -

    7 different Font Family names were found:

    -
      -
    • -

      'Samaano' was found in:

      -
        -
      • Samaano-Bold.ttf (nameID 1)
      • -
      • Samaano-Thin.ttf (nameID 16)
      • -
      -
    • -
    • -

      'Samaano Wide-Bold' was found in:

      -
        -
      • Samaano-Wide-Bold.ttf (nameID 1)
      • -
      -
    • -
    • -

      'Samaano Wide-Thin' was found in:

      -
        -
      • Samaano-Wide-Thin.ttf (nameID 1)
      • -
      -
    • -
    • -

      'Samaano Bold-Slanted' was found in:

      -
        -
      • Samaano-Bold-Slanted.ttf (nameID 1)
      • -
      -
    • -
    • -

      'Samaano Thin-Slanted' was found in:

      -
        -
      • Samaano-Thin-Slanted.ttf (nameID 1)
      • -
      -
    • -
    • -

      'Samaano Wide-Bold-Slanted' was found in:

      -
        -
      • Samaano-Wide-Bold-Slanted.ttf (nameID 1)
      • -
      -
    • -
    • -

      'Samaano Wide-Thin-Slanted' was found in:

      -
        -
      • Samaano-Wide-Thin-Slanted.ttf (nameID 1)
      • -
      -
    • -
    - - - [code: inconsistent-family-name] - -
    -
  • - -
-
-
-

@@ -513,32 +440,30 @@

- + - - +

- - + Name table ID 6 (PostScript name) must be consistent across platforms. +

+
Check ID: <FontBakeryCheck:com.adobe.fonts/check/name/postscript_name_consistency>
- - +
- +
- @@ -547,9 +472,9 @@

- Name table ID 6 (PostScript name) must be consistent across platforms. + Check name table for empty records.

-
Check ID: <FontBakeryCheck:com.adobe.fonts/check/name/postscript_name_consistency>
+
Check ID: <FontBakeryCheck:com.adobe.fonts/check/name/empty_records>
@@ -559,32 +484,30 @@

- + - - +

- - + Description strings in the name table must not contain copyright info. +

+
Check ID: <FontBakeryCheck:com.google.fonts/check/name/no_copyright_on_description>
- - +
- +
- @@ -593,9 +516,9 @@

- Check name table for empty records. + Does full font name begin with the font family name?

-
Check ID: <FontBakeryCheck:com.adobe.fonts/check/name/empty_records>
+
Check ID: <FontBakeryCheck:com.google.fonts/check/name/match_familyname_fullfont>
@@ -605,32 +528,30 @@

- + - - +

- - + The variable font 'wght' (Weight) axis coordinate must be 400 on the 'Regular' instance. +

+
Check ID: <FontBakeryCheck:com.google.fonts/check/varfont/regular_wght_coord>
- - +
- +
- @@ -639,9 +560,9 @@

- Description strings in the name table must not contain copyright info. + The variable font 'wdth' (Width) axis coordinate must be 100 on the 'Regular' instance.

-
Check ID: <FontBakeryCheck:com.google.fonts/check/name/no_copyright_on_description>
+
Check ID: <FontBakeryCheck:com.google.fonts/check/varfont/regular_wdth_coord>
@@ -651,32 +572,30 @@

- + - - +

- - + The variable font 'slnt' (Slant) axis coordinate must be zero on the 'Regular' instance. +

+
Check ID: <FontBakeryCheck:com.google.fonts/check/varfont/regular_slnt_coord>
- - +
- +
- @@ -685,9 +604,9 @@

- Does full font name begin with the font family name? + The variable font 'ital' (Italic) axis coordinate must be zero on the 'Regular' instance.

-
Check ID: <FontBakeryCheck:com.google.fonts/check/name/match_familyname_fullfont>
+
Check ID: <FontBakeryCheck:com.google.fonts/check/varfont/regular_ital_coord>
@@ -697,32 +616,30 @@

- + - - +

- - + The variable font 'opsz' (Optical Size) axis coordinate should be between 10 and 16 on the 'Regular' instance. +

+
Check ID: <FontBakeryCheck:com.google.fonts/check/varfont/regular_opsz_coord>
- - +
- +
- @@ -731,9 +648,9 @@

- The variable font 'wght' (Weight) axis coordinate must be 400 on the 'Regular' instance. + The variable font 'slnt' (Slant) axis coordinate specifies positive values in its range?

-
Check ID: <FontBakeryCheck:com.google.fonts/check/varfont/regular_wght_coord>
+
Check ID: <FontBakeryCheck:com.google.fonts/check/varfont/slnt_range>
@@ -743,32 +660,30 @@

- + - - +

- - + The variable font 'ital' (Italic) axis coordinates is in a valid range? +

+
Check ID: <FontBakeryCheck:com.typenetwork/check/varfont/ital_range>
- - +
- +
- @@ -777,9 +692,9 @@

- The variable font 'wdth' (Width) axis coordinate must be 100 on the 'Regular' instance. + The variable font 'wght' (Weight) axis coordinate must be within spec range of 1 to 1000 on all instances.

-
Check ID: <FontBakeryCheck:com.google.fonts/check/varfont/regular_wdth_coord>
+
Check ID: <FontBakeryCheck:com.google.fonts/check/varfont/wght_valid_range>
@@ -789,32 +704,30 @@

- + - - +

- - + The variable font 'wdth' (Width) axis coordinate must strictly greater than zero. +

+
Check ID: <FontBakeryCheck:com.google.fonts/check/varfont/wdth_valid_range>
- - +
- +
- @@ -823,9 +736,9 @@

- The variable font 'slnt' (Slant) axis coordinate must be zero on the 'Regular' instance. + All fvar axes have a correspondent Axis Record on STAT table?

-
Check ID: <FontBakeryCheck:com.google.fonts/check/varfont/regular_slnt_coord>
+
Check ID: <FontBakeryCheck:com.google.fonts/check/varfont/stat_axis_record_for_each_axis>
@@ -835,32 +748,30 @@

- + - - +

- - + Does the number of glyphs in the loca table match the maxp table? +

+
Check ID: <FontBakeryCheck:com.google.fonts/check/loca/maxp_num_glyphs>
- - +
- +
- @@ -869,9 +780,11 @@

- The variable font 'ital' (Italic) axis coordinate must be zero on the 'Regular' instance. +
EXPERIMENTAL CHECK - Since 2024/Jun/20
+ + Does the font's CFF table top dict strings fit into the ASCII range?

-
Check ID: <FontBakeryCheck:com.google.fonts/check/varfont/regular_ital_coord>
+
Check ID: <FontBakeryCheck:com.adobe.fonts/check/cff_ascii_strings>
@@ -881,32 +794,30 @@

- + - - +

- - + Is the CFF subr/gsubr call depth > 10? +

+
Check ID: <FontBakeryCheck:com.adobe.fonts/check/cff_call_depth>
- - +
- +
- @@ -915,9 +826,9 @@

- The variable font 'opsz' (Optical Size) axis coordinate should be between 10 and 16 on the 'Regular' instance. + Does the font use deprecated CFF operators or operations?

-
Check ID: <FontBakeryCheck:com.google.fonts/check/varfont/regular_opsz_coord>
+
Check ID: <FontBakeryCheck:com.adobe.fonts/check/cff_deprecated_operators>
@@ -927,32 +838,30 @@

- + - - +

- - + Is the CFF2 subr/gsubr call depth > 10? +

+
Check ID: <FontBakeryCheck:com.adobe.fonts/check/cff2_call_depth>
- - +
- +
- @@ -961,9 +870,9 @@

- The variable font 'slnt' (Slant) axis coordinate specifies positive values in its range? + Checking font version fields (head and name table).

-
Check ID: <FontBakeryCheck:com.google.fonts/check/varfont/slnt_range>
+
Check ID: <FontBakeryCheck:com.google.fonts/check/font_version>
@@ -973,13 +882,23 @@

- + + + +

+ Font has correct post table version? +

+
Check ID: <FontBakeryCheck:com.google.fonts/check/post_table_version>
+ + + +
@@ -992,24 +911,12 @@

- - - - - - - - - - - -

- The variable font 'ital' (Italic) axis coordinates is in a valid range? + Checking correctness of monospaced metadata.

-
Check ID: <FontBakeryCheck:com.typenetwork/check/varfont/ital_range>
+
Check ID: <FontBakeryCheck:com.google.fonts/check/monospace>
@@ -1019,43 +926,103 @@

- - - - - - - +

- +
+ + 🔥 + Samaano-Italic[wdth,wght].ttf + + +
+
- + +

The OpenType spec recommends at https://learn.microsoft.com/en-us/typography/opentype/spec/recom#hhea-table that hhea.numberOfHMetrics be set to 3 but this font has 434 instead. +Please read https://github.com/fonttools/fonttools/issues/3014 to decide whether this makes sense for your font.

- + + [code: bad-numberOfHMetrics] + +
+ + +
  • + + 🔥 FAIL + - + +

    On monospaced fonts, the value of post.isFixedPitch must be set to a non-zero value (meaning 'fixed width monospaced'), but got 0 instead.

    + + [code: mono-bad-post-isFixedPitch] + +
    +
  • + + + +
    +
    + + 🔥 + Samaano[wdth,wght].ttf + + +
    + +
    +

    - The variable font 'wght' (Weight) axis coordinate must be within spec range of 1 to 1000 on all instances. + Check if OS/2 xAvgCharWidth is correct.

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/varfont/wght_valid_range>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/xavgcharwidth>
    @@ -1065,32 +1032,30 @@

    - + - - +

    - - + Check if OS/2 fsSelection matches head macStyle bold and italic bits. +

    +
    Check ID: <FontBakeryCheck:com.adobe.fonts/check/fsselection_matches_macstyle>
    - - +
    - +
    - @@ -1099,9 +1064,9 @@

    - The variable font 'wdth' (Width) axis coordinate must strictly greater than zero. + Checking unitsPerEm value is reasonable.

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/varfont/wdth_valid_range>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/unitsperem>
    @@ -1111,32 +1076,30 @@

    - + - - +

    - - + Does the font have a DSIG table? +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/dsig>
    - - +
    - +
    - @@ -1145,9 +1108,9 @@

    - All fvar axes have a correspondent Axis Record on STAT table? + Check glyphs in mark glyph class are non-spacing.

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/varfont/stat_axis_record_for_each_axis>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/gdef_spacing_marks>
    @@ -1157,43 +1120,75 @@

    - - - - - - - - - - - - +
    + + ⚠️ + Samaano-Italic[wdth,wght].ttf + + +
    +
      + +
    • + + ⚠️ WARN + - - - - - + +

      The following spacing glyphs may be in the GDEF mark glyph class by mistake: +uni0930_uni094D.blwf (unencoded), uni0930_uni094D.rphf (unencoded), uni093A (U+093A), uni093C (U+093C), uni0945 (U+0945), uni0946 (U+0946), uni0947 (U+0947), uni0948 (U+0948), uni0951 (U+0951), uni0952 (U+0952), uni0953 (U+0953), uni0954 (U+0954), uni0955 (U+0955), uni0956 (U+0956), uni0957 (U+0957), uni0962 (U+0962) and uni0963 (U+0963)

      + + [code: spacing-mark-glyphs] + +
      +
    • + +
    +
    +
    +
    + + ⚠️ + Samaano[wdth,wght].ttf + + +
    +
      + +
    • + + ⚠️ WARN + - + +

      The following spacing glyphs may be in the GDEF mark glyph class by mistake: +uni0930_uni094D.blwf (unencoded), uni0930_uni094D.rphf (unencoded), uni093A (U+093A), uni093C (U+093C), uni0945 (U+0945), uni0946 (U+0946), uni0947 (U+0947), uni0948 (U+0948), uni0955 (U+0955), uni0956 (U+0956), uni0957 (U+0957), uni0962 (U+0962) and uni0963 (U+0963)

      + + [code: spacing-mark-glyphs] + +
      +
    • + +
    +
    +

    - Does the number of glyphs in the loca table match the maxp table? + Check mark characters are in GDEF mark glyph class.

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/loca/maxp_num_glyphs>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/gdef_mark_chars>
    @@ -1203,32 +1198,30 @@

    - + - - +

    - - + Check GDEF mark glyph class doesn't have characters that are not marks. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/gdef_non_mark_chars>
    - - +
    - +
    - @@ -1237,11 +1230,9 @@

    -
    EXPERIMENTAL CHECK - Since 2024/Jun/20
    - - Does the font's CFF table top dict strings fit into the ASCII range? + Does GPOS table have kerning information? This check skips monospaced fonts as defined by post.isFixedPitch value

    -
    Check ID: <FontBakeryCheck:com.adobe.fonts/check/cff_ascii_strings>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/gpos_kerning_info>
    @@ -1251,33 +1242,85 @@

    - + - +
    + + ⚠️ + Samaano-Italic[wdth,wght].ttf + + +
    +
      + +
    • + + ⚠️ WARN + - + +

      GPOS table lacks kerning information.

      + + [code: lacks-kern-info] + +
      +
    • + +
    +
    +
    +
    + + ⚠️ + Samaano[wdth,wght].ttf + + +
    +
      + +
    • + + ⚠️ WARN + -
    - + +

    GPOS table lacks kerning information.

    + + [code: lacks-kern-info] + +
    + + + + +
    - +

    + Is there a usable "kern" table declared in the font? +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/kern_table>
    - + + +
    +
    + + @@ -1285,9 +1328,9 @@

    - Is the CFF subr/gsubr call depth > 10? + Is there any unused data at the end of the glyf table?

    -
    Check ID: <FontBakeryCheck:com.adobe.fonts/check/cff_call_depth>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/glyf_unused_data>
    @@ -1297,13 +1340,23 @@

    - + + + +

    + Font follows the family naming recommendations? +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/family_naming_recommendations>
    + + + +
    @@ -1316,14 +1369,24 @@

    - +

    + MaxAdvanceWidth is consistent with values in the Hmtx and Hhea tables? +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/maxadvancewidth>
    + + + +
    +
    + + @@ -1331,9 +1394,9 @@

    - Does the font use deprecated CFF operators or operations? + PostScript name follows OpenType specification requirements?

    -
    Check ID: <FontBakeryCheck:com.adobe.fonts/check/cff_deprecated_operators>
    +
    Check ID: <FontBakeryCheck:com.adobe.fonts/check/postscript_name>
    @@ -1343,13 +1406,23 @@

    - +

    + + +

    + Check for points out of bounds. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/points_out_of_bounds>
    + + + +
    @@ -1362,14 +1435,24 @@

    - +

    + Check glyphs do not have duplicate components which have the same x,y coordinates. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/glyf_non_transformed_duplicate_components>
    + + + +
    +
    + + @@ -1377,9 +1460,9 @@

    - Is the CFF2 subr/gsubr call depth > 10? + Check code page character ranges

    -
    Check ID: <FontBakeryCheck:com.adobe.fonts/check/cff2_call_depth>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/code_pages>
    @@ -1389,13 +1472,23 @@

    - +

    + + +

    + Does the font have any invalid feature tags? +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/layout_valid_feature_tags>
    + + + +
    @@ -1408,14 +1501,24 @@

    - +

    + Does the font have any invalid script tags? +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/layout_valid_script_tags>
    + + + +
    +
    + + @@ -1423,9 +1526,9 @@

    - Checking font version fields (head and name table). + Does the font have any invalid language tags?

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/font_version>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/layout_valid_language_tags>
    @@ -1435,13 +1538,23 @@

    - +

    + + +

    + Checking post.italicAngle value. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/italic_angle>
    + + + +
    @@ -1454,14 +1567,24 @@

    - +

    + Checking head.macStyle value. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/mac_style>
    + + + +
    +
    + + @@ -1469,9 +1592,9 @@

    - Font has correct post table version? + Checking OS/2 fsSelection value.

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/post_table_version>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/fsselection>
    @@ -1481,13 +1604,23 @@

    - +

    + + +

    + Check name table IDs 1, 2, 16, 17 to conform to Italic style. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/name/italic_names>
    + + + +
    @@ -1500,14 +1633,24 @@

    - +

    + Validates that the value of axisNameID used by each VariationAxisRecord is greater than 255 and less than 32768. +

    +
    Check ID: <FontBakeryCheck:com.adobe.fonts/check/varfont/valid_axis_nameid>
    + + + +
    +
    + + @@ -1515,9 +1658,9 @@

    - Checking correctness of monospaced metadata. + Validates that the value of subfamilyNameID used by each InstanceRecord is 2, 17, or greater than 255 and less than 32768.

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/monospace>
    +
    Check ID: <FontBakeryCheck:com.adobe.fonts/check/varfont/valid_subfamily_nameid>
    @@ -1527,13 +1670,23 @@

    - +

    + + +

    + Validates that the value of postScriptNameID used by each InstanceRecord is 6, 0xFFFF, or greater than 255 and less than 32768. +

    +
    Check ID: <FontBakeryCheck:com.adobe.fonts/check/varfont/valid_postscript_nameid>
    + + + +
    @@ -1543,11408 +1696,37 @@

    -
    - - ⚠️ - Samaano-Bold.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - -

      The OpenType spec recommends at https://learn.microsoft.com/en-us/typography/opentype/spec/recom#hhea-table that hhea.numberOfHMetrics be set to 3 but this font has 441 instead. -Please read https://github.com/fonttools/fonttools/issues/3014 to decide whether this makes sense for your font.

      + - - [code: bad-numberOfHMetrics] - -
      -
    • - -
    • - - ⚠️ WARN - - -

      Font is monospaced but 1 glyphs (0.14%) have a different width. You should check the widths of: ['ldot']

      +

      + + Validates that when an instance record is included for the default instance, its subfamilyNameID value is set to a name ID whose string is equal to the string of either name ID 2 or 17, and its postScriptNameID value is set to a name ID whose string is equal to the string of name ID 6. +

      +
      Check ID: <FontBakeryCheck:com.adobe.fonts/check/varfont/valid_default_instance_nameids>
      + + + +
      - - [code: mono-outliers] - - -
    • - -
    -
    -
    -
    - - ⚠️ - Samaano-Thin.ttf - - -
    - -
    -
    - - - -
    - - 🔥 - Samaano-Wide-Bold.ttf - - -
    - -
    -
    - - - -
    - - ⚠️ - Samaano-Wide-Thin.ttf - - -
    - -
    -
    - - - -
    - - 🔥 - Samaano-Bold-Slanted.ttf - - -
    - -
    -
    - - - -
    - - ⚠️ - Samaano-Thin-Slanted.ttf - - -
    - -
    -
    - - - -
    - - 🔥 - Samaano-Wide-Bold-Slanted.ttf - - -
    - -
    -
    - - - -
    - - ⚠️ - Samaano-Wide-Thin-Slanted.ttf - - -
    - -
    -
    - - - -

    - - Check if OS/2 xAvgCharWidth is correct. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/xavgcharwidth>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Check if OS/2 fsSelection matches head macStyle bold and italic bits. -

    -
    Check ID: <FontBakeryCheck:com.adobe.fonts/check/fsselection_matches_macstyle>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Checking unitsPerEm value is reasonable. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/unitsperem>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Does the font have a DSIG table? -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/dsig>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Check glyphs in mark glyph class are non-spacing. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/gdef_spacing_marks>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - -
    - - ⚠️ - Samaano-Bold.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The following spacing glyphs may be in the GDEF mark glyph class by mistake: -acutecomb (U+0301), dotbelowcomb (U+0323), glyph094D (unencoded), gravecomb (U+0300), tildecomb (U+0303), uni0304 (U+0304), uni0306 (U+0306), uni0307 (U+0307), uni0308 (U+0308), uni030A (U+030A), uni030B (U+030B), uni030C (U+030C), uni0326 (U+0326), uni0327 (U+0327), uni0328 (U+0328), uni0331 (U+0331), uni0930_uni094D.blwf (unencoded), uni0930_uni094D.rphf (unencoded), uni093A (U+093A), uni093C (U+093C), uni0945 (U+0945), uni0946 (U+0946), uni0947 (U+0947), uni0948 (U+0948), uni0955 (U+0955), uni0956 (U+0956), uni0957 (U+0957), uni0962 (U+0962) and uni0963 (U+0963)

      - - - [code: spacing-mark-glyphs] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Thin.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The following spacing glyphs may be in the GDEF mark glyph class by mistake: -acutecomb (U+0301), dotbelowcomb (U+0323), glyph094D (unencoded), gravecomb (U+0300), uni0304 (U+0304), uni0308 (U+0308), uni030A (U+030A), uni030B (U+030B), uni030C (U+030C), uni0326 (U+0326), uni0327 (U+0327), uni0328 (U+0328), uni0331 (U+0331), uni0930_uni094D.blwf (unencoded), uni0930_uni094D.rphf (unencoded), uni093A (U+093A), uni093C (U+093C), uni0945 (U+0945), uni0946 (U+0946), uni0947 (U+0947), uni0948 (U+0948), uni0951 (U+0951), uni0952 (U+0952), uni0953 (U+0953), uni0954 (U+0954), uni0955 (U+0955), uni0956 (U+0956), uni0957 (U+0957), uni0962 (U+0962) and uni0963 (U+0963)

      - - - [code: spacing-mark-glyphs] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Wide-Bold.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The following spacing glyphs may be in the GDEF mark glyph class by mistake: -glyph094D (unencoded), uni0930_uni094D.blwf (unencoded), uni0930_uni094D.rphf (unencoded), uni093A (U+093A), uni093C (U+093C), uni0945 (U+0945), uni0946 (U+0946), uni0947 (U+0947), uni0948 (U+0948), uni0951 (U+0951), uni0952 (U+0952), uni0953 (U+0953), uni0954 (U+0954), uni0955 (U+0955), uni0956 (U+0956), uni0957 (U+0957), uni0962 (U+0962) and uni0963 (U+0963)

      - - - [code: spacing-mark-glyphs] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Wide-Thin.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The following spacing glyphs may be in the GDEF mark glyph class by mistake: -glyph094D (unencoded), uni0331 (U+0331), uni0900 (U+0900), uni0901 (U+0901), uni0902 (U+0902), uni0930_uni094D.blwf (unencoded), uni0930_uni094D.rphf (unencoded), uni093A (U+093A), uni093C (U+093C), uni0941 (U+0941), uni0942 (U+0942), uni0943 (U+0943), uni0944 (U+0944), uni0945 (U+0945), uni0946 (U+0946), uni0947 (U+0947), uni0948 (U+0948), uni094D (U+094D), uni0951 (U+0951), uni0952 (U+0952), uni0953 (U+0953), uni0954 (U+0954), uni0955 (U+0955), uni0956 (U+0956), uni0957 (U+0957), uni0962 (U+0962) and uni0963 (U+0963)

      - - - [code: spacing-mark-glyphs] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Bold-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The following spacing glyphs may be in the GDEF mark glyph class by mistake: -glyph094D (unencoded), uni0930_uni094D.blwf (unencoded), uni0930_uni094D.rphf (unencoded), uni093A (U+093A), uni093C (U+093C), uni0945 (U+0945), uni0946 (U+0946), uni0947 (U+0947), uni0948 (U+0948), uni0951 (U+0951), uni0952 (U+0952), uni0953 (U+0953), uni0954 (U+0954), uni0955 (U+0955), uni0956 (U+0956), uni0957 (U+0957), uni0962 (U+0962) and uni0963 (U+0963)

      - - - [code: spacing-mark-glyphs] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Thin-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The following spacing glyphs may be in the GDEF mark glyph class by mistake: -acutecomb (U+0301), dotbelowcomb (U+0323), glyph094D (unencoded), tildecomb (U+0303), uni0302 (U+0302), uni0304 (U+0304), uni0306 (U+0306), uni0307 (U+0307), uni0308 (U+0308), uni030A (U+030A), uni030B (U+030B), uni0326 (U+0326), uni0327 (U+0327), uni0328 (U+0328), uni0331 (U+0331), uni0930_uni094D.blwf (unencoded), uni0930_uni094D.rphf (unencoded), uni093A (U+093A), uni093C (U+093C), uni0945 (U+0945), uni0946 (U+0946), uni0947 (U+0947), uni0948 (U+0948), uni094D (U+094D), uni0951 (U+0951), uni0952 (U+0952), uni0953 (U+0953), uni0954 (U+0954), uni0955 (U+0955), uni0956 (U+0956), uni0957 (U+0957), uni0962 (U+0962) and uni0963 (U+0963)

      - - - [code: spacing-mark-glyphs] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Wide-Bold-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The following spacing glyphs may be in the GDEF mark glyph class by mistake: -glyph094D (unencoded), uni0331 (U+0331), uni0930_uni094D.blwf (unencoded), uni0930_uni094D.rphf (unencoded), uni093A (U+093A), uni093C (U+093C), uni0945 (U+0945), uni0946 (U+0946), uni0947 (U+0947), uni0948 (U+0948), uni0955 (U+0955), uni0956 (U+0956), uni0957 (U+0957), uni0962 (U+0962) and uni0963 (U+0963)

      - - - [code: spacing-mark-glyphs] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Wide-Thin-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The following spacing glyphs may be in the GDEF mark glyph class by mistake: -glyph094D (unencoded), uni0331 (U+0331), uni0930_uni094D.blwf (unencoded), uni0930_uni094D.rphf (unencoded), uni093A (U+093A), uni093C (U+093C), uni0945 (U+0945), uni0946 (U+0946), uni0947 (U+0947), uni0948 (U+0948), uni0951 (U+0951), uni0952 (U+0952), uni0953 (U+0953), uni0954 (U+0954), uni0955 (U+0955), uni0956 (U+0956), uni0957 (U+0957), uni0962 (U+0962) and uni0963 (U+0963)

      - - - [code: spacing-mark-glyphs] - -
      -
    • - -
    -
    -
    - - - -

    - - Check mark characters are in GDEF mark glyph class. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/gdef_mark_chars>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - -
    - - ⚠️ - Samaano-Bold.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The following mark characters could be in the GDEF mark glyph class: -hookabovecomb (U+0309) and uni0305 (U+0305)

      - - - [code: mark-chars] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Thin.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The following mark characters could be in the GDEF mark glyph class: -hookabovecomb (U+0309) and uni0305 (U+0305)

      - - - [code: mark-chars] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Wide-Bold.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The following mark characters could be in the GDEF mark glyph class: -hookabovecomb (U+0309) and uni0305 (U+0305)

      - - - [code: mark-chars] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Wide-Thin.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The following mark characters could be in the GDEF mark glyph class: -hookabovecomb (U+0309) and uni0305 (U+0305)

      - - - [code: mark-chars] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Bold-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The following mark characters could be in the GDEF mark glyph class: -hookabovecomb (U+0309) and uni0305 (U+0305)

      - - - [code: mark-chars] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Thin-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The following mark characters could be in the GDEF mark glyph class: -hookabovecomb (U+0309) and uni0305 (U+0305)

      - - - [code: mark-chars] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Wide-Bold-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The following mark characters could be in the GDEF mark glyph class: -hookabovecomb (U+0309) and uni0305 (U+0305)

      - - - [code: mark-chars] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Wide-Thin-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The following mark characters could be in the GDEF mark glyph class: -hookabovecomb (U+0309) and uni0305 (U+0305)

      - - - [code: mark-chars] - -
      -
    • - -
    -
    -
    - - - -

    - - Check GDEF mark glyph class doesn't have characters that are not marks. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/gdef_non_mark_chars>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Does GPOS table have kerning information? This check skips monospaced fonts as defined by post.isFixedPitch value -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/gpos_kerning_info>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - -
    - - ⚠️ - Samaano-Thin.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      GPOS table lacks kerning information.

      - - - [code: lacks-kern-info] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Wide-Bold.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      GPOS table lacks kerning information.

      - - - [code: lacks-kern-info] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Wide-Thin.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      GPOS table lacks kerning information.

      - - - [code: lacks-kern-info] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Bold-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      GPOS table lacks kerning information.

      - - - [code: lacks-kern-info] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Thin-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      GPOS table lacks kerning information.

      - - - [code: lacks-kern-info] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Wide-Bold-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      GPOS table lacks kerning information.

      - - - [code: lacks-kern-info] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Wide-Thin-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      GPOS table lacks kerning information.

      - - - [code: lacks-kern-info] - -
      -
    • - -
    -
    -
    - - - -

    - - Is there a usable "kern" table declared in the font? -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/kern_table>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Is there any unused data at the end of the glyf table? -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/glyf_unused_data>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Font follows the family naming recommendations? -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/family_naming_recommendations>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - MaxAdvanceWidth is consistent with values in the Hmtx and Hhea tables? -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/maxadvancewidth>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - PostScript name follows OpenType specification requirements? -

    -
    Check ID: <FontBakeryCheck:com.adobe.fonts/check/postscript_name>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Check for points out of bounds. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/points_out_of_bounds>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Check glyphs do not have duplicate components which have the same x,y coordinates. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/glyf_non_transformed_duplicate_components>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Check code page character ranges -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/code_pages>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Does the font have any invalid feature tags? -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/layout_valid_feature_tags>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Does the font have any invalid script tags? -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/layout_valid_script_tags>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Does the font have any invalid language tags? -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/layout_valid_language_tags>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Checking post.italicAngle value. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/italic_angle>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Checking head.macStyle value. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/mac_style>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - -
    - - 🔥 - Samaano-Bold-Slanted.ttf - - -
    -
      - -
    • - - ✅ PASS - - - -

      head macStyle ITALIC bit is properly set.

      - - -
      -
    • - -
    • - - 🔥 FAIL - - - -

      head macStyle BOLD bit should be set.

      - - - [code: bad-BOLD] - -
      -
    • - -
    -
    -
    - - - - - - - - - -

    - - Checking OS/2 fsSelection value. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/fsselection>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - -
    - - 🔥 - Samaano-Bold-Slanted.ttf - - -
    -
      - -
    • - - 🔥 FAIL - - - -

      OS/2 fsSelection REGULAR bit should be unset.

      - - - [code: bad-REGULAR] - -
      -
    • - -
    • - - ✅ PASS - - - -

      OS/2 fsSelection ITALIC bit is properly set.

      - - -
      -
    • - -
    • - - 🔥 FAIL - - - -

      OS/2 fsSelection BOLD bit should be set.

      - - - [code: bad-BOLD] - -
      -
    • - -
    -
    -
    - - - - - - - - - -

    - - Check name table IDs 1, 2, 16, 17 to conform to Italic style. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/name/italic_names>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Validates that the value of axisNameID used by each VariationAxisRecord is greater than 255 and less than 32768. -

    -
    Check ID: <FontBakeryCheck:com.adobe.fonts/check/varfont/valid_axis_nameid>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Validates that the value of subfamilyNameID used by each InstanceRecord is 2, 17, or greater than 255 and less than 32768. -

    -
    Check ID: <FontBakeryCheck:com.adobe.fonts/check/varfont/valid_subfamily_nameid>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Validates that the value of postScriptNameID used by each InstanceRecord is 6, 0xFFFF, or greater than 255 and less than 32768. -

    -
    Check ID: <FontBakeryCheck:com.adobe.fonts/check/varfont/valid_postscript_nameid>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Validates that when an instance record is included for the default instance, its subfamilyNameID value is set to a name ID whose string is equal to the string of either name ID 2 or 17, and its postScriptNameID value is set to a name ID whose string is equal to the string of name ID 6. -

    -
    Check ID: <FontBakeryCheck:com.adobe.fonts/check/varfont/valid_default_instance_nameids>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Validates that all of the instance records in a given font have the same size. -

    -
    Check ID: <FontBakeryCheck:com.adobe.fonts/check/varfont/same_size_instance_records>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Validates that all of the instance records in a given font have distinct data. -

    -
    Check ID: <FontBakeryCheck:com.adobe.fonts/check/varfont/distinct_instance_records>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Validate foundry-defined design-variation axis tag names. -

    -
    Check ID: <FontBakeryCheck:com.adobe.fonts/check/varfont/foundry_defined_tag_name>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Check that family axis ranges are indentical -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/varfont/family_axis_ranges>
    - - - -
    - - - -
    - - - - - -

    - - STAT table has Axis Value tables? -

    -
    Check ID: <FontBakeryCheck:com.adobe.fonts/check/stat_has_axis_value_tables>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Checking OS/2 achVendID against configuration. -

    -
    Check ID: <FontBakeryCheck:com.thetypefounders/check/vendor_id>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Check hhea.caretSlopeRise and hhea.caretSlopeRun -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/caret_slope>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Ensure VFs have 'ital' STAT axis. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/italic_axis_in_stat>
    - - - -
    - - - -
    - - - - - -

    - - Ensure 'ital' STAT axis is boolean value -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/italic_axis_in_stat_is_boolean>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Ensure 'ital' STAT axis is last. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/italic_axis_last>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - -

    Universal Profile Checks

    - - 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ - - -

    - - Check accent of Lcaron, dcaron, lcaron, tcaron -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/alt_caron>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - -
    - - ⚠️ - Samaano-Bold.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      dcaron is decomposed and therefore could not be checked. Please check manually.

      - - - [code: decomposed-outline] - -
      -
    • - -
    • - - ⚠️ WARN - - - -

      Lcaron is decomposed and therefore could not be checked. Please check manually.

      - - - [code: decomposed-outline] - -
      -
    • - -
    • - - ⚠️ WARN - - - -

      lcaron is decomposed and therefore could not be checked. Please check manually.

      - - - [code: decomposed-outline] - -
      -
    • - -
    • - - ⚠️ WARN - - - -

      tcaron is decomposed and therefore could not be checked. Please check manually.

      - - - [code: decomposed-outline] - -
      -
    • - -
    • - - ✅ PASS - - - -

      Looks good!

      - - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Thin.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      dcaron is decomposed and therefore could not be checked. Please check manually.

      - - - [code: decomposed-outline] - -
      -
    • - -
    • - - ⚠️ WARN - - - -

      Lcaron is decomposed and therefore could not be checked. Please check manually.

      - - - [code: decomposed-outline] - -
      -
    • - -
    • - - ⚠️ WARN - - - -

      lcaron is decomposed and therefore could not be checked. Please check manually.

      - - - [code: decomposed-outline] - -
      -
    • - -
    • - - ⚠️ WARN - - - -

      tcaron is decomposed and therefore could not be checked. Please check manually.

      - - - [code: decomposed-outline] - -
      -
    • - -
    • - - ✅ PASS - - - -

      Looks good!

      - - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Wide-Bold.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      dcaron is decomposed and therefore could not be checked. Please check manually.

      - - - [code: decomposed-outline] - -
      -
    • - -
    • - - ⚠️ WARN - - - -

      Lcaron is decomposed and therefore could not be checked. Please check manually.

      - - - [code: decomposed-outline] - -
      -
    • - -
    • - - ⚠️ WARN - - - -

      lcaron is decomposed and therefore could not be checked. Please check manually.

      - - - [code: decomposed-outline] - -
      -
    • - -
    • - - ⚠️ WARN - - - -

      tcaron is decomposed and therefore could not be checked. Please check manually.

      - - - [code: decomposed-outline] - -
      -
    • - -
    • - - ✅ PASS - - - -

      Looks good!

      - - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Wide-Thin.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      dcaron is decomposed and therefore could not be checked. Please check manually.

      - - - [code: decomposed-outline] - -
      -
    • - -
    • - - ⚠️ WARN - - - -

      Lcaron is decomposed and therefore could not be checked. Please check manually.

      - - - [code: decomposed-outline] - -
      -
    • - -
    • - - ⚠️ WARN - - - -

      lcaron is decomposed and therefore could not be checked. Please check manually.

      - - - [code: decomposed-outline] - -
      -
    • - -
    • - - ⚠️ WARN - - - -

      tcaron is decomposed and therefore could not be checked. Please check manually.

      - - - [code: decomposed-outline] - -
      -
    • - -
    • - - ✅ PASS - - - -

      Looks good!

      - - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Bold-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      dcaron is decomposed and therefore could not be checked. Please check manually.

      - - - [code: decomposed-outline] - -
      -
    • - -
    • - - ⚠️ WARN - - - -

      Lcaron is decomposed and therefore could not be checked. Please check manually.

      - - - [code: decomposed-outline] - -
      -
    • - -
    • - - ⚠️ WARN - - - -

      lcaron is decomposed and therefore could not be checked. Please check manually.

      - - - [code: decomposed-outline] - -
      -
    • - -
    • - - ⚠️ WARN - - - -

      tcaron is decomposed and therefore could not be checked. Please check manually.

      - - - [code: decomposed-outline] - -
      -
    • - -
    • - - ✅ PASS - - - -

      Looks good!

      - - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Thin-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      dcaron is decomposed and therefore could not be checked. Please check manually.

      - - - [code: decomposed-outline] - -
      -
    • - -
    • - - ⚠️ WARN - - - -

      Lcaron is decomposed and therefore could not be checked. Please check manually.

      - - - [code: decomposed-outline] - -
      -
    • - -
    • - - ⚠️ WARN - - - -

      lcaron is decomposed and therefore could not be checked. Please check manually.

      - - - [code: decomposed-outline] - -
      -
    • - -
    • - - ⚠️ WARN - - - -

      tcaron is decomposed and therefore could not be checked. Please check manually.

      - - - [code: decomposed-outline] - -
      -
    • - -
    • - - ✅ PASS - - - -

      Looks good!

      - - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Wide-Bold-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      dcaron is decomposed and therefore could not be checked. Please check manually.

      - - - [code: decomposed-outline] - -
      -
    • - -
    • - - ⚠️ WARN - - - -

      Lcaron is decomposed and therefore could not be checked. Please check manually.

      - - - [code: decomposed-outline] - -
      -
    • - -
    • - - ⚠️ WARN - - - -

      lcaron is decomposed and therefore could not be checked. Please check manually.

      - - - [code: decomposed-outline] - -
      -
    • - -
    • - - ⚠️ WARN - - - -

      tcaron is decomposed and therefore could not be checked. Please check manually.

      - - - [code: decomposed-outline] - -
      -
    • - -
    • - - ✅ PASS - - - -

      Looks good!

      - - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Wide-Thin-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      dcaron is decomposed and therefore could not be checked. Please check manually.

      - - - [code: decomposed-outline] - -
      -
    • - -
    • - - ⚠️ WARN - - - -

      Lcaron is decomposed and therefore could not be checked. Please check manually.

      - - - [code: decomposed-outline] - -
      -
    • - -
    • - - ⚠️ WARN - - - -

      lcaron is decomposed and therefore could not be checked. Please check manually.

      - - - [code: decomposed-outline] - -
      -
    • - -
    • - - ⚠️ WARN - - - -

      tcaron is decomposed and therefore could not be checked. Please check manually.

      - - - [code: decomposed-outline] - -
      -
    • - -
    • - - ✅ PASS - - - -

      Looks good!

      - - -
      -
    • - -
    -
    -
    - - - -

    - - Check that glyph for U+0675 ARABIC LETTER HIGH HAMZA is not a mark. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/arabic_high_hamza>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Check that Arabic spacing symbols U+FBB2–FBC1 aren't classified as marks. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/arabic_spacing_symbols>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Ensure the font supports case swapping for all its glyphs. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/case_mapping>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - -
    - - 🔥 - Samaano-Wide-Bold.ttf - - -
    -
      - -
    • - - 🔥 FAIL - - - -

      The following glyphs lack their case-swapping counterparts:

      - - - - - - - - - - - - - -
      Glyph present in the fontMissing case-swapping counterpart
      U+0189: LATIN CAPITAL LETTER AFRICAN DU+0256: LATIN SMALL LETTER D WITH TAIL
      - - - [code: missing-case-counterparts] - -
      -
    • - -
    -
    -
    - - - -
    - - 🔥 - Samaano-Wide-Thin.ttf - - -
    -
      - -
    • - - 🔥 FAIL - - - -

      The following glyphs lack their case-swapping counterparts:

      - - - - - - - - - - - - - -
      Glyph present in the fontMissing case-swapping counterpart
      U+0189: LATIN CAPITAL LETTER AFRICAN DU+0256: LATIN SMALL LETTER D WITH TAIL
      - - - [code: missing-case-counterparts] - -
      -
    • - -
    -
    -
    - - - - - - - -
    - - 🔥 - Samaano-Wide-Bold-Slanted.ttf - - -
    -
      - -
    • - - 🔥 FAIL - - - -

      The following glyphs lack their case-swapping counterparts:

      - - - - - - - - - - - - - -
      Glyph present in the fontMissing case-swapping counterpart
      U+0189: LATIN CAPITAL LETTER AFRICAN DU+0256: LATIN SMALL LETTER D WITH TAIL
      - - - [code: missing-case-counterparts] - -
      -
    • - -
    -
    -
    - - - -
    - - 🔥 - Samaano-Wide-Thin-Slanted.ttf - - -
    -
      - -
    • - - 🔥 FAIL - - - -

      The following glyphs lack their case-swapping counterparts:

      - - - - - - - - - - - - - -
      Glyph present in the fontMissing case-swapping counterpart
      U+0189: LATIN CAPITAL LETTER AFRICAN DU+0256: LATIN SMALL LETTER D WITH TAIL
      - - - [code: missing-case-counterparts] - -
      -
    • - -
    -
    -
    - - - -

    - - Does the font contain chws and vchw features? -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/cjk_chws_feature>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Check if each glyph has the recommended amount of contours. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/contour_count>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - -
    - - ⚠️ - Samaano-Bold.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      This check inspects the glyph outlines and detects the total number of contours in each of them. The expected values are infered from the typical ammounts of contours observed in a large collection of reference font families. The divergences listed below may simply indicate a significantly different design on some of your glyphs. On the other hand, some of these may flag actual bugs in the font such as glyphs mapped to an incorrect codepoint. Please consider reviewing the design and codepoint assignment of these to make sure they are correct.

      -

      The following glyphs do not have the recommended number of contours:

      -
      - Glyph name: parenleft	Contours detected: 2	Expected: 1
      -
      -- Glyph name: Z	Contours detected: 2	Expected: 1
      -
      -- Glyph name: braceleft	Contours detected: 2	Expected: 1
      -
      -- Glyph name: mu	Contours detected: 2	Expected: 1
      -
      -- Glyph name: aogonek	Contours detected: 3	Expected: 2
      -
      -- Glyph name: eogonek	Contours detected: 3	Expected: 2
      -
      -- Glyph name: Uogonek	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uogonek	Contours detected: 2	Expected: 1
      -
      -- Glyph name: Zacute	Contours detected: 3	Expected: 2
      -
      -- Glyph name: Zdotaccent	Contours detected: 3	Expected: 2
      -
      -- Glyph name: Zcaron	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni01C4	Contours detected: 5	Expected: 4
      -
      -- Glyph name: uni0916	Contours detected: 2	Expected: 1 or 3
      -
      -- Glyph name: uni091B	Contours detected: 1	Expected: 2
      -
      -- Glyph name: uni092D	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni092E	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni093D	Contours detected: 3	Expected: 1
      -
      -- Glyph name: uni0945	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0955	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni0956	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0957	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni0959	Contours detected: 3	Expected: 2 or 4
      -
      -- Glyph name: uni0962	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0963	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0967	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0970	Contours detected: 1	Expected: 2
      -
      -- Glyph name: uni097F	Contours detected: 2	Expected: 3
      -
      -- Glyph name: uni25CC	Contours detected: 8	Expected: 16 or 12
      -
      -- Glyph name: Uogonek	Contours detected: 2	Expected: 1
      -
      -- Glyph name: Z	Contours detected: 2	Expected: 1
      -
      -- Glyph name: Zacute	Contours detected: 3	Expected: 2
      -
      -- Glyph name: Zcaron	Contours detected: 3	Expected: 2
      -
      -- Glyph name: Zdotaccent	Contours detected: 3	Expected: 2
      -
      -- Glyph name: aogonek	Contours detected: 3	Expected: 2
      -
      -- Glyph name: braceleft	Contours detected: 2	Expected: 1
      -
      -- Glyph name: eogonek	Contours detected: 3	Expected: 2
      -
      -- Glyph name: parenleft	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni01C4	Contours detected: 5	Expected: 4
      -
      -- Glyph name: uni0916	Contours detected: 2	Expected: 1 or 3
      -
      -- Glyph name: uni091B	Contours detected: 1	Expected: 2
      -
      -- Glyph name: uni092D	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni092E	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni093D	Contours detected: 3	Expected: 1
      -
      -- Glyph name: uni0945	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0955	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni0956	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0957	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni0959	Contours detected: 3	Expected: 2 or 4
      -
      -- Glyph name: uni0962	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0963	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0967	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0970	Contours detected: 1	Expected: 2
      -
      -- Glyph name: uni097F	Contours detected: 2	Expected: 3
      -
      -- Glyph name: uni25CC	Contours detected: 8	Expected: 16 or 12
      -
      -- Glyph name: uogonek	Contours detected: 2	Expected: 1
      -
      - - - [code: contour-count] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Thin.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      This check inspects the glyph outlines and detects the total number of contours in each of them. The expected values are infered from the typical ammounts of contours observed in a large collection of reference font families. The divergences listed below may simply indicate a significantly different design on some of your glyphs. On the other hand, some of these may flag actual bugs in the font such as glyphs mapped to an incorrect codepoint. Please consider reviewing the design and codepoint assignment of these to make sure they are correct.

      -

      The following glyphs do not have the recommended number of contours:

      -
      - Glyph name: D	Contours detected: 1	Expected: 2
      -
      -- Glyph name: g	Contours detected: 1	Expected: 2 or 3
      -
      -- Glyph name: o	Contours detected: 1	Expected: 2
      -
      -- Glyph name: braceleft	Contours detected: 2	Expected: 1
      -
      -- Glyph name: ograve	Contours detected: 2	Expected: 3
      -
      -- Glyph name: oacute	Contours detected: 2	Expected: 3
      -
      -- Glyph name: ocircumflex	Contours detected: 2	Expected: 3
      -
      -- Glyph name: otilde	Contours detected: 2	Expected: 3
      -
      -- Glyph name: odieresis	Contours detected: 3	Expected: 4
      -
      -- Glyph name: aogonek	Contours detected: 3	Expected: 2
      -
      -- Glyph name: Dcaron	Contours detected: 2	Expected: 3
      -
      -- Glyph name: eogonek	Contours detected: 3	Expected: 2
      -
      -- Glyph name: gcircumflex	Contours detected: 2	Expected: 3 or 4
      -
      -- Glyph name: gbreve	Contours detected: 2	Expected: 3 or 4
      -
      -- Glyph name: gdotaccent	Contours detected: 2	Expected: 3 or 4
      -
      -- Glyph name: uni0123	Contours detected: 2	Expected: 3 or 4
      -
      -- Glyph name: omacron	Contours detected: 2	Expected: 3
      -
      -- Glyph name: obreve	Contours detected: 2	Expected: 3
      -
      -- Glyph name: ohungarumlaut	Contours detected: 3	Expected: 4
      -
      -- Glyph name: Uogonek	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uogonek	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni01C4	Contours detected: 3	Expected: 4
      -
      -- Glyph name: uni01C5	Contours detected: 3	Expected: 4
      -
      -- Glyph name: uni0910	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni091B	Contours detected: 1	Expected: 2
      -
      -- Glyph name: uni092D	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni092E	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni093D	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0945	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0955	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni0956	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0957	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni0962	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0963	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0967	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0970	Contours detected: 1	Expected: 2
      -
      -- Glyph name: uni097F	Contours detected: 2	Expected: 3
      -
      -- Glyph name: uni1E0C	Contours detected: 2	Expected: 3
      -
      -- Glyph name: uni1E4D	Contours detected: 3	Expected: 4
      -
      -- Glyph name: uni25CC	Contours detected: 8	Expected: 16 or 12
      -
      -- Glyph name: D	Contours detected: 1	Expected: 2
      -
      -- Glyph name: Dcaron	Contours detected: 2	Expected: 3
      -
      -- Glyph name: Uogonek	Contours detected: 2	Expected: 1
      -
      -- Glyph name: aogonek	Contours detected: 3	Expected: 2
      -
      -- Glyph name: braceleft	Contours detected: 2	Expected: 1
      -
      -- Glyph name: eogonek	Contours detected: 3	Expected: 2
      -
      -- Glyph name: g	Contours detected: 1	Expected: 2 or 3
      -
      -- Glyph name: gbreve	Contours detected: 2	Expected: 3 or 4
      -
      -- Glyph name: gcircumflex	Contours detected: 2	Expected: 3 or 4
      -
      -- Glyph name: gdotaccent	Contours detected: 2	Expected: 3 or 4
      -
      -- Glyph name: o	Contours detected: 1	Expected: 2
      -
      -- Glyph name: oacute	Contours detected: 2	Expected: 3
      -
      -- Glyph name: ocircumflex	Contours detected: 2	Expected: 3
      -
      -- Glyph name: odieresis	Contours detected: 3	Expected: 4
      -
      -- Glyph name: ograve	Contours detected: 2	Expected: 3
      -
      -- Glyph name: ohungarumlaut	Contours detected: 3	Expected: 4
      -
      -- Glyph name: omacron	Contours detected: 2	Expected: 3
      -
      -- Glyph name: otilde	Contours detected: 2	Expected: 3
      -
      -- Glyph name: uni0123	Contours detected: 2	Expected: 3 or 4
      -
      -- Glyph name: uni01C4	Contours detected: 3	Expected: 4
      -
      -- Glyph name: uni01C5	Contours detected: 3	Expected: 4
      -
      -- Glyph name: uni0910	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni091B	Contours detected: 1	Expected: 2
      -
      -- Glyph name: uni092D	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni092E	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni093D	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0945	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0955	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni0956	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0957	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni0962	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0963	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0967	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0970	Contours detected: 1	Expected: 2
      -
      -- Glyph name: uni097F	Contours detected: 2	Expected: 3
      -
      -- Glyph name: uni1E0C	Contours detected: 2	Expected: 3
      -
      -- Glyph name: uni1E4D	Contours detected: 3	Expected: 4
      -
      -- Glyph name: uni25CC	Contours detected: 8	Expected: 16 or 12
      -
      -- Glyph name: uogonek	Contours detected: 2	Expected: 1
      -
      - - - [code: contour-count] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Wide-Bold.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      This check inspects the glyph outlines and detects the total number of contours in each of them. The expected values are infered from the typical ammounts of contours observed in a large collection of reference font families. The divergences listed below may simply indicate a significantly different design on some of your glyphs. On the other hand, some of these may flag actual bugs in the font such as glyphs mapped to an incorrect codepoint. Please consider reviewing the design and codepoint assignment of these to make sure they are correct.

      -

      The following glyphs do not have the recommended number of contours:

      -
      - Glyph name: parenleft	Contours detected: 2	Expected: 1
      -
      -- Glyph name: Z	Contours detected: 2	Expected: 1
      -
      -- Glyph name: braceleft	Contours detected: 2	Expected: 1
      -
      -- Glyph name: mu	Contours detected: 2	Expected: 1
      -
      -- Glyph name: aogonek	Contours detected: 3	Expected: 2
      -
      -- Glyph name: eogonek	Contours detected: 3	Expected: 2
      -
      -- Glyph name: Uogonek	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uogonek	Contours detected: 2	Expected: 1
      -
      -- Glyph name: Zacute	Contours detected: 3	Expected: 2
      -
      -- Glyph name: Zdotaccent	Contours detected: 3	Expected: 2
      -
      -- Glyph name: Zcaron	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni01C4	Contours detected: 5	Expected: 4
      -
      -- Glyph name: uni0916	Contours detected: 2	Expected: 1 or 3
      -
      -- Glyph name: uni091B	Contours detected: 1	Expected: 2
      -
      -- Glyph name: uni092D	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni092E	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni093D	Contours detected: 3	Expected: 1
      -
      -- Glyph name: uni0945	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0955	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni0956	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0957	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni0959	Contours detected: 3	Expected: 2 or 4
      -
      -- Glyph name: uni0962	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0963	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0967	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0970	Contours detected: 1	Expected: 2
      -
      -- Glyph name: uni097F	Contours detected: 2	Expected: 3
      -
      -- Glyph name: uni25CC	Contours detected: 8	Expected: 16 or 12
      -
      -- Glyph name: Uogonek	Contours detected: 2	Expected: 1
      -
      -- Glyph name: Z	Contours detected: 2	Expected: 1
      -
      -- Glyph name: Zacute	Contours detected: 3	Expected: 2
      -
      -- Glyph name: Zcaron	Contours detected: 3	Expected: 2
      -
      -- Glyph name: Zdotaccent	Contours detected: 3	Expected: 2
      -
      -- Glyph name: aogonek	Contours detected: 3	Expected: 2
      -
      -- Glyph name: braceleft	Contours detected: 2	Expected: 1
      -
      -- Glyph name: eogonek	Contours detected: 3	Expected: 2
      -
      -- Glyph name: parenleft	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni01C4	Contours detected: 5	Expected: 4
      -
      -- Glyph name: uni0916	Contours detected: 2	Expected: 1 or 3
      -
      -- Glyph name: uni091B	Contours detected: 1	Expected: 2
      -
      -- Glyph name: uni092D	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni092E	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni093D	Contours detected: 3	Expected: 1
      -
      -- Glyph name: uni0945	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0955	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni0956	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0957	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni0959	Contours detected: 3	Expected: 2 or 4
      -
      -- Glyph name: uni0962	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0963	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0967	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0970	Contours detected: 1	Expected: 2
      -
      -- Glyph name: uni097F	Contours detected: 2	Expected: 3
      -
      -- Glyph name: uni25CC	Contours detected: 8	Expected: 16 or 12
      -
      -- Glyph name: uogonek	Contours detected: 2	Expected: 1
      -
      - - - [code: contour-count] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Wide-Thin.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      This check inspects the glyph outlines and detects the total number of contours in each of them. The expected values are infered from the typical ammounts of contours observed in a large collection of reference font families. The divergences listed below may simply indicate a significantly different design on some of your glyphs. On the other hand, some of these may flag actual bugs in the font such as glyphs mapped to an incorrect codepoint. Please consider reviewing the design and codepoint assignment of these to make sure they are correct.

      -

      The following glyphs do not have the recommended number of contours:

      -
      - Glyph name: D	Contours detected: 1	Expected: 2
      -
      -- Glyph name: g	Contours detected: 1	Expected: 2 or 3
      -
      -- Glyph name: braceleft	Contours detected: 3	Expected: 1
      -
      -- Glyph name: aogonek	Contours detected: 3	Expected: 2
      -
      -- Glyph name: Dcaron	Contours detected: 2	Expected: 3
      -
      -- Glyph name: eogonek	Contours detected: 3	Expected: 2
      -
      -- Glyph name: gcircumflex	Contours detected: 2	Expected: 3 or 4
      -
      -- Glyph name: gbreve	Contours detected: 2	Expected: 3 or 4
      -
      -- Glyph name: gdotaccent	Contours detected: 2	Expected: 3 or 4
      -
      -- Glyph name: uni0123	Contours detected: 2	Expected: 3 or 4
      -
      -- Glyph name: Uogonek	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uogonek	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni01C4	Contours detected: 3	Expected: 4
      -
      -- Glyph name: uni01C5	Contours detected: 3	Expected: 4
      -
      -- Glyph name: uni091B	Contours detected: 1	Expected: 2
      -
      -- Glyph name: uni092D	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni092E	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni093D	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0945	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0955	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni0956	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0957	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni0962	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0963	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0967	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0970	Contours detected: 1	Expected: 2
      -
      -- Glyph name: uni097F	Contours detected: 2	Expected: 3
      -
      -- Glyph name: uni1E0C	Contours detected: 2	Expected: 3
      -
      -- Glyph name: uni25CC	Contours detected: 8	Expected: 16 or 12
      -
      -- Glyph name: D	Contours detected: 1	Expected: 2
      -
      -- Glyph name: Dcaron	Contours detected: 2	Expected: 3
      -
      -- Glyph name: Uogonek	Contours detected: 2	Expected: 1
      -
      -- Glyph name: aogonek	Contours detected: 3	Expected: 2
      -
      -- Glyph name: braceleft	Contours detected: 3	Expected: 1
      -
      -- Glyph name: eogonek	Contours detected: 3	Expected: 2
      -
      -- Glyph name: g	Contours detected: 1	Expected: 2 or 3
      -
      -- Glyph name: gbreve	Contours detected: 2	Expected: 3 or 4
      -
      -- Glyph name: gcircumflex	Contours detected: 2	Expected: 3 or 4
      -
      -- Glyph name: gdotaccent	Contours detected: 2	Expected: 3 or 4
      -
      -- Glyph name: uni0123	Contours detected: 2	Expected: 3 or 4
      -
      -- Glyph name: uni01C4	Contours detected: 3	Expected: 4
      -
      -- Glyph name: uni01C5	Contours detected: 3	Expected: 4
      -
      -- Glyph name: uni091B	Contours detected: 1	Expected: 2
      -
      -- Glyph name: uni092D	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni092E	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni093D	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0945	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0955	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni0956	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0957	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni0962	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0963	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0967	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0970	Contours detected: 1	Expected: 2
      -
      -- Glyph name: uni097F	Contours detected: 2	Expected: 3
      -
      -- Glyph name: uni1E0C	Contours detected: 2	Expected: 3
      -
      -- Glyph name: uni25CC	Contours detected: 8	Expected: 16 or 12
      -
      -- Glyph name: uogonek	Contours detected: 2	Expected: 1
      -
      - - - [code: contour-count] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Bold-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      This check inspects the glyph outlines and detects the total number of contours in each of them. The expected values are infered from the typical ammounts of contours observed in a large collection of reference font families. The divergences listed below may simply indicate a significantly different design on some of your glyphs. On the other hand, some of these may flag actual bugs in the font such as glyphs mapped to an incorrect codepoint. Please consider reviewing the design and codepoint assignment of these to make sure they are correct.

      -

      The following glyphs do not have the recommended number of contours:

      -
      - Glyph name: parenleft	Contours detected: 2	Expected: 1
      -
      -- Glyph name: B	Contours detected: 1	Expected: 2 or 3
      -
      -- Glyph name: D	Contours detected: 1	Expected: 2
      -
      -- Glyph name: Z	Contours detected: 2	Expected: 1
      -
      -- Glyph name: braceleft	Contours detected: 2	Expected: 1
      -
      -- Glyph name: mu	Contours detected: 2	Expected: 1
      -
      -- Glyph name: Eth	Contours detected: 1	Expected: 2
      -
      -- Glyph name: germandbls	Contours detected: 3	Expected: 1
      -
      -- Glyph name: aogonek	Contours detected: 3	Expected: 2
      -
      -- Glyph name: Dcaron	Contours detected: 2	Expected: 3
      -
      -- Glyph name: Dcroat	Contours detected: 1	Expected: 2
      -
      -- Glyph name: eogonek	Contours detected: 3	Expected: 2
      -
      -- Glyph name: Uogonek	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uogonek	Contours detected: 2	Expected: 1
      -
      -- Glyph name: Zacute	Contours detected: 3	Expected: 2
      -
      -- Glyph name: Zdotaccent	Contours detected: 3	Expected: 2
      -
      -- Glyph name: Zcaron	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni01C5	Contours detected: 3	Expected: 4
      -
      -- Glyph name: uni090B	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0916	Contours detected: 2	Expected: 1 or 3
      -
      -- Glyph name: uni091B	Contours detected: 1	Expected: 2
      -
      -- Glyph name: uni092D	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni092E	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni093D	Contours detected: 3	Expected: 1
      -
      -- Glyph name: uni0945	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0955	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni0956	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0957	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni0959	Contours detected: 3	Expected: 2 or 4
      -
      -- Glyph name: uni0960	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0962	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0963	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0967	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0970	Contours detected: 1	Expected: 2
      -
      -- Glyph name: uni097F	Contours detected: 2	Expected: 3
      -
      -- Glyph name: uni1E0C	Contours detected: 2	Expected: 3
      -
      -- Glyph name: uni1E9E	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni25CC	Contours detected: 8	Expected: 16 or 12
      -
      -- Glyph name: B	Contours detected: 1	Expected: 2 or 3
      -
      -- Glyph name: D	Contours detected: 1	Expected: 2
      -
      -- Glyph name: Dcaron	Contours detected: 2	Expected: 3
      -
      -- Glyph name: Dcroat	Contours detected: 1	Expected: 2
      -
      -- Glyph name: Eth	Contours detected: 1	Expected: 2
      -
      -- Glyph name: Uogonek	Contours detected: 2	Expected: 1
      -
      -- Glyph name: Z	Contours detected: 2	Expected: 1
      -
      -- Glyph name: Zacute	Contours detected: 3	Expected: 2
      -
      -- Glyph name: Zcaron	Contours detected: 3	Expected: 2
      -
      -- Glyph name: Zdotaccent	Contours detected: 3	Expected: 2
      -
      -- Glyph name: aogonek	Contours detected: 3	Expected: 2
      -
      -- Glyph name: braceleft	Contours detected: 2	Expected: 1
      -
      -- Glyph name: eogonek	Contours detected: 3	Expected: 2
      -
      -- Glyph name: germandbls	Contours detected: 3	Expected: 1
      -
      -- Glyph name: parenleft	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni01C5	Contours detected: 3	Expected: 4
      -
      -- Glyph name: uni090B	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0916	Contours detected: 2	Expected: 1 or 3
      -
      -- Glyph name: uni091B	Contours detected: 1	Expected: 2
      -
      -- Glyph name: uni092D	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni092E	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni093D	Contours detected: 3	Expected: 1
      -
      -- Glyph name: uni0945	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0955	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni0956	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0957	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni0959	Contours detected: 3	Expected: 2 or 4
      -
      -- Glyph name: uni0960	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0962	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0963	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0967	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0970	Contours detected: 1	Expected: 2
      -
      -- Glyph name: uni097F	Contours detected: 2	Expected: 3
      -
      -- Glyph name: uni1E0C	Contours detected: 2	Expected: 3
      -
      -- Glyph name: uni1E9E	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni25CC	Contours detected: 8	Expected: 16 or 12
      -
      -- Glyph name: uogonek	Contours detected: 2	Expected: 1
      -
      - - - [code: contour-count] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Thin-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      This check inspects the glyph outlines and detects the total number of contours in each of them. The expected values are infered from the typical ammounts of contours observed in a large collection of reference font families. The divergences listed below may simply indicate a significantly different design on some of your glyphs. On the other hand, some of these may flag actual bugs in the font such as glyphs mapped to an incorrect codepoint. Please consider reviewing the design and codepoint assignment of these to make sure they are correct.

      -

      The following glyphs do not have the recommended number of contours:

      -
      - Glyph name: A	Contours detected: 1	Expected: 2
      -
      -- Glyph name: g	Contours detected: 1	Expected: 2 or 3
      -
      -- Glyph name: o	Contours detected: 1	Expected: 2
      -
      -- Glyph name: braceleft	Contours detected: 2	Expected: 1
      -
      -- Glyph name: Agrave	Contours detected: 2	Expected: 3
      -
      -- Glyph name: Aacute	Contours detected: 2	Expected: 3
      -
      -- Glyph name: Acircumflex	Contours detected: 2	Expected: 3
      -
      -- Glyph name: Atilde	Contours detected: 2	Expected: 3
      -
      -- Glyph name: Adieresis	Contours detected: 3	Expected: 4
      -
      -- Glyph name: ograve	Contours detected: 2	Expected: 3
      -
      -- Glyph name: oacute	Contours detected: 2	Expected: 3
      -
      -- Glyph name: ocircumflex	Contours detected: 2	Expected: 3
      -
      -- Glyph name: otilde	Contours detected: 2	Expected: 3
      -
      -- Glyph name: odieresis	Contours detected: 3	Expected: 4
      -
      -- Glyph name: Amacron	Contours detected: 2	Expected: 3
      -
      -- Glyph name: Abreve	Contours detected: 2	Expected: 3
      -
      -- Glyph name: aogonek	Contours detected: 3	Expected: 2
      -
      -- Glyph name: eogonek	Contours detected: 3	Expected: 2
      -
      -- Glyph name: gcircumflex	Contours detected: 2	Expected: 3 or 4
      -
      -- Glyph name: gbreve	Contours detected: 2	Expected: 3 or 4
      -
      -- Glyph name: gdotaccent	Contours detected: 2	Expected: 3 or 4
      -
      -- Glyph name: uni0123	Contours detected: 2	Expected: 3 or 4
      -
      -- Glyph name: Eng	Contours detected: 2	Expected: 1
      -
      -- Glyph name: omacron	Contours detected: 2	Expected: 3
      -
      -- Glyph name: obreve	Contours detected: 2	Expected: 3
      -
      -- Glyph name: ohungarumlaut	Contours detected: 3	Expected: 4
      -
      -- Glyph name: Uogonek	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uogonek	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0910	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni091B	Contours detected: 1	Expected: 2
      -
      -- Glyph name: uni092D	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni092E	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni093D	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0945	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0955	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni0956	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0957	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni0962	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0963	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0967	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0970	Contours detected: 1	Expected: 2
      -
      -- Glyph name: uni097F	Contours detected: 2	Expected: 3
      -
      -- Glyph name: uni1E4D	Contours detected: 3	Expected: 4
      -
      -- Glyph name: wacute	Contours detected: 1	Expected: 2
      -
      -- Glyph name: uni25CC	Contours detected: 8	Expected: 16 or 12
      -
      -- Glyph name: A	Contours detected: 1	Expected: 2
      -
      -- Glyph name: Aacute	Contours detected: 2	Expected: 3
      -
      -- Glyph name: Abreve	Contours detected: 2	Expected: 3
      -
      -- Glyph name: Acircumflex	Contours detected: 2	Expected: 3
      -
      -- Glyph name: Adieresis	Contours detected: 3	Expected: 4
      -
      -- Glyph name: Agrave	Contours detected: 2	Expected: 3
      -
      -- Glyph name: Amacron	Contours detected: 2	Expected: 3
      -
      -- Glyph name: Atilde	Contours detected: 2	Expected: 3
      -
      -- Glyph name: Eng	Contours detected: 2	Expected: 1
      -
      -- Glyph name: Uogonek	Contours detected: 2	Expected: 1
      -
      -- Glyph name: aogonek	Contours detected: 3	Expected: 2
      -
      -- Glyph name: braceleft	Contours detected: 2	Expected: 1
      -
      -- Glyph name: eogonek	Contours detected: 3	Expected: 2
      -
      -- Glyph name: g	Contours detected: 1	Expected: 2 or 3
      -
      -- Glyph name: gbreve	Contours detected: 2	Expected: 3 or 4
      -
      -- Glyph name: gcircumflex	Contours detected: 2	Expected: 3 or 4
      -
      -- Glyph name: gdotaccent	Contours detected: 2	Expected: 3 or 4
      -
      -- Glyph name: o	Contours detected: 1	Expected: 2
      -
      -- Glyph name: oacute	Contours detected: 2	Expected: 3
      -
      -- Glyph name: ocircumflex	Contours detected: 2	Expected: 3
      -
      -- Glyph name: odieresis	Contours detected: 3	Expected: 4
      -
      -- Glyph name: ograve	Contours detected: 2	Expected: 3
      -
      -- Glyph name: ohungarumlaut	Contours detected: 3	Expected: 4
      -
      -- Glyph name: omacron	Contours detected: 2	Expected: 3
      -
      -- Glyph name: otilde	Contours detected: 2	Expected: 3
      -
      -- Glyph name: uni0123	Contours detected: 2	Expected: 3 or 4
      -
      -- Glyph name: uni0910	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni091B	Contours detected: 1	Expected: 2
      -
      -- Glyph name: uni092D	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni092E	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni093D	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0945	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0955	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni0956	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0957	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni0962	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0963	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0967	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0970	Contours detected: 1	Expected: 2
      -
      -- Glyph name: uni097F	Contours detected: 2	Expected: 3
      -
      -- Glyph name: uni1E4D	Contours detected: 3	Expected: 4
      -
      -- Glyph name: uni25CC	Contours detected: 8	Expected: 16 or 12
      -
      -- Glyph name: uogonek	Contours detected: 2	Expected: 1
      -
      -- Glyph name: wacute	Contours detected: 1	Expected: 2
      -
      - - - [code: contour-count] - -
      -
    • - -
    -
    -
    - - - -
    - - 🔥 - Samaano-Wide-Bold-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      This check inspects the glyph outlines and detects the total number of contours in each of them. The expected values are infered from the typical ammounts of contours observed in a large collection of reference font families. The divergences listed below may simply indicate a significantly different design on some of your glyphs. On the other hand, some of these may flag actual bugs in the font such as glyphs mapped to an incorrect codepoint. Please consider reviewing the design and codepoint assignment of these to make sure they are correct.

      -

      The following glyphs do not have the recommended number of contours:

      -
      - Glyph name: parenleft	Contours detected: 2	Expected: 1
      -
      -- Glyph name: D	Contours detected: 1	Expected: 2
      -
      -- Glyph name: Z	Contours detected: 2	Expected: 1
      -
      -- Glyph name: braceleft	Contours detected: 2	Expected: 1
      -
      -- Glyph name: mu	Contours detected: 2	Expected: 1
      -
      -- Glyph name: germandbls	Contours detected: 3	Expected: 1
      -
      -- Glyph name: aogonek	Contours detected: 3	Expected: 2
      -
      -- Glyph name: Dcaron	Contours detected: 2	Expected: 3
      -
      -- Glyph name: Dcroat	Contours detected: 1	Expected: 2
      -
      -- Glyph name: eogonek	Contours detected: 3	Expected: 2
      -
      -- Glyph name: Uogonek	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uogonek	Contours detected: 2	Expected: 1
      -
      -- Glyph name: Zacute	Contours detected: 3	Expected: 2
      -
      -- Glyph name: Zdotaccent	Contours detected: 3	Expected: 2
      -
      -- Glyph name: Zcaron	Contours detected: 3	Expected: 2
      -
      -- Glyph name: Eth	Contours detected: 1	Expected: 2
      -
      -- Glyph name: uni01C5	Contours detected: 3	Expected: 4
      -
      -- Glyph name: uni090B	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0916	Contours detected: 2	Expected: 1 or 3
      -
      -- Glyph name: uni091B	Contours detected: 1	Expected: 2
      -
      -- Glyph name: uni092D	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni092E	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni093D	Contours detected: 3	Expected: 1
      -
      -- Glyph name: uni0945	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0955	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni0956	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0957	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni0959	Contours detected: 3	Expected: 2 or 4
      -
      -- Glyph name: uni0960	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0962	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0963	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0967	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0970	Contours detected: 1	Expected: 2
      -
      -- Glyph name: uni097F	Contours detected: 2	Expected: 3
      -
      -- Glyph name: uni1E0C	Contours detected: 2	Expected: 3
      -
      -- Glyph name: uni1E9E	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni25CC	Contours detected: 8	Expected: 16 or 12
      -
      -- Glyph name: D	Contours detected: 1	Expected: 2
      -
      -- Glyph name: Dcaron	Contours detected: 2	Expected: 3
      -
      -- Glyph name: Dcroat	Contours detected: 1	Expected: 2
      -
      -- Glyph name: Eth	Contours detected: 1	Expected: 2
      -
      -- Glyph name: Uogonek	Contours detected: 2	Expected: 1
      -
      -- Glyph name: Z	Contours detected: 2	Expected: 1
      -
      -- Glyph name: Zacute	Contours detected: 3	Expected: 2
      -
      -- Glyph name: Zcaron	Contours detected: 3	Expected: 2
      -
      -- Glyph name: Zdotaccent	Contours detected: 3	Expected: 2
      -
      -- Glyph name: aogonek	Contours detected: 3	Expected: 2
      -
      -- Glyph name: braceleft	Contours detected: 2	Expected: 1
      -
      -- Glyph name: eogonek	Contours detected: 3	Expected: 2
      -
      -- Glyph name: germandbls	Contours detected: 3	Expected: 1
      -
      -- Glyph name: parenleft	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni01C5	Contours detected: 3	Expected: 4
      -
      -- Glyph name: uni090B	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0916	Contours detected: 2	Expected: 1 or 3
      -
      -- Glyph name: uni091B	Contours detected: 1	Expected: 2
      -
      -- Glyph name: uni092D	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni092E	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni093D	Contours detected: 3	Expected: 1
      -
      -- Glyph name: uni0945	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0955	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni0956	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0957	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni0959	Contours detected: 3	Expected: 2 or 4
      -
      -- Glyph name: uni0960	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0962	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0963	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0967	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0970	Contours detected: 1	Expected: 2
      -
      -- Glyph name: uni097F	Contours detected: 2	Expected: 3
      -
      -- Glyph name: uni1E0C	Contours detected: 2	Expected: 3
      -
      -- Glyph name: uni1E9E	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni25CC	Contours detected: 8	Expected: 16 or 12
      -
      -- Glyph name: uogonek	Contours detected: 2	Expected: 1
      -
      - - - [code: contour-count] - -
      -
    • - -
    • - - 🔥 FAIL - - - -

      The following glyphs have no contours even though they were expected to have some:

      -
      - Glyph name: kgreenlandic	Expected: 1 or 2
      -
      -- Glyph name: Tbar	Expected: 1
      -
      -- Glyph name: tbar	Expected: 1
      -
      -- Glyph name: Tbar	Expected: 1
      -
      -- Glyph name: kgreenlandic	Expected: 1 or 2
      -
      -- Glyph name: tbar	Expected: 1
      -
      - - - [code: no-contour] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Wide-Thin-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      This check inspects the glyph outlines and detects the total number of contours in each of them. The expected values are infered from the typical ammounts of contours observed in a large collection of reference font families. The divergences listed below may simply indicate a significantly different design on some of your glyphs. On the other hand, some of these may flag actual bugs in the font such as glyphs mapped to an incorrect codepoint. Please consider reviewing the design and codepoint assignment of these to make sure they are correct.

      -

      The following glyphs do not have the recommended number of contours:

      -
      - Glyph name: A	Contours detected: 1	Expected: 2
      -
      -- Glyph name: g	Contours detected: 1	Expected: 2 or 3
      -
      -- Glyph name: braceleft	Contours detected: 3	Expected: 1
      -
      -- Glyph name: Agrave	Contours detected: 2	Expected: 3
      -
      -- Glyph name: Aacute	Contours detected: 2	Expected: 3
      -
      -- Glyph name: Acircumflex	Contours detected: 2	Expected: 3
      -
      -- Glyph name: Atilde	Contours detected: 2	Expected: 3
      -
      -- Glyph name: Adieresis	Contours detected: 3	Expected: 4
      -
      -- Glyph name: Icircumflex	Contours detected: 1	Expected: 2
      -
      -- Glyph name: Amacron	Contours detected: 2	Expected: 3
      -
      -- Glyph name: Abreve	Contours detected: 2	Expected: 3
      -
      -- Glyph name: Aogonek	Contours detected: 1	Expected: 2 or 3
      -
      -- Glyph name: eogonek	Contours detected: 3	Expected: 2
      -
      -- Glyph name: gcircumflex	Contours detected: 2	Expected: 3 or 4
      -
      -- Glyph name: gbreve	Contours detected: 2	Expected: 3 or 4
      -
      -- Glyph name: gdotaccent	Contours detected: 2	Expected: 3 or 4
      -
      -- Glyph name: uni0123	Contours detected: 2	Expected: 3 or 4
      -
      -- Glyph name: Jcircumflex	Contours detected: 1	Expected: 2
      -
      -- Glyph name: uni091B	Contours detected: 1	Expected: 2
      -
      -- Glyph name: uni092D	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni092E	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni093D	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0945	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0955	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni0956	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0957	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni0962	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0963	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0967	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0970	Contours detected: 1	Expected: 2
      -
      -- Glyph name: uni097F	Contours detected: 2	Expected: 3
      -
      -- Glyph name: uni25CC	Contours detected: 8	Expected: 16 or 12
      -
      -- Glyph name: A	Contours detected: 1	Expected: 2
      -
      -- Glyph name: Aacute	Contours detected: 2	Expected: 3
      -
      -- Glyph name: Abreve	Contours detected: 2	Expected: 3
      -
      -- Glyph name: Acircumflex	Contours detected: 2	Expected: 3
      -
      -- Glyph name: Adieresis	Contours detected: 3	Expected: 4
      -
      -- Glyph name: Agrave	Contours detected: 2	Expected: 3
      -
      -- Glyph name: Amacron	Contours detected: 2	Expected: 3
      -
      -- Glyph name: Aogonek	Contours detected: 1	Expected: 2 or 3
      -
      -- Glyph name: Atilde	Contours detected: 2	Expected: 3
      -
      -- Glyph name: Icircumflex	Contours detected: 1	Expected: 2
      -
      -- Glyph name: Jcircumflex	Contours detected: 1	Expected: 2
      -
      -- Glyph name: braceleft	Contours detected: 3	Expected: 1
      -
      -- Glyph name: eogonek	Contours detected: 3	Expected: 2
      -
      -- Glyph name: g	Contours detected: 1	Expected: 2 or 3
      -
      -- Glyph name: gbreve	Contours detected: 2	Expected: 3 or 4
      -
      -- Glyph name: gcircumflex	Contours detected: 2	Expected: 3 or 4
      -
      -- Glyph name: gdotaccent	Contours detected: 2	Expected: 3 or 4
      -
      -- Glyph name: uni0123	Contours detected: 2	Expected: 3 or 4
      -
      -- Glyph name: uni091B	Contours detected: 1	Expected: 2
      -
      -- Glyph name: uni092D	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni092E	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni093D	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0945	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0955	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni0956	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0957	Contours detected: 3	Expected: 2
      -
      -- Glyph name: uni0962	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0963	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0967	Contours detected: 2	Expected: 1
      -
      -- Glyph name: uni0970	Contours detected: 1	Expected: 2
      -
      -- Glyph name: uni097F	Contours detected: 2	Expected: 3
      -
      -- Glyph name: uni25CC	Contours detected: 8	Expected: 16 or 12
      -
      - - - [code: contour-count] - -
      -
    • - -
    -
    -
    - - - -

    - - Checking all files are in the same directory. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/family/single_directory>
    - - - -
    - - - -
    - - - - - -

    - - Each font in a family must have the same set of vertical metrics values. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/family/vertical_metrics>
    - - - -
    - - - -
    - - - - - -

    - - Checking OS/2 usWinAscent & usWinDescent. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/family/win_ascent_and_descent>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - -
    - - 🔥 - Samaano-Bold.ttf - - -
    -
      - -
    • - - 🔥 FAIL - - - -

      OS/2.usWinDescent value should be equal or greater than 978, but got 958 instead

      - - - [code: descent] - -
      -
    • - -
    -
    -
    - - - -
    - - 🔥 - Samaano-Thin.ttf - - -
    -
      - -
    • - - 🔥 FAIL - - - -

      OS/2.usWinDescent value should be equal or greater than 978, but got 958 instead

      - - - [code: descent] - -
      -
    • - -
    -
    -
    - - - -
    - - 🔥 - Samaano-Wide-Bold.ttf - - -
    -
      - -
    • - - 🔥 FAIL - - - -

      OS/2.usWinDescent value should be equal or greater than 978, but got 958 instead

      - - - [code: descent] - -
      -
    • - -
    -
    -
    - - - -
    - - 🔥 - Samaano-Wide-Thin.ttf - - -
    -
      - -
    • - - 🔥 FAIL - - - -

      OS/2.usWinDescent value should be equal or greater than 978, but got 958 instead

      - - - [code: descent] - -
      -
    • - -
    -
    -
    - - - -
    - - 🔥 - Samaano-Bold-Slanted.ttf - - -
    -
      - -
    • - - 🔥 FAIL - - - -

      OS/2.usWinDescent value should be equal or greater than 978, but got 958 instead

      - - - [code: descent] - -
      -
    • - -
    -
    -
    - - - -
    - - 🔥 - Samaano-Thin-Slanted.ttf - - -
    -
      - -
    • - - 🔥 FAIL - - - -

      OS/2.usWinDescent value should be equal or greater than 978, but got 958 instead

      - - - [code: descent] - -
      -
    • - -
    -
    -
    - - - -
    - - 🔥 - Samaano-Wide-Bold-Slanted.ttf - - -
    -
      - -
    • - - 🔥 FAIL - - - -

      OS/2.usWinDescent value should be equal or greater than 978, but got 958 instead

      - - - [code: descent] - -
      -
    • - -
    -
    -
    - - - -
    - - 🔥 - Samaano-Wide-Thin-Slanted.ttf - - -
    -
      - -
    • - - 🔥 FAIL - - - -

      OS/2.usWinDescent value should be equal or greater than 978, but got 958 instead

      - - - [code: descent] - -
      -
    • - -
    -
    -
    - - - -

    - - Do we have the latest version of FontBakery installed? -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/fontbakery_version>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Ensure that the font can be rasterized by FreeType. -

    -
    Check ID: <FontBakeryCheck:com.adobe.fonts/check/freetype_rasterizer>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Ensure no GPOS7 lookups are present. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/gpos7>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - -
    EXPERIMENTAL CHECK - Since 2024/Jun/10
    - - Ensure 'smcp' (small caps) lookups are defined before ligature lookups in the 'GSUB' table. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/gsub/smallcaps_before_ligatures>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Detect any interpolation issues in the font. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/interpolation_issues>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Check that legacy accents aren't used in composite glyphs. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/legacy_accents>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Checking Vertical Metric Linegaps. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/linegaps>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Font contains '.notdef' as its first glyph? -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/mandatory_glyphs>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Check math signs have the same width. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/math_signs_width>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Name table records must not have trailing spaces. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/name/trailing_spaces>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Checking OS/2 Metrics match hhea Metrics. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/os2_metrics_match_hhea>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Checking with ots-sanitize. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/ots>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Font contains all required tables? -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/required_tables>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Ensure indic fonts have the Indian Rupee Sign glyph. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/rupee>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Font has the proper sfntVersion value? -

    -
    Check ID: <FontBakeryCheck:com.adobe.fonts/check/sfnt_version>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Does the font contain a soft hyphen? -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/soft_hyphen>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Checking STAT table entries in static fonts. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/STAT_in_statics>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Check correctness of STAT table strings -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/STAT_strings>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - -
    EXPERIMENTAL CHECK - Since 2024/Jun/04
    - - Check tabular widths don't have kerning. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/tabular_kerning>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Ensure component transforms do not perform scaling or rotation. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/transformed_components>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Checking with fontTools.ttx -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/ttx_roundtrip>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - -
    EXPERIMENTAL CHECK - Since 2024/Jul/17
    - - Checking that the typoAscender exceeds the yMax of the /Agrave. -

    -
    Check ID: <FontBakeryCheck:com.arrowtype.fonts/check/typoascender_exceeds_Agrave>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Font contains unique glyph names? -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/unique_glyphnames>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Check font contains no unreachable glyphs -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/unreachable_glyphs>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - -
    - - ⚠️ - Samaano-Bold.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The following glyphs could not be reached by codepoint or substitution rules:

      -
      - glyph094D
      -
      -- uni0930_uni094D.abvs
      -
      -- uni0930_uni094D.vatu
      -
      - - - [code: unreachable-glyphs] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Thin.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The following glyphs could not be reached by codepoint or substitution rules:

      -
      - glyph094D
      -
      -- uni0930_uni094D.abvs
      -
      -- uni0930_uni094D.vatu
      -
      - - - [code: unreachable-glyphs] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Wide-Bold.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The following glyphs could not be reached by codepoint or substitution rules:

      -
      - glyph094D
      -
      -- uni0930_uni094D.abvs
      -
      -- uni0930_uni094D.vatu
      -
      - - - [code: unreachable-glyphs] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Wide-Thin.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The following glyphs could not be reached by codepoint or substitution rules:

      -
      - glyph094D
      -
      -- uni0930_uni094D.abvs
      -
      -- uni0930_uni094D.vatu
      -
      - - - [code: unreachable-glyphs] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Bold-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The following glyphs could not be reached by codepoint or substitution rules:

      -
      - glyph094D
      -
      -- uni0930_uni094D.abvs
      -
      -- uni0930_uni094D.vatu
      -
      - - - [code: unreachable-glyphs] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Thin-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The following glyphs could not be reached by codepoint or substitution rules:

      -
      - glyph094D
      -
      -- uni0930_uni094D.abvs
      -
      -- uni0930_uni094D.vatu
      -
      - - - [code: unreachable-glyphs] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Wide-Bold-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The following glyphs could not be reached by codepoint or substitution rules:

      -
      - glyph094D
      -
      -- uni0930_uni094D.abvs
      -
      -- uni0930_uni094D.vatu
      -
      - - - [code: unreachable-glyphs] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Wide-Thin-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The following glyphs could not be reached by codepoint or substitution rules:

      -
      - glyph094D
      -
      -- uni0930_uni094D.abvs
      -
      -- uni0930_uni094D.vatu
      -
      - - - [code: unreachable-glyphs] - -
      -
    • - -
    -
    -
    - - - -

    - - Are there unwanted tables? -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/unwanted_tables>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Glyph names are all valid? -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/valid_glyphnames>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Font has **proper** whitespace glyph names? -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/whitespace_glyphnames>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Font contains glyphs for whitespace characters? -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/whitespace_glyphs>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Whitespace glyphs have ink? -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/whitespace_ink>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Space and non-breaking space have the same width? -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/whitespace_widths>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - -

    Article Checks

    - - ⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️ - - -

    - - Validate size, and resolution of article images, and ensure article page has minimum length and includes visual assets. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/article/images>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - -
    - - ⚠️ - Samaano-Bold.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      Family metadata at fonts/ttf does not have an article.

      - - - [code: lacks-article] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Thin.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      Family metadata at fonts/ttf does not have an article.

      - - - [code: lacks-article] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Wide-Bold.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      Family metadata at fonts/ttf does not have an article.

      - - - [code: lacks-article] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Wide-Thin.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      Family metadata at fonts/ttf does not have an article.

      - - - [code: lacks-article] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Bold-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      Family metadata at fonts/ttf does not have an article.

      - - - [code: lacks-article] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Thin-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      Family metadata at fonts/ttf does not have an article.

      - - - [code: lacks-article] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Wide-Bold-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      Family metadata at fonts/ttf does not have an article.

      - - - [code: lacks-article] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Wide-Thin-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      Family metadata at fonts/ttf does not have an article.

      - - - [code: lacks-article] - -
      -
    • - -
    -
    -
    - - - - - - -

    Metadata Checks

    - - ⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩ - - -

    - - Does METADATA.pb copyright field contain broken links? -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/broken_links>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - METADATA.pb: Font styles are named canonically? -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/canonical_style_names>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - METADATA.pb: Check that font weight has a canonical value. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/canonical_weight_value>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Check samples can be rendered. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/can_render_samples>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Ensure METADATA.pb category field is valid. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/category>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Check if category on METADATA.pb matches what can be inferred from the family name. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/category_hints>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Validate VF axes match the ones declared on METADATA.pb. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/consistent_axis_enumeration>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - METADATA.pb: Check URL on copyright string is the same as in repository_url field. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/consistent_repo_urls>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - METADATA.pb: Copyright notice is the same in all fonts? -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/copyright>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - -
    EXPERIMENTAL CHECK - Since 2024/May/22
    - - Validate 'date_added' field on METADATA.pb. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/date_added>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - METADATA.pb: Designers are listed correctly on the Google Fonts catalog? -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/designer_profiles>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Multiple values in font designer field in METADATA.pb must be separated by commas. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/designer_values>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - At least one designer is declared in METADATA.pb -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/empty_designer>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Ensure METADATA.pb does not use escaped strings. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/escaped_strings>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Check font family directory name. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/family_directory_name>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Check that METADATA.pb family values are all the same. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/familyname>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - METADATA.pb: Font filenames match font.filename entries? -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/filenames>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Validate METADATA.pb axes values are within gf_axisregistry bounds. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/gf_axisregistry_bounds>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Validate METADATA.pb axes tags are defined in gf_axisregistry. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/gf_axisregistry_valid_tags>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Ensure there is a regular style defined in METADATA.pb. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/has_regular>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Check METADATA.pb includes production subsets. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/includes_production_subsets>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Check METADATA.pb file only contains a single CJK subset. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/single_cjk_subset>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - METADATA.pb license is "APACHE2", "UFL" or "OFL"? -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/license>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - METADATA.pb font.filename and font.post_script_name fields have equivalent values? -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/match_filename_postscript>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - METADATA.pb font.full_name and font.post_script_name fields have equivalent values ? -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/match_fullname_postscript>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - METADATA.pb: Check font name is the same as family name. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/match_name_familyname>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - METADATA.pb weight matches postScriptName for static fonts. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/match_weight_postscript>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - METADATA.pb should contain at least "menu" and "latin" subsets. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/menu_and_latin>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - METADATA.pb: Validate family.minisite_url field. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/minisite_url>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - METADATA.pb font.name and font.full_name fields match the values declared on the name table? -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/nameid/family_and_full_names>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - METADATA.pb font.name value should be same as the family name declared on the name table. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/nameid/font_name>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Checks METADATA.pb font.post_script_name matches postscript name declared on the name table. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/nameid/post_script_name>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Check METADATA.pb font weights are correct. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/os2_weightclass>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Check METADATA.pb parse correctly. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/parses>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - METADATA.pb: Check for primary_script -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/primary_script>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - METADATA.pb: Regular should be 400. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/regular_is_400>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Copyright notice on METADATA.pb should not contain 'Reserved Font Name'. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/reserved_font_name>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - METADATA.pb subsets should be alphabetically ordered. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/subsets_order>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Ensure METADATA.pb lists all font binaries. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/undeclared_fonts>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - METADATA.pb: check if fonts field only has unique "full_name" values. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/unique_full_name_values>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - METADATA.pb: check if fonts field only contains unique style:weight pairs. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/unique_weight_style_pairs>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Check for codepoints not covered by METADATA subsets. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/unreachable_subsetting>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - -
    - - ⚠️ - Samaano-Bold.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The following codepoints supported by the font are not covered by -any subsets defined in the font's metadata file, and will never -be served. You can solve this by either manually adding additional -subset declarations to METADATA.pb, or by editing the glyphset -definitions.

      -
        -
      • U+02D8 BREVE: try adding one of: canadian-aboriginal, yi
      • -
      • U+02D9 DOT ABOVE: try adding one of: canadian-aboriginal, yi
      • -
      • U+02DB OGONEK: try adding one of: canadian-aboriginal, yi
      • -
      • U+0302 COMBINING CIRCUMFLEX ACCENT: try adding one of: math, tifinagh, coptic, cherokee
      • -
      • U+0305 COMBINING OVERLINE: try adding one of: coptic, glagolitic, gothic, elbasan, math
      • -
      • U+0306 COMBINING BREVE: try adding one of: old-permic, tifinagh
      • -
      • U+0307 COMBINING DOT ABOVE: try adding one of: duployan, malayalam, hebrew, old-permic, todhri, tai-le, coptic, tifinagh, math, syriac, canadian-aboriginal
      • -
      • U+030A COMBINING RING ABOVE: try adding one of: duployan, syriac
      • -
      • U+030B COMBINING DOUBLE ACUTE ACCENT: try adding one of: cherokee, osage
      • -
      • U+030C COMBINING CARON: try adding one of: tai-le, cherokee
      • -
      • U+0326 COMBINING COMMA BELOW: try adding math
      • -
      • U+0327 COMBINING CEDILLA: try adding math
      • -
      • U+0328 COMBINING OGONEK: not included in any glyphset definition
      • -
      • U+0331 COMBINING MACRON BELOW: try adding one of: gothic, thai, tifinagh, caucasian-albanian, syriac, sunuwar, cherokee
      • -
      • U+2021 DOUBLE DAGGER: try adding adlam
      • -
      • U+2030 PER MILLE SIGN: try adding adlam
      • -
      • U+FB01 LATIN SMALL LIGATURE FI: not included in any glyphset definition
      • -
      • U+FB02 LATIN SMALL LIGATURE FL: not included in any glyphset definition
      • -
      -

      Or you can add the above codepoints to one of the subsets supported by the font: devanagari, latin, latin-ext

      - - - [code: unreachable-subsetting] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Thin.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The following codepoints supported by the font are not covered by -any subsets defined in the font's metadata file, and will never -be served. You can solve this by either manually adding additional -subset declarations to METADATA.pb, or by editing the glyphset -definitions.

      -
        -
      • U+02D8 BREVE: try adding one of: canadian-aboriginal, yi
      • -
      • U+02D9 DOT ABOVE: try adding one of: canadian-aboriginal, yi
      • -
      • U+02DB OGONEK: try adding one of: canadian-aboriginal, yi
      • -
      • U+0302 COMBINING CIRCUMFLEX ACCENT: try adding one of: math, tifinagh, coptic, cherokee
      • -
      • U+0305 COMBINING OVERLINE: try adding one of: coptic, glagolitic, gothic, elbasan, math
      • -
      • U+0306 COMBINING BREVE: try adding one of: old-permic, tifinagh
      • -
      • U+0307 COMBINING DOT ABOVE: try adding one of: duployan, malayalam, hebrew, old-permic, todhri, tai-le, coptic, tifinagh, math, syriac, canadian-aboriginal
      • -
      • U+030A COMBINING RING ABOVE: try adding one of: duployan, syriac
      • -
      • U+030B COMBINING DOUBLE ACUTE ACCENT: try adding one of: cherokee, osage
      • -
      • U+030C COMBINING CARON: try adding one of: tai-le, cherokee
      • -
      • U+0326 COMBINING COMMA BELOW: try adding math
      • -
      • U+0327 COMBINING CEDILLA: try adding math
      • -
      • U+0328 COMBINING OGONEK: not included in any glyphset definition
      • -
      • U+0331 COMBINING MACRON BELOW: try adding one of: gothic, thai, tifinagh, caucasian-albanian, syriac, sunuwar, cherokee
      • -
      • U+2021 DOUBLE DAGGER: try adding adlam
      • -
      • U+2030 PER MILLE SIGN: try adding adlam
      • -
      • U+FB01 LATIN SMALL LIGATURE FI: not included in any glyphset definition
      • -
      • U+FB02 LATIN SMALL LIGATURE FL: not included in any glyphset definition
      • -
      -

      Or you can add the above codepoints to one of the subsets supported by the font: devanagari, latin, latin-ext

      - - - [code: unreachable-subsetting] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Wide-Bold.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The following codepoints supported by the font are not covered by -any subsets defined in the font's metadata file, and will never -be served. You can solve this by either manually adding additional -subset declarations to METADATA.pb, or by editing the glyphset -definitions.

      -
        -
      • U+02D8 BREVE: try adding one of: canadian-aboriginal, yi
      • -
      • U+02D9 DOT ABOVE: try adding one of: canadian-aboriginal, yi
      • -
      • U+02DB OGONEK: try adding one of: canadian-aboriginal, yi
      • -
      • U+0302 COMBINING CIRCUMFLEX ACCENT: try adding one of: math, tifinagh, coptic, cherokee
      • -
      • U+0305 COMBINING OVERLINE: try adding one of: coptic, glagolitic, gothic, elbasan, math
      • -
      • U+0306 COMBINING BREVE: try adding one of: old-permic, tifinagh
      • -
      • U+0307 COMBINING DOT ABOVE: try adding one of: duployan, malayalam, hebrew, old-permic, todhri, tai-le, coptic, tifinagh, math, syriac, canadian-aboriginal
      • -
      • U+030A COMBINING RING ABOVE: try adding one of: duployan, syriac
      • -
      • U+030B COMBINING DOUBLE ACUTE ACCENT: try adding one of: cherokee, osage
      • -
      • U+030C COMBINING CARON: try adding one of: tai-le, cherokee
      • -
      • U+0326 COMBINING COMMA BELOW: try adding math
      • -
      • U+0327 COMBINING CEDILLA: try adding math
      • -
      • U+0328 COMBINING OGONEK: not included in any glyphset definition
      • -
      • U+0331 COMBINING MACRON BELOW: try adding one of: gothic, thai, tifinagh, caucasian-albanian, syriac, sunuwar, cherokee
      • -
      • U+2021 DOUBLE DAGGER: try adding adlam
      • -
      • U+2030 PER MILLE SIGN: try adding adlam
      • -
      • U+FB01 LATIN SMALL LIGATURE FI: not included in any glyphset definition
      • -
      • U+FB02 LATIN SMALL LIGATURE FL: not included in any glyphset definition
      • -
      -

      Or you can add the above codepoints to one of the subsets supported by the font: devanagari, latin, latin-ext

      - - - [code: unreachable-subsetting] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Wide-Thin.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The following codepoints supported by the font are not covered by -any subsets defined in the font's metadata file, and will never -be served. You can solve this by either manually adding additional -subset declarations to METADATA.pb, or by editing the glyphset -definitions.

      -
        -
      • U+02D8 BREVE: try adding one of: canadian-aboriginal, yi
      • -
      • U+02D9 DOT ABOVE: try adding one of: canadian-aboriginal, yi
      • -
      • U+02DB OGONEK: try adding one of: canadian-aboriginal, yi
      • -
      • U+0302 COMBINING CIRCUMFLEX ACCENT: try adding one of: math, tifinagh, coptic, cherokee
      • -
      • U+0305 COMBINING OVERLINE: try adding one of: coptic, glagolitic, gothic, elbasan, math
      • -
      • U+0306 COMBINING BREVE: try adding one of: old-permic, tifinagh
      • -
      • U+0307 COMBINING DOT ABOVE: try adding one of: duployan, malayalam, hebrew, old-permic, todhri, tai-le, coptic, tifinagh, math, syriac, canadian-aboriginal
      • -
      • U+030A COMBINING RING ABOVE: try adding one of: duployan, syriac
      • -
      • U+030B COMBINING DOUBLE ACUTE ACCENT: try adding one of: cherokee, osage
      • -
      • U+030C COMBINING CARON: try adding one of: tai-le, cherokee
      • -
      • U+0326 COMBINING COMMA BELOW: try adding math
      • -
      • U+0327 COMBINING CEDILLA: try adding math
      • -
      • U+0328 COMBINING OGONEK: not included in any glyphset definition
      • -
      • U+0331 COMBINING MACRON BELOW: try adding one of: gothic, thai, tifinagh, caucasian-albanian, syriac, sunuwar, cherokee
      • -
      • U+2021 DOUBLE DAGGER: try adding adlam
      • -
      • U+2030 PER MILLE SIGN: try adding adlam
      • -
      • U+FB01 LATIN SMALL LIGATURE FI: not included in any glyphset definition
      • -
      • U+FB02 LATIN SMALL LIGATURE FL: not included in any glyphset definition
      • -
      -

      Or you can add the above codepoints to one of the subsets supported by the font: devanagari, latin, latin-ext

      - - - [code: unreachable-subsetting] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Bold-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The following codepoints supported by the font are not covered by -any subsets defined in the font's metadata file, and will never -be served. You can solve this by either manually adding additional -subset declarations to METADATA.pb, or by editing the glyphset -definitions.

      -
        -
      • U+02D8 BREVE: try adding one of: canadian-aboriginal, yi
      • -
      • U+02D9 DOT ABOVE: try adding one of: canadian-aboriginal, yi
      • -
      • U+02DB OGONEK: try adding one of: canadian-aboriginal, yi
      • -
      • U+0302 COMBINING CIRCUMFLEX ACCENT: try adding one of: math, tifinagh, coptic, cherokee
      • -
      • U+0305 COMBINING OVERLINE: try adding one of: coptic, glagolitic, gothic, elbasan, math
      • -
      • U+0306 COMBINING BREVE: try adding one of: old-permic, tifinagh
      • -
      • U+0307 COMBINING DOT ABOVE: try adding one of: duployan, malayalam, hebrew, old-permic, todhri, tai-le, coptic, tifinagh, math, syriac, canadian-aboriginal
      • -
      • U+030A COMBINING RING ABOVE: try adding one of: duployan, syriac
      • -
      • U+030B COMBINING DOUBLE ACUTE ACCENT: try adding one of: cherokee, osage
      • -
      • U+030C COMBINING CARON: try adding one of: tai-le, cherokee
      • -
      • U+0326 COMBINING COMMA BELOW: try adding math
      • -
      • U+0327 COMBINING CEDILLA: try adding math
      • -
      • U+0328 COMBINING OGONEK: not included in any glyphset definition
      • -
      • U+0331 COMBINING MACRON BELOW: try adding one of: gothic, thai, tifinagh, caucasian-albanian, syriac, sunuwar, cherokee
      • -
      • U+2021 DOUBLE DAGGER: try adding adlam
      • -
      • U+2030 PER MILLE SIGN: try adding adlam
      • -
      • U+FB01 LATIN SMALL LIGATURE FI: not included in any glyphset definition
      • -
      • U+FB02 LATIN SMALL LIGATURE FL: not included in any glyphset definition
      • -
      -

      Or you can add the above codepoints to one of the subsets supported by the font: devanagari, latin, latin-ext

      - - - [code: unreachable-subsetting] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Thin-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The following codepoints supported by the font are not covered by -any subsets defined in the font's metadata file, and will never -be served. You can solve this by either manually adding additional -subset declarations to METADATA.pb, or by editing the glyphset -definitions.

      -
        -
      • U+02D8 BREVE: try adding one of: canadian-aboriginal, yi
      • -
      • U+02D9 DOT ABOVE: try adding one of: canadian-aboriginal, yi
      • -
      • U+02DB OGONEK: try adding one of: canadian-aboriginal, yi
      • -
      • U+0302 COMBINING CIRCUMFLEX ACCENT: try adding one of: math, tifinagh, coptic, cherokee
      • -
      • U+0305 COMBINING OVERLINE: try adding one of: coptic, glagolitic, gothic, elbasan, math
      • -
      • U+0306 COMBINING BREVE: try adding one of: old-permic, tifinagh
      • -
      • U+0307 COMBINING DOT ABOVE: try adding one of: duployan, malayalam, hebrew, old-permic, todhri, tai-le, coptic, tifinagh, math, syriac, canadian-aboriginal
      • -
      • U+030A COMBINING RING ABOVE: try adding one of: duployan, syriac
      • -
      • U+030B COMBINING DOUBLE ACUTE ACCENT: try adding one of: cherokee, osage
      • -
      • U+030C COMBINING CARON: try adding one of: tai-le, cherokee
      • -
      • U+0326 COMBINING COMMA BELOW: try adding math
      • -
      • U+0327 COMBINING CEDILLA: try adding math
      • -
      • U+0328 COMBINING OGONEK: not included in any glyphset definition
      • -
      • U+0331 COMBINING MACRON BELOW: try adding one of: gothic, thai, tifinagh, caucasian-albanian, syriac, sunuwar, cherokee
      • -
      • U+2021 DOUBLE DAGGER: try adding adlam
      • -
      • U+2030 PER MILLE SIGN: try adding adlam
      • -
      • U+FB01 LATIN SMALL LIGATURE FI: not included in any glyphset definition
      • -
      • U+FB02 LATIN SMALL LIGATURE FL: not included in any glyphset definition
      • -
      -

      Or you can add the above codepoints to one of the subsets supported by the font: devanagari, latin, latin-ext

      - - - [code: unreachable-subsetting] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Wide-Bold-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The following codepoints supported by the font are not covered by -any subsets defined in the font's metadata file, and will never -be served. You can solve this by either manually adding additional -subset declarations to METADATA.pb, or by editing the glyphset -definitions.

      -
        -
      • U+02D8 BREVE: try adding one of: canadian-aboriginal, yi
      • -
      • U+02D9 DOT ABOVE: try adding one of: canadian-aboriginal, yi
      • -
      • U+02DB OGONEK: try adding one of: canadian-aboriginal, yi
      • -
      • U+0302 COMBINING CIRCUMFLEX ACCENT: try adding one of: math, tifinagh, coptic, cherokee
      • -
      • U+0305 COMBINING OVERLINE: try adding one of: coptic, glagolitic, gothic, elbasan, math
      • -
      • U+0306 COMBINING BREVE: try adding one of: old-permic, tifinagh
      • -
      • U+0307 COMBINING DOT ABOVE: try adding one of: duployan, malayalam, hebrew, old-permic, todhri, tai-le, coptic, tifinagh, math, syriac, canadian-aboriginal
      • -
      • U+030A COMBINING RING ABOVE: try adding one of: duployan, syriac
      • -
      • U+030B COMBINING DOUBLE ACUTE ACCENT: try adding one of: cherokee, osage
      • -
      • U+030C COMBINING CARON: try adding one of: tai-le, cherokee
      • -
      • U+0326 COMBINING COMMA BELOW: try adding math
      • -
      • U+0327 COMBINING CEDILLA: try adding math
      • -
      • U+0328 COMBINING OGONEK: not included in any glyphset definition
      • -
      • U+0331 COMBINING MACRON BELOW: try adding one of: gothic, thai, tifinagh, caucasian-albanian, syriac, sunuwar, cherokee
      • -
      • U+2021 DOUBLE DAGGER: try adding adlam
      • -
      • U+2030 PER MILLE SIGN: try adding adlam
      • -
      • U+FB01 LATIN SMALL LIGATURE FI: not included in any glyphset definition
      • -
      • U+FB02 LATIN SMALL LIGATURE FL: not included in any glyphset definition
      • -
      -

      Or you can add the above codepoints to one of the subsets supported by the font: devanagari, latin, latin-ext

      - - - [code: unreachable-subsetting] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Wide-Thin-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The following codepoints supported by the font are not covered by -any subsets defined in the font's metadata file, and will never -be served. You can solve this by either manually adding additional -subset declarations to METADATA.pb, or by editing the glyphset -definitions.

      -
        -
      • U+02D8 BREVE: try adding one of: canadian-aboriginal, yi
      • -
      • U+02D9 DOT ABOVE: try adding one of: canadian-aboriginal, yi
      • -
      • U+02DB OGONEK: try adding one of: canadian-aboriginal, yi
      • -
      • U+0302 COMBINING CIRCUMFLEX ACCENT: try adding one of: math, tifinagh, coptic, cherokee
      • -
      • U+0305 COMBINING OVERLINE: try adding one of: coptic, glagolitic, gothic, elbasan, math
      • -
      • U+0306 COMBINING BREVE: try adding one of: old-permic, tifinagh
      • -
      • U+0307 COMBINING DOT ABOVE: try adding one of: duployan, malayalam, hebrew, old-permic, todhri, tai-le, coptic, tifinagh, math, syriac, canadian-aboriginal
      • -
      • U+030A COMBINING RING ABOVE: try adding one of: duployan, syriac
      • -
      • U+030B COMBINING DOUBLE ACUTE ACCENT: try adding one of: cherokee, osage
      • -
      • U+030C COMBINING CARON: try adding one of: tai-le, cherokee
      • -
      • U+0326 COMBINING COMMA BELOW: try adding math
      • -
      • U+0327 COMBINING CEDILLA: try adding math
      • -
      • U+0328 COMBINING OGONEK: not included in any glyphset definition
      • -
      • U+0331 COMBINING MACRON BELOW: try adding one of: gothic, thai, tifinagh, caucasian-albanian, syriac, sunuwar, cherokee
      • -
      • U+2021 DOUBLE DAGGER: try adding adlam
      • -
      • U+2030 PER MILLE SIGN: try adding adlam
      • -
      • U+FB01 LATIN SMALL LIGATURE FI: not included in any glyphset definition
      • -
      • U+FB02 LATIN SMALL LIGATURE FL: not included in any glyphset definition
      • -
      -

      Or you can add the above codepoints to one of the subsets supported by the font: devanagari, latin, latin-ext

      - - - [code: unreachable-subsetting] - -
      -
    • - -
    -
    -
    - - - -

    - - Check for METADATA subsets with zero support. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/unsupported_subsets>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - METADATA.pb font.filename field contains font name in right format? -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/valid_filename_values>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - METADATA.pb font.full_name field contains font name in right format? -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/valid_full_name_values>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Check name ID 25 to end with "Italic" for Italic VFs. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/valid_nameid25>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - METADATA.pb font.post_script_name field contains font name in right format? -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/valid_post_script_name_values>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - -

    Glyphset Checks

    - - 🔥🔥🔥🔥🔥🔥🔥🔥 - - -

    - - Shapes languages in all GF glyphsets. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/glyphsets/shape_languages>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - -
    - - 🔥 - Samaano-Bold.ttf - - -
    -
      - -
    • - - 🔥 FAIL - - - -

      GF_Latin_Core glyphset:

      - - - - - - - - - - - - - -
      LanguageFAIL messages
      nl_Latn (Dutch)Shaper didn't attach acutecomb to j
      - - - [code: failed-language-shaping] - -
      -
    • - -
    -
    -
    - - - -
    - - 🔥 - Samaano-Thin.ttf - - -
    -
      - -
    • - - 🔥 FAIL - - - -

      GF_Latin_Core glyphset:

      - - - - - - - - - - - - - -
      LanguageFAIL messages
      nl_Latn (Dutch)Shaper didn't attach acutecomb to j
      - - - [code: failed-language-shaping] - -
      -
    • - -
    -
    -
    - - - -
    - - 🔥 - Samaano-Wide-Bold.ttf - - -
    -
      - -
    • - - 🔥 FAIL - - - -

      GF_Latin_Core glyphset:

      - - - - - - - - - - - - - -
      LanguageFAIL messages
      nl_Latn (Dutch)Shaper didn't attach acutecomb to j
      - - - [code: failed-language-shaping] - -
      -
    • - -
    -
    -
    - - - -
    - - 🔥 - Samaano-Wide-Thin.ttf - - -
    -
      - -
    • - - 🔥 FAIL - - - -

      GF_Latin_Core glyphset:

      - - - - - - - - - - - - - -
      LanguageFAIL messages
      nl_Latn (Dutch)Shaper didn't attach acutecomb to j
      - - - [code: failed-language-shaping] - -
      -
    • - -
    -
    -
    - - - -
    - - 🔥 - Samaano-Bold-Slanted.ttf - - -
    -
      - -
    • - - 🔥 FAIL - - - -

      GF_Latin_Core glyphset:

      - - - - - - - - - - - - - -
      LanguageFAIL messages
      nl_Latn (Dutch)Shaper didn't attach acutecomb to j
      - - - [code: failed-language-shaping] - -
      -
    • - -
    -
    -
    - - - -
    - - 🔥 - Samaano-Thin-Slanted.ttf - - -
    -
      - -
    • - - 🔥 FAIL - - - -

      GF_Latin_Core glyphset:

      - - - - - - - - - - - - - -
      LanguageFAIL messages
      nl_Latn (Dutch)Shaper didn't attach acutecomb to j
      - - - [code: failed-language-shaping] - -
      -
    • - -
    -
    -
    - - - -
    - - 🔥 - Samaano-Wide-Bold-Slanted.ttf - - -
    -
      - -
    • - - 🔥 FAIL - - - -

      GF_Latin_Core glyphset:

      - - - - - - - - - - - - - -
      LanguageFAIL messages
      nl_Latn (Dutch)Shaper didn't attach acutecomb to j
      - - - [code: failed-language-shaping] - -
      -
    • - -
    -
    -
    - - - -
    - - 🔥 - Samaano-Wide-Thin-Slanted.ttf - - -
    -
      - -
    • - - 🔥 FAIL - - - -

      GF_Latin_Core glyphset:

      - - - - - - - - - - - - - -
      LanguageFAIL messages
      nl_Latn (Dutch)Shaper didn't attach acutecomb to j
      - - - [code: failed-language-shaping] - -
      -
    • - -
    -
    -
    - - - - - - - - - - -

    Name table checks

    - - 🔥🔥🔥🔥🔥🔥⚠️⚠️ - - -

    - - Combined length of family and style must not exceed 32 characters. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/name/family_and_style_max_length>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - -
    - - ⚠️ - Samaano-Wide-Bold-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      Name ID 6 'SamaanoWide-Bold-Slanted-Regular' exceeds 27 characters. This has been found to cause problems with PostScript printers, especially on Mac platforms.

      - - - [code: nameid6-too-long] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Wide-Thin-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      Name ID 6 'SamaanoWide-Thin-Slanted-Regular' exceeds 27 characters. This has been found to cause problems with PostScript printers, especially on Mac platforms.

      - - - [code: nameid6-too-long] - -
      -
    • - -
    -
    -
    - - - -

    - - Check family name for GF Guide compliance. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/name/family_name_compliance>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - -
    - - 🔥 - Samaano-Wide-Bold.ttf - - -
    -
      - -
    • - - 🔥 FAIL - - - -

      "Samaano Wide-Bold" contains the following characters which are not allowed: "-".

      - - - [code: forbidden-characters] - -
      -
    • - -
    -
    -
    - - - -
    - - 🔥 - Samaano-Wide-Thin.ttf - - -
    -
      - -
    • - - 🔥 FAIL - - - -

      "Samaano Wide-Thin" contains the following characters which are not allowed: "-".

      - - - [code: forbidden-characters] - -
      -
    • - -
    -
    -
    - - - -
    - - 🔥 - Samaano-Bold-Slanted.ttf - - -
    -
      - -
    • - - 🔥 FAIL - - - -

      "Samaano Bold-Slanted" contains the following characters which are not allowed: "-".

      - - - [code: forbidden-characters] - -
      -
    • - -
    -
    -
    - - - -
    - - 🔥 - Samaano-Thin-Slanted.ttf - - -
    -
      - -
    • - - 🔥 FAIL - - - -

      "Samaano Thin-Slanted" contains the following characters which are not allowed: "-".

      - - - [code: forbidden-characters] - -
      -
    • - -
    -
    -
    - - - -
    - - 🔥 - Samaano-Wide-Bold-Slanted.ttf - - -
    -
      - -
    • - - 🔥 FAIL - - - -

      "Samaano Wide-Bold-Slanted" contains the following characters which are not allowed: "-".

      - - - [code: forbidden-characters] - -
      -
    • - -
    -
    -
    - - - -
    - - 🔥 - Samaano-Wide-Thin-Slanted.ttf - - -
    -
      - -
    • - - 🔥 FAIL - - - -

      "Samaano Wide-Thin-Slanted" contains the following characters which are not allowed: "-".

      - - - [code: forbidden-characters] - -
      -
    • - -
    -
    -
    - - - -

    - - Check copyright namerecords match license file. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/name/license>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - License URL matches License text on name table? -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/name/license_url>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Name table entries should not contain line-breaks. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/name/line_breaks>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Name table strings must not contain the string 'Reserved Font Name'. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/name/rfn>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Substitute copyright, registered and trademark symbols in name table entries. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/name/unwanted_chars>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - -

    Shaping Checks

    - - ⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩ - - -

    - - Check that texts shape as per expectation -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/shaping/regression>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Check that no forbidden glyphs are found while shaping -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/shaping/forbidden>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Check that no collisions are found while shaping -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/shaping/collides>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Ensure dotted circle glyph is present and can attach marks. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/dotted_circle>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - -

    - - Ensure soft_dotted characters lose their dot when combined with marks that replace the dot. -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/soft_dotted>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - -
    - - ⚠️ - Samaano-Bold.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The dot of soft dotted characters used in orthographies must disappear in the following strings: i̊ i̋ j̀ j́ j̃ j̄ j̈ į̀ į́ į̂ į̃ į̄ į̌

      -

      The dot of soft dotted characters should disappear in other cases, for example: i̅ i̇ ỉ ǐ ị̅ ị̇ ị̉ ị̊ ị̋ ị̌ i̦̅ i̦̇ ỉ̦ i̦̊ i̦̋ ǐ̦ i̧̅ i̧̇ ỉ̧ i̧̊

      -

      Your font fully covers the following languages that require the soft-dotted feature: Lithuanian (Latn, 2,357,094 speakers).

      -

      Your font does not cover the following languages that require the soft-dotted feature: Nzakara (Latn, 50,000 speakers), Bete-Bendi (Latn, 100,000 speakers), Makaa (Latn, 221,000 speakers), Ejagham (Latn, 120,000 speakers), Igbo (Latn, 27,823,640 speakers), Zapotec (Latn, 490,000 speakers), Aghem (Latn, 38,843 speakers), Yala (Latn, 200,000 speakers), Ukrainian (Cyrl, 29,273,587 speakers), Sar (Latn, 500,000 speakers), Koonzime (Latn, 40,000 speakers), Mundani (Latn, 34,000 speakers), Dutch (Latn, 31,709,104 speakers), Ngbaka (Latn, 1,020,000 speakers), Ekpeye (Latn, 226,000 speakers), Avokaya (Latn, 100,000 speakers), Mango (Latn, 77,000 speakers), Southern Kisi (Latn, 360,000 speakers), Gulay (Latn, 250,478 speakers), Cicipu (Latn, 44,000 speakers), Basaa (Latn, 332,940 speakers), Dii (Latn, 71,000 speakers), South Central Banda (Latn, 244,000 speakers), Lugbara (Latn, 2,200,000 speakers), Navajo (Latn, 166,319 speakers), Nateni (Latn, 100,000 speakers), Kom (Latn, 360,685 speakers), Belarusian (Cyrl, 10,064,517 speakers), Ma’di (Latn, 584,000 speakers), Ebira (Latn, 2,200,000 speakers), Mfumte (Latn, 79,000 speakers), Bafut (Latn, 158,146 speakers), Vute (Latn, 21,000 speakers), Kpelle, Guinea (Latn, 622,000 speakers), Fur (Latn, 1,230,163 speakers), Ijo, Southeast (Latn, 2,471,000 speakers), Dan (Latn, 1,099,244 speakers).

      - - - [code: soft-dotted] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Thin.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The dot of soft dotted characters used in orthographies must disappear in the following strings: i̊ i̋ j̀ j́ j̃ j̄ j̈ į̀ į́ į̂ į̃ į̄ į̌

      -

      The dot of soft dotted characters should disappear in other cases, for example: i̅ i̇ ỉ ǐ ị̅ ị̇ ị̉ ị̊ ị̋ ị̌ i̦̅ i̦̇ ỉ̦ i̦̊ i̦̋ ǐ̦ i̧̅ i̧̇ ỉ̧ i̧̊

      -

      Your font fully covers the following languages that require the soft-dotted feature: Lithuanian (Latn, 2,357,094 speakers).

      -

      Your font does not cover the following languages that require the soft-dotted feature: Nzakara (Latn, 50,000 speakers), Bete-Bendi (Latn, 100,000 speakers), Makaa (Latn, 221,000 speakers), Ejagham (Latn, 120,000 speakers), Igbo (Latn, 27,823,640 speakers), Zapotec (Latn, 490,000 speakers), Aghem (Latn, 38,843 speakers), Yala (Latn, 200,000 speakers), Ukrainian (Cyrl, 29,273,587 speakers), Sar (Latn, 500,000 speakers), Koonzime (Latn, 40,000 speakers), Mundani (Latn, 34,000 speakers), Dutch (Latn, 31,709,104 speakers), Ngbaka (Latn, 1,020,000 speakers), Ekpeye (Latn, 226,000 speakers), Avokaya (Latn, 100,000 speakers), Mango (Latn, 77,000 speakers), Southern Kisi (Latn, 360,000 speakers), Gulay (Latn, 250,478 speakers), Cicipu (Latn, 44,000 speakers), Basaa (Latn, 332,940 speakers), Dii (Latn, 71,000 speakers), South Central Banda (Latn, 244,000 speakers), Lugbara (Latn, 2,200,000 speakers), Navajo (Latn, 166,319 speakers), Nateni (Latn, 100,000 speakers), Kom (Latn, 360,685 speakers), Belarusian (Cyrl, 10,064,517 speakers), Ma’di (Latn, 584,000 speakers), Ebira (Latn, 2,200,000 speakers), Mfumte (Latn, 79,000 speakers), Bafut (Latn, 158,146 speakers), Vute (Latn, 21,000 speakers), Kpelle, Guinea (Latn, 622,000 speakers), Fur (Latn, 1,230,163 speakers), Ijo, Southeast (Latn, 2,471,000 speakers), Dan (Latn, 1,099,244 speakers).

      - - - [code: soft-dotted] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Wide-Bold.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The dot of soft dotted characters used in orthographies must disappear in the following strings: i̊ i̋ j̀ j́ j̃ j̄ j̈ į̀ į́ į̂ į̃ į̄ į̌

      -

      The dot of soft dotted characters should disappear in other cases, for example: i̅ i̇ ỉ ǐ ị̅ ị̇ ị̉ ị̊ ị̋ ị̌ i̦̅ i̦̇ ỉ̦ i̦̊ i̦̋ ǐ̦ i̧̅ i̧̇ ỉ̧ i̧̊

      -

      Your font fully covers the following languages that require the soft-dotted feature: Lithuanian (Latn, 2,357,094 speakers).

      -

      Your font does not cover the following languages that require the soft-dotted feature: Nzakara (Latn, 50,000 speakers), Bete-Bendi (Latn, 100,000 speakers), Makaa (Latn, 221,000 speakers), Ejagham (Latn, 120,000 speakers), Igbo (Latn, 27,823,640 speakers), Zapotec (Latn, 490,000 speakers), Aghem (Latn, 38,843 speakers), Yala (Latn, 200,000 speakers), Ukrainian (Cyrl, 29,273,587 speakers), Sar (Latn, 500,000 speakers), Koonzime (Latn, 40,000 speakers), Mundani (Latn, 34,000 speakers), Dutch (Latn, 31,709,104 speakers), Ngbaka (Latn, 1,020,000 speakers), Ekpeye (Latn, 226,000 speakers), Avokaya (Latn, 100,000 speakers), Mango (Latn, 77,000 speakers), Southern Kisi (Latn, 360,000 speakers), Gulay (Latn, 250,478 speakers), Cicipu (Latn, 44,000 speakers), Basaa (Latn, 332,940 speakers), Dii (Latn, 71,000 speakers), South Central Banda (Latn, 244,000 speakers), Lugbara (Latn, 2,200,000 speakers), Navajo (Latn, 166,319 speakers), Nateni (Latn, 100,000 speakers), Kom (Latn, 360,685 speakers), Belarusian (Cyrl, 10,064,517 speakers), Ma’di (Latn, 584,000 speakers), Ebira (Latn, 2,200,000 speakers), Mfumte (Latn, 79,000 speakers), Bafut (Latn, 158,146 speakers), Vute (Latn, 21,000 speakers), Kpelle, Guinea (Latn, 622,000 speakers), Fur (Latn, 1,230,163 speakers), Ijo, Southeast (Latn, 2,471,000 speakers), Dan (Latn, 1,099,244 speakers).

      - - - [code: soft-dotted] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Wide-Thin.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The dot of soft dotted characters used in orthographies must disappear in the following strings: i̊ i̋ j̀ j́ j̃ j̄ j̈ į̀ į́ į̂ į̃ į̄ į̌

      -

      The dot of soft dotted characters should disappear in other cases, for example: i̅ i̇ ỉ ǐ ị̅ ị̇ ị̉ ị̊ ị̋ ị̌ i̦̅ i̦̇ ỉ̦ i̦̊ i̦̋ ǐ̦ i̧̅ i̧̇ ỉ̧ i̧̊

      -

      Your font fully covers the following languages that require the soft-dotted feature: Lithuanian (Latn, 2,357,094 speakers).

      -

      Your font does not cover the following languages that require the soft-dotted feature: Nzakara (Latn, 50,000 speakers), Bete-Bendi (Latn, 100,000 speakers), Makaa (Latn, 221,000 speakers), Ejagham (Latn, 120,000 speakers), Igbo (Latn, 27,823,640 speakers), Zapotec (Latn, 490,000 speakers), Aghem (Latn, 38,843 speakers), Yala (Latn, 200,000 speakers), Ukrainian (Cyrl, 29,273,587 speakers), Sar (Latn, 500,000 speakers), Koonzime (Latn, 40,000 speakers), Mundani (Latn, 34,000 speakers), Dutch (Latn, 31,709,104 speakers), Ngbaka (Latn, 1,020,000 speakers), Ekpeye (Latn, 226,000 speakers), Avokaya (Latn, 100,000 speakers), Mango (Latn, 77,000 speakers), Southern Kisi (Latn, 360,000 speakers), Gulay (Latn, 250,478 speakers), Cicipu (Latn, 44,000 speakers), Basaa (Latn, 332,940 speakers), Dii (Latn, 71,000 speakers), South Central Banda (Latn, 244,000 speakers), Lugbara (Latn, 2,200,000 speakers), Navajo (Latn, 166,319 speakers), Nateni (Latn, 100,000 speakers), Kom (Latn, 360,685 speakers), Belarusian (Cyrl, 10,064,517 speakers), Ma’di (Latn, 584,000 speakers), Ebira (Latn, 2,200,000 speakers), Mfumte (Latn, 79,000 speakers), Bafut (Latn, 158,146 speakers), Vute (Latn, 21,000 speakers), Kpelle, Guinea (Latn, 622,000 speakers), Fur (Latn, 1,230,163 speakers), Ijo, Southeast (Latn, 2,471,000 speakers), Dan (Latn, 1,099,244 speakers).

      - - - [code: soft-dotted] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Bold-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The dot of soft dotted characters used in orthographies must disappear in the following strings: i̊ i̋ j̀ j́ j̃ j̄ j̈ į̀ į́ į̂ į̃ į̄ į̌

      -

      The dot of soft dotted characters should disappear in other cases, for example: i̅ i̇ ỉ ǐ ị̅ ị̇ ị̉ ị̊ ị̋ ị̌ i̦̅ i̦̇ ỉ̦ i̦̊ i̦̋ ǐ̦ i̧̅ i̧̇ ỉ̧ i̧̊

      -

      Your font fully covers the following languages that require the soft-dotted feature: Lithuanian (Latn, 2,357,094 speakers).

      -

      Your font does not cover the following languages that require the soft-dotted feature: Nzakara (Latn, 50,000 speakers), Bete-Bendi (Latn, 100,000 speakers), Makaa (Latn, 221,000 speakers), Ejagham (Latn, 120,000 speakers), Igbo (Latn, 27,823,640 speakers), Zapotec (Latn, 490,000 speakers), Aghem (Latn, 38,843 speakers), Yala (Latn, 200,000 speakers), Ukrainian (Cyrl, 29,273,587 speakers), Sar (Latn, 500,000 speakers), Koonzime (Latn, 40,000 speakers), Mundani (Latn, 34,000 speakers), Dutch (Latn, 31,709,104 speakers), Ngbaka (Latn, 1,020,000 speakers), Ekpeye (Latn, 226,000 speakers), Avokaya (Latn, 100,000 speakers), Mango (Latn, 77,000 speakers), Southern Kisi (Latn, 360,000 speakers), Gulay (Latn, 250,478 speakers), Cicipu (Latn, 44,000 speakers), Basaa (Latn, 332,940 speakers), Dii (Latn, 71,000 speakers), South Central Banda (Latn, 244,000 speakers), Lugbara (Latn, 2,200,000 speakers), Navajo (Latn, 166,319 speakers), Nateni (Latn, 100,000 speakers), Kom (Latn, 360,685 speakers), Belarusian (Cyrl, 10,064,517 speakers), Ma’di (Latn, 584,000 speakers), Ebira (Latn, 2,200,000 speakers), Mfumte (Latn, 79,000 speakers), Bafut (Latn, 158,146 speakers), Vute (Latn, 21,000 speakers), Kpelle, Guinea (Latn, 622,000 speakers), Fur (Latn, 1,230,163 speakers), Ijo, Southeast (Latn, 2,471,000 speakers), Dan (Latn, 1,099,244 speakers).

      - - - [code: soft-dotted] - -
      -
    • - -
    -
    -
    - - - -
    - - ⚠️ - Samaano-Thin-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The dot of soft dotted characters used in orthographies must disappear in the following strings: i̊ i̋ j̀ j́ j̃ j̄ j̈ į̀ į́ į̂ į̃ į̄ į̌

      -

      The dot of soft dotted characters should disappear in other cases, for example: i̅ i̇ ỉ ǐ ị̅ ị̇ ị̉ ị̊ ị̋ ị̌ i̦̅ i̦̇ ỉ̦ i̦̊ i̦̋ ǐ̦ i̧̅ i̧̇ ỉ̧ i̧̊

      -

      Your font fully covers the following languages that require the soft-dotted feature: Lithuanian (Latn, 2,357,094 speakers).

      -

      Your font does not cover the following languages that require the soft-dotted feature: Nzakara (Latn, 50,000 speakers), Bete-Bendi (Latn, 100,000 speakers), Makaa (Latn, 221,000 speakers), Ejagham (Latn, 120,000 speakers), Igbo (Latn, 27,823,640 speakers), Zapotec (Latn, 490,000 speakers), Aghem (Latn, 38,843 speakers), Yala (Latn, 200,000 speakers), Ukrainian (Cyrl, 29,273,587 speakers), Sar (Latn, 500,000 speakers), Koonzime (Latn, 40,000 speakers), Mundani (Latn, 34,000 speakers), Dutch (Latn, 31,709,104 speakers), Ngbaka (Latn, 1,020,000 speakers), Ekpeye (Latn, 226,000 speakers), Avokaya (Latn, 100,000 speakers), Mango (Latn, 77,000 speakers), Southern Kisi (Latn, 360,000 speakers), Gulay (Latn, 250,478 speakers), Cicipu (Latn, 44,000 speakers), Basaa (Latn, 332,940 speakers), Dii (Latn, 71,000 speakers), South Central Banda (Latn, 244,000 speakers), Lugbara (Latn, 2,200,000 speakers), Navajo (Latn, 166,319 speakers), Nateni (Latn, 100,000 speakers), Kom (Latn, 360,685 speakers), Belarusian (Cyrl, 10,064,517 speakers), Ma’di (Latn, 584,000 speakers), Ebira (Latn, 2,200,000 speakers), Mfumte (Latn, 79,000 speakers), Bafut (Latn, 158,146 speakers), Vute (Latn, 21,000 speakers), Kpelle, Guinea (Latn, 622,000 speakers), Fur (Latn, 1,230,163 speakers), Ijo, Southeast (Latn, 2,471,000 speakers), Dan (Latn, 1,099,244 speakers).

      - - - [code: soft-dotted] - -
      -
    • - -
    -
    -
    - - -
    - - ⚠️ - Samaano-Wide-Bold-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The dot of soft dotted characters used in orthographies must disappear in the following strings: i̊ i̋ j̀ j́ j̃ j̄ j̈ į̀ į́ į̂ į̃ į̄ į̌

      -

      The dot of soft dotted characters should disappear in other cases, for example: i̅ i̇ ỉ ǐ ị̅ ị̇ ị̉ ị̊ ị̋ ị̌ i̦̅ i̦̇ ỉ̦ i̦̊ i̦̋ ǐ̦ i̧̅ i̧̇ ỉ̧ i̧̊

      -

      Your font fully covers the following languages that require the soft-dotted feature: Lithuanian (Latn, 2,357,094 speakers).

      -

      Your font does not cover the following languages that require the soft-dotted feature: Nzakara (Latn, 50,000 speakers), Bete-Bendi (Latn, 100,000 speakers), Makaa (Latn, 221,000 speakers), Ejagham (Latn, 120,000 speakers), Igbo (Latn, 27,823,640 speakers), Zapotec (Latn, 490,000 speakers), Aghem (Latn, 38,843 speakers), Yala (Latn, 200,000 speakers), Ukrainian (Cyrl, 29,273,587 speakers), Sar (Latn, 500,000 speakers), Koonzime (Latn, 40,000 speakers), Mundani (Latn, 34,000 speakers), Dutch (Latn, 31,709,104 speakers), Ngbaka (Latn, 1,020,000 speakers), Ekpeye (Latn, 226,000 speakers), Avokaya (Latn, 100,000 speakers), Mango (Latn, 77,000 speakers), Southern Kisi (Latn, 360,000 speakers), Gulay (Latn, 250,478 speakers), Cicipu (Latn, 44,000 speakers), Basaa (Latn, 332,940 speakers), Dii (Latn, 71,000 speakers), South Central Banda (Latn, 244,000 speakers), Lugbara (Latn, 2,200,000 speakers), Navajo (Latn, 166,319 speakers), Nateni (Latn, 100,000 speakers), Kom (Latn, 360,685 speakers), Belarusian (Cyrl, 10,064,517 speakers), Ma’di (Latn, 584,000 speakers), Ebira (Latn, 2,200,000 speakers), Mfumte (Latn, 79,000 speakers), Bafut (Latn, 158,146 speakers), Vute (Latn, 21,000 speakers), Kpelle, Guinea (Latn, 622,000 speakers), Fur (Latn, 1,230,163 speakers), Ijo, Southeast (Latn, 2,471,000 speakers), Dan (Latn, 1,099,244 speakers).

      +
    - - [code: soft-dotted] - - - - - -
    - - -
    - - ⚠️ - Samaano-Wide-Thin-Slanted.ttf - - -
    - -
    -
    - - - -

    Outline Checks

    - - ⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️ - -

    - Are there any misaligned on-curve points? + Validates that all of the instance records in a given font have the same size.

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/outline_alignment_miss>
    +
    Check ID: <FontBakeryCheck:com.adobe.fonts/check/varfont/same_size_instance_records>
    @@ -12954,184 +1736,98 @@

    + + + + +

    + Validates that all of the instance records in a given font have distinct data. +

    +
    Check ID: <FontBakeryCheck:com.adobe.fonts/check/varfont/distinct_instance_records>
    - - - - - - - - - - -
    - - ⚠️ - Samaano-Bold.ttf - - -
    - -
    -
    - - - - - -
    - - ⚠️ - Samaano-Wide-Bold.ttf - - -
    - -
    -
    +
    + +
    + +
    - ⚠️ - Samaano-Bold-Slanted.ttf + 🔥 + Samaano-Italic[wdth,wght].ttf
    @@ -13139,36 +1835,14 @@

  • - ⚠️ WARN + 🔥 FAIL -

    The following glyphs have on-curve points which have potentially incorrect y coordinates:

    -
    * N (U+004E): X=444.0,Y=2.0 (should be at baseline 0?)
    -
    -* Ntilde (U+00D1): X=405.0,Y=2.0 (should be at baseline 0?)
    -
    -* Nacute (U+0143): X=444.0,Y=2.0 (should be at baseline 0?)
    -
    -* uni0145 (U+0145): X=444.0,Y=2.0 (should be at baseline 0?)
    -
    -* Ncaron (U+0147): X=444.0,Y=2.0 (should be at baseline 0?)
    -
    -* Eng (U+014A): X=395.0,Y=1550.0 (should be at cap-height 1548?)
    -
    -* Eng (U+014A): X=1194.0,Y=1550.0 (should be at cap-height 1548?)
    -
    -* uni1E44 (U+1E44): X=444.0,Y=2.0 (should be at baseline 0?)
    -
    -* uni1E46 (U+1E46): X=444.0,Y=2.0 (should be at baseline 0?)
    -
    -* uni1E48 (U+1E48): X=444.0,Y=2.0 (should be at baseline 0?)
    -
    -* uni1E4D (U+1E4D): X=662.0,Y=1550.0 (should be at cap-height 1548?)
    -
    +

    STAT table has no Axis Value tables.

    - [code: found-misalignments] + [code: no-axis-value-tables]
  • @@ -13180,74 +1854,87 @@

    + +

    -
    - - ⚠️ - Samaano-Wide-Bold-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - + Checking OS/2 achVendID against configuration. +

    +
    Check ID: <FontBakeryCheck:com.thetypefounders/check/vendor_id>
    + + + +
    + + + + + +
    - -

    The following glyphs have on-curve points which have potentially incorrect y coordinates:

    -
    * N (U+004E): X=1913.0,Y=2.0 (should be at baseline 0?)
     
    -* N (U+004E): X=1711.0,Y=2.0 (should be at baseline 0?)
    +    
     
    -* v (U+0076): X=1129.0,Y=1.0 (should be at baseline 0?)
    +    
     
    -* v (U+0076): X=922.0,Y=1.0 (should be at baseline 0?)
     
    -* Ntilde (U+00D1): X=1913.0,Y=2.0 (should be at baseline 0?)
    +    

    + + Check hhea.caretSlopeRise and hhea.caretSlopeRun +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/caret_slope>
    -* Ntilde (U+00D1): X=1711.0,Y=2.0 (should be at baseline 0?) -* Nacute (U+0143): X=1913.0,Y=2.0 (should be at baseline 0?) -* Nacute (U+0143): X=1711.0,Y=2.0 (should be at baseline 0?) +
    -* uni0145 (U+0145): X=1913.0,Y=2.0 (should be at baseline 0?) + -* uni0145 (U+0145): X=1711.0,Y=2.0 (should be at baseline 0?) + -* Ncaron (U+0147): X=1913.0,Y=2.0 (should be at baseline 0?) +
    -* Ncaron (U+0147): X=1711.0,Y=2.0 (should be at baseline 0?) -* Eng (U+014A): X=675.0,Y=1547.0 (should be at cap-height 1548?) + -* Eng (U+014A): X=876.0,Y=1547.0 (should be at cap-height 1548?) + -* uni1E44 (U+1E44): X=1913.0,Y=2.0 (should be at baseline 0?) -* uni1E44 (U+1E44): X=1711.0,Y=2.0 (should be at baseline 0?) +

    + + Ensure VFs have 'ital' STAT axis. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/italic_axis_in_stat>
    -* uni1E46 (U+1E46): X=1913.0,Y=2.0 (should be at baseline 0?) -* uni1E46 (U+1E46): X=1711.0,Y=2.0 (should be at baseline 0?) -* uni1E48 (U+1E48): X=1913.0,Y=2.0 (should be at baseline 0?) +
    -* uni1E48 (U+1E48): X=1711.0,Y=2.0 (should be at baseline 0?) + -* uni094A_uni0930_uni094D.abvs: X=2505.0,Y=1549.0 (should be at cap-height 1548?) +
    -* uni094A_uni0930_uni094D.abvs: X=2703.0,Y=1549.0 (should be at cap-height 1548?) -* uni095C_uni0930_uni094D.vatu: X=282.0,Y=1.0 (should be at baseline 0?) + +
    + + 🔥 + + Family Check + + +
    +
      + +
    • + + 🔥 FAIL + -* uni095C_uni0930_uni094D.vatu: X=548.0,Y=1.0 (should be at baseline 0?) -
    + +

    Font Samaano-Italic[wdth,wght].ttf is missing an 'ital' axis.

    - [code: found-misalignments] + [code: missing-ital-axis]
    @@ -13257,14 +1944,12 @@

    - -

    - Are any segments inordinately short? + Ensure 'ital' STAT axis is boolean value

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/outline_short_segments>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/italic_axis_in_stat_is_boolean>
    @@ -13274,43 +1959,51 @@

    - + - - +

    + Ensure 'ital' STAT axis is last. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/italic_axis_last>
    - - +
    - +
    - - + + + + + +

    Universal Profile Checks

    + + ⚠️⚠️⚠️⚠️⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩ℹ️ℹ️ +

    - Do any segments have colinear vectors? + Check accent of Lcaron, dcaron, lcaron, tcaron

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/outline_colinear_vectors>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/alt_caron>
    @@ -13320,18 +2013,6 @@

    - - - - - - - - - - - - @@ -13339,7 +2020,7 @@

    ⚠️ - Samaano-Bold.ttf + Samaano-Italic[wdth,wght].ttf
    @@ -13351,35 +2032,65 @@

    -

    The following glyphs have colinear vectors:

    -
    * B (U+0042): L<<947.0,1215.0>--<947.0,1215.0>> -> L<<947.0,1215.0>--<948.0,1215.0>>
    -
    -* uni092F (U+092F): L<<688.0,223.0>--<140.0,467.0>> -> L<<140.0,467.0>--<127.0,472.0>>
    -
    -* uni092F_uni0930_uni094D.vatu: L<<574.0,273.0>--<140.0,467.0>> -> L<<140.0,467.0>--<127.0,472.0>>
    -
    -* uni092F_uni094D.half: L<<991.0,199.0>--<390.0,467.0>> -> L<<390.0,467.0>--<377.0,472.0>>
    -
    -* uni092F_uni094D.haln: L<<688.0,223.0>--<140.0,467.0>> -> L<<140.0,467.0>--<127.0,472.0>>
    -
    -* uni0943 (U+0943): L<<-211.0,-611.0>--<-254.0,-495.0>> -> L<<-254.0,-495.0>--<-269.0,-455.0>>
    -
    -* uni0943 (U+0943): L<<-269.0,-455.0>--<-338.0,-269.0>> -> L<<-338.0,-269.0>--<-389.0,-133.0>>
    -
    -* uni095F (U+095F): L<<688.0,223.0>--<140.0,467.0>> -> L<<140.0,467.0>--<127.0,472.0>>
    -
    -* uni095F_uni0930_uni094D.vatu: L<<574.0,273.0>--<140.0,467.0>> -> L<<140.0,467.0>--<127.0,472.0>>
    -
    -* uni095F_uni094D.half: L<<688.0,223.0>--<140.0,467.0>> -> L<<140.0,467.0>--<127.0,472.0>>
    -
    -* uni095F_uni094D.haln: L<<688.0,223.0>--<140.0,467.0>> -> L<<140.0,467.0>--<127.0,472.0>>
    -
    -* uni097A (U+097A): L<<688.0,223.0>--<140.0,467.0>> -> L<<140.0,467.0>--<127.0,472.0>>
    -
    +

    dcaron is decomposed and therefore could not be checked. Please check manually.

    + + + [code: decomposed-outline] + +
    + + +
  • + + ⚠️ WARN + + + +

    Lcaron is decomposed and therefore could not be checked. Please check manually.

    + + + [code: decomposed-outline] + +
    +
  • + +
  • + + ⚠️ WARN + + + +

    lcaron is decomposed and therefore could not be checked. Please check manually.

    + + + [code: decomposed-outline] + +
    +
  • + +
  • + + ⚠️ WARN + + + +

    tcaron is decomposed and therefore could not be checked. Please check manually.

    + + + [code: decomposed-outline] + +
    +
  • + +
  • + + ✅ PASS + + + +

    Looks good!

    - [code: found-colinear-vectors] -
  • @@ -13392,7 +2103,7 @@

    ⚠️ - Samaano-Thin.ttf + Samaano[wdth,wght].ttf
    @@ -13404,86 +2115,65 @@

    -

    The following glyphs have colinear vectors:

    -
    * a (U+0061): L<<168.0,1024.0>--<817.0,1023.0>> -> L<<817.0,1023.0>--<856.0,1023.0>>
    -
    -* aacute (U+00E1): L<<168.0,1024.0>--<817.0,1023.0>> -> L<<817.0,1023.0>--<856.0,1023.0>>
    -
    -* abreve (U+0103): L<<168.0,1024.0>--<817.0,1023.0>> -> L<<817.0,1023.0>--<856.0,1023.0>>
    -
    -* acircumflex (U+00E2): L<<168.0,1024.0>--<817.0,1023.0>> -> L<<817.0,1023.0>--<856.0,1023.0>>
    -
    -* adieresis (U+00E4): L<<168.0,1024.0>--<817.0,1023.0>> -> L<<817.0,1023.0>--<856.0,1023.0>>
    -
    -* agrave (U+00E0): L<<168.0,1024.0>--<817.0,1023.0>> -> L<<817.0,1023.0>--<856.0,1023.0>>
    -
    -* amacron (U+0101): L<<168.0,1024.0>--<817.0,1023.0>> -> L<<817.0,1023.0>--<856.0,1023.0>>
    -
    -* aogonek (U+0105): L<<168.0,1024.0>--<817.0,1023.0>> -> L<<817.0,1023.0>--<856.0,1023.0>>
    -
    -* aring (U+00E5): L<<168.0,1024.0>--<817.0,1023.0>> -> L<<817.0,1023.0>--<856.0,1023.0>>
    -
    -* atilde (U+00E3): L<<168.0,1024.0>--<817.0,1023.0>> -> L<<817.0,1023.0>--<856.0,1023.0>>
    -
    -* uni0944 (U+0944): L<<-210.0,-942.0>--<-220.0,-945.0>> -> L<<-220.0,-945.0>--<-228.0,-947.0>>
    -
    -* uni094F (U+094F): L<<134.0,2066.0>--<143.0,2105.0>> -> L<<143.0,2105.0>--<187.0,2323.0>>
    -
    -* uni094F (U+094F): L<<722.0,1934.0>--<162.0,2060.0>> -> L<<162.0,2060.0>--<135.0,2064.0>>
    -
    -* uni0975 (U+0975): L<<439.0,2080.0>--<433.0,2083.0>> -> L<<433.0,2083.0>--<428.0,2086.0>>
    -
    +

    dcaron is decomposed and therefore could not be checked. Please check manually.

    - [code: found-colinear-vectors] + [code: decomposed-outline]
    - -

    -
    - - - -
    - - ⚠️ - Samaano-Wide-Bold.ttf - - -
    -
      -
    • ⚠️ WARN -

      The following glyphs have colinear vectors:

      -
      * uni0921 (U+0921): L<<1581.0,746.0>--<1581.0,703.0>> -> L<<1581.0,703.0>--<1582.0,5.0>>
      -
      -* uni0921_uni0930_uni094D.vatu: L<<1581.0,837.0>--<1581.0,794.0>> -> L<<1581.0,794.0>--<1582.0,164.0>>
      -
      -* uni0921_uni094D.haln: L<<1581.0,746.0>--<1581.0,703.0>> -> L<<1581.0,703.0>--<1582.0,5.0>>
      +                            

      Lcaron is decomposed and therefore could not be checked. Please check manually.

      -* uni0943 (U+0943): L<<-612.0,-611.0>--<-655.0,-495.0>> -> L<<-655.0,-495.0>--<-670.0,-455.0>> + + [code: decomposed-outline] + + +
    • + +
    • + + ⚠️ WARN + -* uni0943 (U+0943): L<<-670.0,-455.0>--<-739.0,-269.0>> -> L<<-739.0,-269.0>--<-790.0,-133.0>> + +

      lcaron is decomposed and therefore could not be checked. Please check manually.

      -* uni0943 (U+0943): L<<-790.0,-132.0>--<-730.0,-122.0>> -> L<<-730.0,-122.0>--<-8.0,9.0>> + + [code: decomposed-outline] + +
      +
    • + +
    • + + ⚠️ WARN + -* uni095C (U+095C): L<<1581.0,746.0>--<1581.0,703.0>> -> L<<1581.0,703.0>--<1582.0,5.0>> + +

      tcaron is decomposed and therefore could not be checked. Please check manually.

      -* uni095C_uni0930_uni094D.vatu: L<<1581.0,837.0>--<1581.0,794.0>> -> L<<1581.0,794.0>--<1582.0,164.0>> + + [code: decomposed-outline] + +
      +
    • + +
    • + + ✅ PASS + -* uni095C_uni094D.haln: L<<1581.0,746.0>--<1581.0,703.0>> -> L<<1581.0,703.0>--<1582.0,5.0>> - + +

      Looks good!

      - [code: found-colinear-vectors] -
    • @@ -13492,258 +2182,236 @@

    + +

    -
    - - ⚠️ - Samaano-Wide-Thin.ttf - - -
    -
      - -
    • - - ⚠️ WARN - + Check that glyph for U+0675 ARABIC LETTER HIGH HAMZA is not a mark. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/arabic_high_hamza>
    - -

    The following glyphs have colinear vectors:

    -
    * uni092C (U+092C): L<<136.0,964.0>--<136.0,964.0>> -> L<<136.0,964.0>--<136.0,964.0>>
     
    -* uni092C_uni0930_uni094D.vatu: L<<136.0,1264.0>--<136.0,1264.0>> -> L<<136.0,1264.0>--<136.0,1264.0>>
     
    -* uni092C_uni094D.half: L<<386.0,964.0>--<386.0,964.0>> -> L<<386.0,964.0>--<386.0,964.0>>
    +
    -* uni092C_uni094D.haln: L<<136.0,964.0>--<136.0,964.0>> -> L<<136.0,964.0>--<136.0,964.0>> + -* uni0930_uni0942.blws: L<<1376.0,1026.0>--<1436.0,1026.0>> -> L<<1436.0,1026.0>--<1436.0,1026.0>> + -* uni0930_uni0942.blws: L<<1436.0,1026.0>--<1436.0,1026.0>> -> L<<1436.0,1026.0>--<1836.0,1026.0>> +
    -* uni094F (U+094F): L<<1376.0,1934.0>--<816.0,2060.0>> -> L<<816.0,2060.0>--<789.0,2064.0>> -* uni094F (U+094F): L<<788.0,2066.0>--<797.0,2105.0>> -> L<<797.0,2105.0>--<841.0,2323.0>> -
    + - - [code: found-colinear-vectors] - -
    - - - -
    -
    + +

    + Check that Arabic spacing symbols U+FBB2–FBC1 aren't classified as marks. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/arabic_spacing_symbols>
    + + + +
    -
    - - ⚠️ - Samaano-Wide-Bold-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - -

      The following glyphs have colinear vectors:

      -
      * G (U+0047): L<<1995.0,202.0>--<1964.0,118.0>> -> L<<1964.0,118.0>--<1928.0,18.0>>
      +
    + + + + + + + +

    + + Ensure the font supports case swapping for all its glyphs. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/case_mapping>
    -* Gbreve (U+011E): L<<1995.0,202.0>--<1964.0,118.0>> -> L<<1964.0,118.0>--<1928.0,18.0>> -* Gcircumflex (U+011C): L<<1995.0,202.0>--<1964.0,118.0>> -> L<<1964.0,118.0>--<1928.0,18.0>> -* Gdotaccent (U+0120): L<<1995.0,202.0>--<1964.0,118.0>> -> L<<1964.0,118.0>--<1928.0,18.0>> +
    + + + + + +
    + -* S (U+0053): L<<512.0,1028.0>--<661.0,1438.0>> -> L<<661.0,1438.0>--<697.0,1537.0>> + -* Sacute (U+015A): L<<512.0,1028.0>--<661.0,1438.0>> -> L<<661.0,1438.0>--<697.0,1537.0>> + -* Scaron (U+0160): L<<512.0,1028.0>--<661.0,1438.0>> -> L<<661.0,1438.0>--<697.0,1537.0>> -* Scedilla (U+015E): L<<512.0,1028.0>--<661.0,1438.0>> -> L<<661.0,1438.0>--<697.0,1537.0>> +

    + + Does the font contain chws and vchw features? +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/cjk_chws_feature>
    -* Scircumflex (U+015C): L<<512.0,1028.0>--<661.0,1438.0>> -> L<<661.0,1438.0>--<697.0,1537.0>> -* Z (U+005A): L<<185.0,211.0>--<185.0,211.0>> -> L<<185.0,211.0>--<185.0,211.0>> -* Zacute (U+0179): L<<185.0,211.0>--<185.0,211.0>> -> L<<185.0,211.0>--<185.0,211.0>> +
    -* Zcaron (U+017D): L<<185.0,211.0>--<185.0,211.0>> -> L<<185.0,211.0>--<185.0,211.0>> + -* Zdotaccent (U+017B): L<<185.0,211.0>--<185.0,211.0>> -> L<<185.0,211.0>--<185.0,211.0>> + -* ampersand (U+0026): L<<1842.0,1446.0>--<1653.0,926.0>> -> L<<1653.0,926.0>--<1623.0,843.0>> +
    -* cedilla (U+00B8): L<<1250.0,5.0>--<1127.0,-333.0>> -> L<<1127.0,-333.0>--<1100.0,-406.0>> -* nine (U+0039): L<<333.0,759.0>--<616.0,1537.0>> -> L<<616.0,1537.0>--<623.0,1554.0>> + -* six (U+0036): L<<41.0,0.0>--<114.0,201.0>> -> L<<114.0,201.0>--<604.0,1548.0>> + -* uni0122 (U+0122): L<<1995.0,202.0>--<1964.0,118.0>> -> L<<1964.0,118.0>--<1928.0,18.0>> -* uni01C4 (U+01C4): L<<973.0,211.0>--<973.0,211.0>> -> L<<973.0,211.0>--<973.0,211.0>> +

    + + Check if each glyph has the recommended amount of contours. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/contour_count>
    -* uni0218 (U+0218): L<<886.0,1028.0>--<1185.0,1439.0>> -> L<<1185.0,1439.0>--<1257.0,1537.0>> -* uni0907 (U+0907): L<<1703.0,1205.0>--<1694.0,1181.0>> -> L<<1694.0,1181.0>--<1668.0,1110.0>> -* uni0907 (U+0907): L<<419.0,681.0>--<473.0,831.0>> -> L<<473.0,831.0>--<536.0,1004.0>> +
    -* uni0907 (U+0907): L<<536.0,1004.0>--<593.0,1160.0>> -> L<<593.0,1160.0>--<601.0,1181.0>> + -* uni0908 (U+0908): L<<419.0,681.0>--<473.0,831.0>> -> L<<473.0,831.0>--<536.0,1004.0>> + -* uni0908 (U+0908): L<<536.0,1004.0>--<593.0,1160.0>> -> L<<593.0,1160.0>--<601.0,1181.0>> +
    -* uni090C (U+090C): L<<265.0,590.0>--<309.0,713.0>> -> L<<309.0,713.0>--<333.0,777.0>> -* uni090D (U+090D): L<<1254.0,358.0>--<1242.0,325.0>> -> L<<1242.0,325.0>--<1232.0,297.0>> + -* uni090E (U+090E): L<<2647.0,1858.0>--<2614.0,1765.0>> -> L<<2614.0,1765.0>--<2578.0,1667.0>> + -* uni0915_uni094D_uni0937.akhn: L<<2337.0,1078.0>--<2299.0,972.0>> -> L<<2299.0,972.0>--<1945.0,0.0>> -* uni0919 (U+0919): L<<114.0,0.0>--<161.0,130.0>> -> L<<161.0,130.0>--<268.0,423.0>> +

    + + Checking all files are in the same directory. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/family/single_directory>
    -* uni0919 (U+0919): L<<453.0,620.0>--<499.0,747.0>> -> L<<499.0,747.0>--<621.0,1083.0>> -* uni0919_uni0930_uni094D.vatu: L<<226.0,308.0>--<275.0,443.0>> -> L<<275.0,443.0>--<296.0,501.0>> -* uni0919_uni0930_uni094D.vatu: L<<529.0,829.0>--<598.0,1020.0>> -> L<<598.0,1020.0>--<599.0,1023.0>> +
    -* uni0919_uni094D.half: L<<153.0,108.0>--<202.0,243.0>> -> L<<202.0,243.0>--<224.0,301.0>> + -* uni0919_uni094D.haln: L<<114.0,0.0>--<209.0,130.0>> -> L<<209.0,130.0>--<422.0,423.0>> +
    -* uni091B (U+091B): L<<1816.0,808.0>--<1560.0,104.0>> -> L<<1560.0,104.0>--<1522.0,0.0>> -* uni091B_uni0930_uni094D.vatu: L<<1851.0,905.0>--<1639.0,321.0>> -> L<<1639.0,321.0>--<1620.0,270.0>> + -* uni091B_uni094D.haln: L<<2110.0,808.0>--<1610.0,121.0>> -> L<<1610.0,121.0>--<1522.0,0.0>> -* uni091E (U+091E): L<<1293.0,460.0>--<1258.0,364.0>> -> L<<1258.0,364.0>--<1241.0,316.0>> +

    + + Each font in a family must have the same set of vertical metrics values. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/family/vertical_metrics>
    -* uni091E_uni094D.half: L<<1553.0,460.0>--<1518.0,364.0>> -> L<<1518.0,364.0>--<1501.0,316.0>> -* uni091F_uni0930_uni094D.vatu: L<<196.0,305.0>--<236.0,414.0>> -> L<<236.0,414.0>--<267.0,501.0>> -* uni0921 (U+0921): L<<616.0,638.0>--<635.0,690.0>> -> L<<635.0,690.0>--<656.0,746.0>> +
    -* uni0921_uni0930_uni094D.vatu: L<<1886.0,837.0>--<1870.0,794.0>> -> L<<1870.0,794.0>--<1642.0,164.0>> + -* uni0922_uni0930_uni094D.vatu: L<<210.0,305.0>--<254.0,425.0>> -> L<<254.0,425.0>--<281.0,501.0>> +
    -* uni0925 (U+0925): L<<316.0,810.0>--<339.0,873.0>> -> L<<339.0,873.0>--<365.0,946.0>> -* uni0925_uni0930_uni094D.vatu: L<<316.0,810.0>--<338.0,870.0>> -> L<<338.0,870.0>--<365.0,946.0>> + -* uni0925_uni094D.half: L<<316.0,810.0>--<339.0,873.0>> -> L<<339.0,873.0>--<365.0,946.0>> -* uni0925_uni094D.haln: L<<611.0,810.0>--<656.0,873.0>> -> L<<656.0,873.0>--<710.0,946.0>> +

    + + Checking OS/2 usWinAscent & usWinDescent. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/family/win_ascent_and_descent>
    -* uni092A_uni094D.haln: L<<710.0,825.0>--<725.0,846.0>> -> L<<725.0,846.0>--<1091.0,1349.0>> -* uni092B_uni094D.haln: L<<709.0,824.0>--<784.0,927.0>> -> L<<784.0,927.0>--<1091.0,1349.0>> -* uni0932_uni094D.haln: L<<462.0,582.0>--<514.0,654.0>> -> L<<514.0,654.0>--<550.0,703.0>> +
    -* uni0933_uni094D.haln: L<<462.0,582.0>--<514.0,654.0>> -> L<<514.0,654.0>--<550.0,703.0>> + -* uni0934_uni094D.haln: L<<467.0,582.0>--<519.0,654.0>> -> L<<519.0,654.0>--<555.0,703.0>> + -* uni0936_uni094D.haln: L<<941.0,1224.0>--<1118.0,1467.0>> -> L<<1118.0,1467.0>--<1177.0,1548.0>> +
    -* uni0937 (U+0937): L<<2273.0,981.0>--<2273.0,981.0>> -> L<<2273.0,981.0>--<2273.0,981.0>> -* uni0937 (U+0937): L<<394.0,824.0>--<455.0,992.0>> -> L<<455.0,992.0>--<585.0,1350.0>> + -* uni0937_uni0930_uni094D.vatu: L<<2273.0,981.0>--<2273.0,981.0>> -> L<<2273.0,981.0>--<2273.0,981.0>> + -* uni0937_uni0930_uni094D.vatu: L<<394.0,824.0>--<455.0,992.0>> -> L<<455.0,992.0>--<585.0,1350.0>> -* uni0937_uni094D.half: L<<594.0,824.0>--<655.0,992.0>> -> L<<655.0,992.0>--<785.0,1350.0>> +

    + + Do we have the latest version of FontBakery installed? +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/fontbakery_version>
    -* uni0937_uni094D.haln: L<<2630.0,981.0>--<2630.0,981.0>> -> L<<2630.0,981.0>--<2630.0,981.0>> -* uni0937_uni094D.haln: L<<694.0,824.0>--<816.0,992.0>> -> L<<816.0,992.0>--<1077.0,1350.0>> -* uni0938 (U+0938): L<<419.0,729.0>--<450.0,814.0>> -> L<<450.0,814.0>--<466.0,858.0>> +
    -* uni0938_uni0930_uni094D.vatu: L<<423.0,729.0>--<454.0,814.0>> -> L<<454.0,814.0>--<470.0,858.0>> + -* uni0938_uni094D.half: L<<619.0,729.0>--<650.0,814.0>> -> L<<650.0,814.0>--<666.0,858.0>> + -* uni0938_uni094D.haln: L<<685.0,729.0>--<764.0,838.0>> -> L<<764.0,838.0>--<779.0,858.0>> +
    -* uni0939 (U+0939): L<<1689.0,789.0>--<1656.0,698.0>> -> L<<1656.0,698.0>--<1636.0,643.0>> -* uni0939_uni0930_uni094D.vatu: L<<1989.0,789.0>--<1946.0,671.0>> -> L<<1946.0,671.0>--<1936.0,643.0>> + -* uni0940_uni0930_uni094D.abvs: L<<2763.0,1869.0>--<2764.0,1870.0>> -> L<<2764.0,1870.0>--<2765.0,1871.0>> + -* uni0943 (U+0943): L<<-834.0,-611.0>--<-835.0,-495.0>> -> L<<-835.0,-495.0>--<-836.0,-455.0>> -* uni0943 (U+0943): L<<-836.0,-455.0>--<-837.0,-270.0>> -> L<<-837.0,-270.0>--<-838.0,-133.0>> +

    + + Ensure that the font can be rasterized by FreeType. +

    +
    Check ID: <FontBakeryCheck:com.adobe.fonts/check/freetype_rasterizer>
    -* uni0943 (U+0943): L<<-838.0,-132.0>--<-775.0,-122.0>> -> L<<-775.0,-122.0>--<-5.0,9.0>> -* uni0945_uni0930_uni094D.abvs: L<<1888.0,1869.0>--<1889.0,1870.0>> -> L<<1889.0,1870.0>--<1890.0,1871.0>> -* uni0946 (U+0946): L<<874.0,1858.0>--<870.0,1846.0>> -> L<<870.0,1846.0>--<840.0,1763.0>> +
    -* uni0946_uni0902.abvs: L<<1551.0,1858.0>--<1521.0,1817.0>> -> L<<1521.0,1817.0>--<1481.0,1763.0>> + -* uni0946_uni0930_uni094D.abvs: L<<1551.0,1858.0>--<1521.0,1817.0>> -> L<<1521.0,1817.0>--<1481.0,1763.0>> + -* uni0946_uni0930_uni094D.abvs: L<<1809.0,1861.0>--<1810.0,1862.0>> -> L<<1810.0,1862.0>--<1811.0,1863.0>> +
    -* uni0947_uni0930_uni094D.abvs: L<<1785.0,1861.0>--<1786.0,1862.0>> -> L<<1786.0,1862.0>--<1787.0,1863.0>> -* uni0949_uni0930_uni094D.abvs: L<<3315.0,1875.0>--<3316.0,1876.0>> -> L<<3316.0,1876.0>--<3317.0,1877.0>> + -* uni094B_uni0930_uni094D.abvs: L<<2511.0,1880.0>--<2512.0,1881.0>> -> L<<2512.0,1881.0>--<2513.0,1882.0>> + -* uni094F (U+094F): L<<1109.0,1866.0>--<1048.0,1697.0>> -> L<<1048.0,1697.0>--<996.0,1555.0>> -* uni095C (U+095C): L<<616.0,638.0>--<635.0,690.0>> -> L<<635.0,690.0>--<656.0,746.0>> +

    + + Ensure no GPOS7 lookups are present. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/gpos7>
    -* uni095C_uni0930_uni094D.vatu: L<<1886.0,837.0>--<1870.0,794.0>> -> L<<1870.0,794.0>--<1642.0,164.0>> -* uni095D_uni0930_uni094D.vatu: L<<210.0,305.0>--<254.0,425.0>> -> L<<254.0,425.0>--<281.0,501.0>> -* uni095E_uni094D.haln: L<<724.0,824.0>--<799.0,927.0>> -> L<<799.0,927.0>--<1106.0,1349.0>> +
    -* uni0961 (U+0961): L<<257.0,590.0>--<301.0,713.0>> -> L<<301.0,713.0>--<325.0,777.0>> + -* uni096A (U+096A): L<<193.0,95.0>--<201.0,118.0>> -> L<<201.0,118.0>--<242.0,230.0>> + -* uni096A (U+096A): L<<2056.0,317.0>--<1984.0,118.0>> -> L<<1984.0,118.0>--<1951.0,28.0>> +
    -* uni1E62 (U+1E62): L<<886.0,1028.0>--<1185.0,1439.0>> -> L<<1185.0,1439.0>--<1257.0,1537.0>> -
    - - [code: found-colinear-vectors] - - - - - -
    - @@ -13751,9 +2419,11 @@

    - Do outlines contain any jaggy segments? +
    EXPERIMENTAL CHECK - Since 2024/Jun/10
    + + Ensure 'smcp' (small caps) lookups are defined before ligature lookups in the 'GSUB' table.

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/outline_jaggy_segments>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/gsub/smallcaps_before_ligatures>
    @@ -13763,13 +2433,23 @@

    - + + + +

    + Detect any interpolation issues in the font. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/interpolation_issues>
    + + + +
    @@ -13779,12 +2459,10 @@

    - -
    ⚠️ - Samaano-Thin.ttf + Samaano-Italic[wdth,wght].ttf
    @@ -13796,113 +2474,106 @@

    -

    The following glyphs have jaggy segments:

    -
    * uni0913 (U+0913): L<<846.0,1550.0>--<842.0,1549.0>>/L<<842.0,1549.0>--<1024.0,1549.0>> = 14.036243467926484
    +                            

    Interpolation issues were found in the font:

    +
    - Contour order differs in glyph 'uni0946_uni0930_uni094D.abvs': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [4, 1, 5, 3, 6, 2, 0] in wght=700,wdth=200.
     
    -* uni093D (U+093D): L<<455.0,104.0>--<457.0,127.0>>/L<<457.0,127.0>--<454.0,107.0>> = 3.561024881837821
    +- Contour 0 start point differs in glyph 'uni0946_uni0930_uni094D.abvs' between location wght=700,wdth=100 and location wght=700,wdth=200
     
    -* uni0944 (U+0944): L<<-220.0,-945.0>--<-228.0,-947.0>>/L<<-228.0,-947.0>--<-228.0,-947.0>> = 14.036243467926484
    +- Contour 0 in glyph 'uni0946_uni0930_uni094D.abvs': becomes underweight between wght=700,wdth=100 and wght=700,wdth=200.
     
    -* uni0968 (U+0968): L<<221.0,486.0>--<239.0,488.0>>/L<<239.0,488.0>--<224.0,488.0>> = 6.340191745909908
    -
    +- Contour 5 start point differs in glyph 'uni0946_uni0930_uni094D.abvs' between location wght=700,wdth=100 and location wght=700,wdth=200 - - [code: found-jaggy-segments] - - - - - -

    -
    - +- Contour 6 start point differs in glyph 'uni0946_uni0930_uni094D.abvs' between location wght=700,wdth=100 and location wght=700,wdth=200 - -
    - - ⚠️ - Samaano-Wide-Bold.ttf - - -
    -
      - -
    • - - ⚠️ WARN - +- Contour 6 in glyph 'uni0946_uni0930_uni094D.abvs': becomes underweight between wght=700,wdth=100 and wght=700,wdth=200. - -

      The following glyphs have jaggy segments:

      -
      * uni0916_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1587.0,370.0>> = 13.552189259088937
      +- Contour order differs in glyph 'igrave': [0, 1, 2, 3] in wght=700,wdth=100, [0, 1, 3, 2] in wght=700,wdth=200.
      +
      +- Contour order differs in glyph 'uni094C_uni0902.abvs': [0, 1, 2, 3, 4] in wght=700,wdth=100, [0, 1, 3, 4, 2] in wght=700,wdth=200.
      +
      +- Contour 4 start point differs in glyph 'uni094C_uni0902.abvs' between location wght=700,wdth=100 and location wght=700,wdth=200
      +
      +- Contour order differs in glyph 'uni094C_uni0902.abvs': [0, 1, 2, 3, 4] in wght=700,wdth=200, [0, 1, 2, 4, 3] in wght=100,wdth=100.
      +
      +- Contour order differs in glyph 'uni094C_uni0902.abvs': [0, 1, 2, 3, 4] in wght=100,wdth=100, [0, 1, 3, 4, 2] in wght=100,wdth=200.
      +
      +- Contour order differs in glyph 'egrave': [0, 1, 2, 3, 4, 5] in wght=700,wdth=100, [5, 1, 2, 3, 0, 4] in wght=700,wdth=200.
      +
      +- Contour order differs in glyph 'uni0947_uni0902.abvs': [0, 1, 2] in wght=700,wdth=100, [0, 2, 1] in wght=700,wdth=200.
      +
      +- Contour 2 start point differs in glyph 'uni0947_uni0902.abvs' between location wght=700,wdth=100 and location wght=700,wdth=200
       
      -* uni0916_uni0930_uni094D.vatu: L<<52.0,0.0>--<1587.0,370.0>>/L<<1587.0,370.0>--<317.0,370.0>> = 13.552189259088937
      +- Contour order differs in glyph 'uni0945_uni0930_uni094D.abvs': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [4, 2, 5, 3, 6, 0, 1] in wght=700,wdth=200.
       
      -* uni0917_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1717.0,401.0>> = 13.541277371563512
      +- Contour 0 start point differs in glyph 'uni0945_uni0930_uni094D.abvs' between location wght=700,wdth=100 and location wght=700,wdth=200
       
      -* uni0918_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1726.0,403.0>> = 13.535856369134248
      +- Contour 0 in glyph 'uni0945_uni0930_uni094D.abvs': becomes underweight between wght=700,wdth=100 and wght=700,wdth=200.
       
      -* uni091A_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1662.0,388.0>> = 13.549559916764828
      +- Contour 1 start point differs in glyph 'uni0945_uni0930_uni094D.abvs' between location wght=700,wdth=100 and location wght=700,wdth=200
       
      -* uni091C_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1719.0,402.0>> = 13.558114398357505
      +- Contour 1 in glyph 'uni0945_uni0930_uni094D.abvs': becomes underweight between wght=700,wdth=100 and wght=700,wdth=200.
       
      -* uni091E_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1756.0,411.0>> = 13.560573371057753
      +- Contour 5 start point differs in glyph 'uni0945_uni0930_uni094D.abvs' between location wght=700,wdth=100 and location wght=700,wdth=200
       
      -* uni0923_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1740.0,407.0>> = 13.556055413364934
      +- Contour 5 in glyph 'uni0945_uni0930_uni094D.abvs': becomes underweight between wght=700,wdth=100 and wght=700,wdth=200.
       
      -* uni0924_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1402.0,325.0>> = 13.535856369134248
      +- Contour order differs in glyph 'lacute': [0, 1, 2, 3] in wght=700,wdth=100, [0, 1, 3, 2] in wght=700,wdth=200.
       
      -* uni0925_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1429.0,332.0>> = 13.555519612214798
      +- Contour order differs in glyph 'uni0949_uni0902.abvs': [0, 1, 2, 3, 4, 5] in wght=700,wdth=100, [0, 1, 5, 3, 4, 2] in wght=700,wdth=200.
       
      -* uni0925_uni0930_uni094D.vatu: L<<52.0,0.0>--<1429.0,332.0>>/L<<1429.0,332.0>--<21.0,332.0>> = 13.555519612214798
      +- Contour order differs in glyph 'uni0946_uni0902.abvs': [0, 1, 2, 3, 4] in wght=700,wdth=100, [0, 3, 2, 4, 1] in wght=700,wdth=200.
       
      -* uni0927_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1405.0,326.0>> = 13.546974566830361
      +- Contour order differs in glyph 'uni0946_uni0902.abvs': [0, 1, 2, 3, 4] in wght=700,wdth=200, [0, 1, 2, 4, 3] in wght=100,wdth=100.
       
      -* uni0927_uni0930_uni094D.vatu: L<<52.0,0.0>--<1405.0,326.0>>/L<<1405.0,326.0>--<90.0,326.0>> = 13.546974566830361
      +- Contour order differs in glyph 'uni0946_uni0902.abvs': [0, 1, 2, 3, 4] in wght=100,wdth=100, [0, 1, 2, 4, 3] in wght=100,wdth=200.
       
      -* uni0928_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1730.0,404.0>> = 13.53705172462755
      +- Contour order differs in glyph 'imacron': [0, 1, 2, 3] in wght=100,wdth=100, [0, 1, 3, 2] in wght=100,wdth=200.
       
      -* uni0929_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1727.0,404.0>> = 13.56040263584047
      +- Contour order differs in glyph 'icircumflex': [0, 1, 2, 3, 4] in wght=100,wdth=100, [0, 1, 4, 2, 3] in wght=100,wdth=200.
       
      -* uni092A_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1723.0,403.0>> = 13.559261261373097
      +- Contour 3 start point differs in glyph 'icircumflex' between location wght=100,wdth=100 and location wght=100,wdth=200
       
      -* uni092C_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1684.0,393.0>> = 13.539543474860553
      +- Contour 3 in glyph 'icircumflex': becomes underweight between wght=100,wdth=100 and wght=100,wdth=200.
       
      -* uni092D_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1752.0,410.0>> = 13.559451870534032
      +- Contour order differs in glyph 'Dcaron': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [0, 1, 2, 5, 4, 6, 3] in wght=700,wdth=200.
       
      -* uni092E_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1770.0,414.0>> = 13.548698506267515
      +- Contour 3 start point differs in glyph 'Dcaron' between location wght=700,wdth=100 and location wght=700,wdth=200
       
      -* uni092F_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1209.0,279.0>> = 13.557524842313844
      +- Contour 3 in glyph 'Dcaron': becomes underweight between wght=700,wdth=100 and wght=700,wdth=200.
       
      -* uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1778.0,416.0>> = 13.550962950816185
      +- Contour 5 start point differs in glyph 'Dcaron' between location wght=700,wdth=100 and location wght=700,wdth=200
       
      -* uni0932_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1728.0,404.0>> = 13.552610220387871
      +- Contour 5 in glyph 'Dcaron': becomes underweight between wght=700,wdth=100 and wght=700,wdth=200.
       
      -* uni0935_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1684.0,393.0>> = 13.539543474860553
      +- Contour order differs in glyph 'iacute': [0, 1, 2, 3] in wght=700,wdth=100, [0, 1, 3, 2] in wght=700,wdth=200.
       
      -* uni0936_uni0930_uni094D.vatu: L<<1797.0,658.0>--<1027.0,922.0>>/L<<1027.0,922.0>--<1197.0,861.0>> = 0.8145364198432462
      +- Contour order differs in glyph 'ibreve': [0, 1, 2, 3, 4, 5] in wght=100,wdth=100, [0, 1, 3, 4, 5, 2] in wght=100,wdth=200.
       
      -* uni0937_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1716.0,401.0>> = 13.54911523508201
      +- Contour order differs in glyph 'atilde': [0, 1, 2, 3, 4, 5, 6, 7] in wght=100,wdth=100, [7, 1, 5, 2, 4, 0, 3, 6] in wght=100,wdth=200.
       
      -* uni0948 (U+0948): L<<-22.0,1548.0>--<68.0,1548.0>>/L<<68.0,1548.0>--<-812.0,1750.0>> = 12.928027006757656
      +- Contour 6 start point differs in glyph 'atilde' between location wght=100,wdth=100 and location wght=100,wdth=200
       
      -* uni0948_uni0902.abvs: L<<-22.0,1548.0>--<68.0,1548.0>>/L<<68.0,1548.0>--<-812.0,1750.0>> = 12.928027006757656
      +- Contour order differs in glyph 'itilde': [0, 1, 2, 3, 4, 5] in wght=100,wdth=100, [0, 1, 3, 4, 2, 5] in wght=100,wdth=200.
       
      -* uni0948_uni0930_uni094D.abvs: L<<-22.0,1548.0>--<68.0,1548.0>>/L<<68.0,1548.0>--<-812.0,1750.0>> = 12.928027006757656
      +- Contour order differs in glyph 'racute': [0, 1, 2, 3] in wght=700,wdth=100, [0, 1, 3, 2] in wght=700,wdth=200.
       
      -* uni0959_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1587.0,370.0>> = 13.552189259088937
      +- Contour order differs in glyph 'idieresis': [0, 1, 2, 3, 4] in wght=100,wdth=100, [0, 1, 4, 2, 3] in wght=100,wdth=200.
       
      -* uni0959_uni0930_uni094D.vatu: L<<52.0,0.0>--<1587.0,370.0>>/L<<1587.0,370.0>--<317.0,370.0>> = 13.552189259088937
      +- Contour order differs in glyph 'uni0948_uni0902.abvs': [0, 1, 2, 3] in wght=700,wdth=100, [0, 2, 3, 1] in wght=700,wdth=200.
       
      -* uni095A_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1717.0,401.0>> = 13.541277371563512
      +- Contour 3 start point differs in glyph 'uni0948_uni0902.abvs' between location wght=700,wdth=100 and location wght=700,wdth=200
       
      -* uni095B_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1719.0,402.0>> = 13.558114398357505
      +- Contour 3 in glyph 'uni0948_uni0902.abvs': becomes underweight between wght=700,wdth=100 and wght=700,wdth=200.
       
      -* uni095F_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1209.0,279.0>> = 13.557524842313844
      +- Contour order differs in glyph 'uni1E39': [0, 1, 2, 3, 4] in wght=700,wdth=100, [0, 1, 4, 3, 2] in wght=700,wdth=200.
      +
      +- Contour order differs in glyph 'uni0945_uni0902.abvs': [0, 1, 2, 3, 4] in wght=700,wdth=100, [0, 2, 3, 4, 1] in wght=700,wdth=200.
      +
      +- Contour order differs in glyph 'uni0945_uni0902.abvs': [0, 1, 2, 3, 4] in wght=100,wdth=100, [0, 1, 2, 4, 3] in wght=100,wdth=200.
       
      - [code: found-jaggy-segments] + [code: interpolation-issues]
    • @@ -13916,7 +2587,7 @@

      ⚠️ - Samaano-Wide-Thin.ttf + Samaano[wdth,wght].ttf
      @@ -13928,194 +2599,182 @@

      -

      The following glyphs have jaggy segments:

      -
      * uni0913 (U+0913): L<<1982.0,1550.0>--<1978.0,1549.0>>/L<<1978.0,1549.0>--<2048.0,1549.0>> = 14.036243467926484
      +                            

      Interpolation issues were found in the font:

      +
      - Contour order differs in glyph 'uni0926_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7] in wght=700,wdth=100, [6, 7, 0, 1, 2, 3, 4, 5] in wght=700,wdth=200.
       
      -* uni0916_uni0930_uni094D.vatu: L<<190.0,0.0>--<1679.0,370.0>>/L<<1679.0,370.0>--<457.0,370.0>> = 13.95472881922188
      +- Contour order differs in glyph 'uni0946_uni0930_uni094D.abvs': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [3, 4, 5, 6, 0, 1, 2] in wght=700,wdth=200.
       
      -* uni0916_uni0930_uni094D.vatu: L<<447.0,0.0>--<190.0,0.0>>/L<<190.0,0.0>--<1679.0,370.0>> = 13.95472881922188
      +- Contour order differs in glyph 'igrave': [0, 1, 2, 3] in wght=100,wdth=100, [0, 1, 3, 2] in wght=100,wdth=200.
       
      -* uni0917_uni0930_uni094D.vatu: L<<453.0,0.0>--<196.0,0.0>>/L<<196.0,0.0>--<1846.0,410.0>> = 13.954509173136843
      +- Contour 3 start point differs in glyph 'igrave' between location wght=100,wdth=100 and location wght=100,wdth=200
       
      -* uni0918_uni0930_uni094D.vatu: L<<219.0,-49.0>--<1728.0,326.0>>/L<<1728.0,326.0>--<180.0,326.0>> = 13.955809576666178
      +- Contour order differs in glyph 'uni095E_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7] in wght=700,wdth=100, [6, 7, 0, 1, 2, 3, 4, 5] in wght=700,wdth=200.
       
      -* uni0918_uni0930_uni094D.vatu: L<<476.0,-49.0>--<219.0,-49.0>>/L<<219.0,-49.0>--<1728.0,326.0>> = 13.955809576666178
      +- Contour order differs in glyph 'uni092B_uni094D.haln': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [5, 6, 0, 1, 2, 3, 4] in wght=700,wdth=200.
       
      -* uni091A_uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1800.0,416.0>> = 13.955681401342739
      +- Contour order differs in glyph 'uni094C_uni0902.abvs': [0, 1, 2, 3, 4] in wght=700,wdth=100, [4, 0, 1, 2, 3] in wght=700,wdth=200.
       
      -* uni091B_uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1482.0,333.0>> = 13.797388032395103
      +- Contour order differs in glyph 'uni0922_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7, 8] in wght=700,wdth=100, [7, 8, 0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=200.
       
      -* uni091C_uni0930_uni094D.vatu: L<<448.0,0.0>--<191.0,0.0>>/L<<191.0,0.0>--<1857.0,414.0>> = 13.95529441255671
      +- Contour order differs in glyph 'uni091E_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7] in wght=700,wdth=100, [6, 7, 0, 1, 2, 3, 4, 5] in wght=700,wdth=200.
       
      -* uni091E_uni0930_uni094D.vatu: L<<505.0,0.0>--<248.0,0.0>>/L<<248.0,0.0>--<1899.0,410.0>> = 13.94638702966965
      +- Contour order differs in glyph 'uni0918_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7] in wght=700,wdth=100, [6, 7, 0, 1, 2, 3, 4, 5] in wght=700,wdth=200.
       
      -* uni0923_uni0930_uni094D.vatu: L<<481.0,0.0>--<224.0,0.0>>/L<<224.0,0.0>--<1883.0,412.0>> = 13.946820502133802
      +- Contour 0 start point differs in glyph 'Hbar' between location wght=700,wdth=100 and location wght=700,wdth=200
       
      -* uni0925_uni0930_uni094D.vatu: L<<523.0,0.0>--<266.0,0.0>>/L<<266.0,0.0>--<1923.0,412.0>> = 13.962996062429674
      +- Contour 1 start point differs in glyph 'Hbar' between location wght=700,wdth=100 and location wght=700,wdth=200
       
      -* uni0926_uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1262.0,264.0>> = 13.082990674811118
      +- Contour 2 start point differs in glyph 'Hbar' between location wght=700,wdth=100 and location wght=700,wdth=200
       
      -* uni0927_uni0930_uni094D.vatu: L<<476.0,0.0>--<219.0,0.0>>/L<<219.0,0.0>--<1880.0,413.0>> = 13.963172511989223
      +- Contour 3 start point differs in glyph 'Hbar' between location wght=700,wdth=100 and location wght=700,wdth=200
       
      -* uni0928_uni0930_uni094D.vatu: L<<470.0,0.0>--<213.0,0.0>>/L<<213.0,0.0>--<1868.0,411.0>> = 13.946604289939135
      +- Contour order differs in glyph 'uni0935_uni094D.haln': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [5, 6, 0, 1, 2, 3, 4] in wght=700,wdth=200.
       
      -* uni0929_uni0930_uni094D.vatu: L<<456.0,0.0>--<199.0,0.0>>/L<<199.0,0.0>--<1865.0,414.0>> = 13.95529441255671
      +- Contour order differs in glyph 'uni091A_uni094D.haln': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [5, 6, 0, 1, 2, 3, 4] in wght=700,wdth=200.
       
      -* uni092A_uni0930_uni094D.vatu: L<<446.0,0.0>--<189.0,0.0>>/L<<189.0,0.0>--<1851.0,413.0>> = 13.9550995206004
      +- Contour order differs in glyph 'uni095B_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7, 8] in wght=700,wdth=100, [7, 8, 0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=200.
       
      -* uni092B_uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1452.0,334.0>> = 14.137867659892134
      +- Contour order differs in glyph 'uni0925_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7, 8] in wght=700,wdth=100, [7, 8, 0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=200.
       
      -* uni092C_uni0930_uni094D.vatu: L<<406.0,0.0>--<149.0,0.0>>/L<<149.0,0.0>--<1823.0,416.0>> = 13.955681401342739
      +- Contour 0 start point differs in glyph 'hbar' between location wght=700,wdth=100 and location wght=700,wdth=200
       
      -* uni092D_uni0930_uni094D.vatu: L<<495.0,0.0>--<238.0,0.0>>/L<<238.0,0.0>--<1892.0,411.0>> = 13.954706907750937
      +- Contour 1 start point differs in glyph 'hbar' between location wght=700,wdth=100 and location wght=700,wdth=200
       
      -* uni092E_uni0930_uni094D.vatu: L<<507.0,0.0>--<250.0,0.0>>/L<<250.0,0.0>--<1910.0,413.0>> = 13.971254663228907
      +- Contour 2 start point differs in glyph 'hbar' between location wght=700,wdth=100 and location wght=700,wdth=200
       
      -* uni092F_uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1863.0,323.0>> = 10.533993557738619
      +- Contour 3 start point differs in glyph 'hbar' between location wght=700,wdth=100 and location wght=700,wdth=200
       
      -* uni0930_uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1045.0,230.0>> = 14.050912125955458
      +- Contour order differs in glyph 'uni0947_uni0902.abvs': [0, 1, 2] in wght=700,wdth=100, [2, 0, 1] in wght=700,wdth=200.
       
      -* uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1800.0,416.0>> = 13.955681401342739
      +- Contour order differs in glyph 'uni0945_uni0930_uni094D.abvs': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [3, 4, 5, 6, 0, 1, 2] in wght=700,wdth=200.
       
      -* uni0931_uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1084.0,202.0>> = 11.906741925249397
      +- Contour order differs in glyph 'uni0934_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7, 8] in wght=700,wdth=100, [6, 8, 0, 1, 2, 3, 4, 5, 7] in wght=700,wdth=200.
       
      -* uni0932_uni0930_uni094D.vatu: L<<493.0,0.0>--<236.0,0.0>>/L<<236.0,0.0>--<1868.0,404.0>> = 13.903997241115658
      +- Contour order differs in glyph 'uni0933_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7] in wght=700,wdth=100, [6, 7, 0, 1, 2, 3, 4, 5] in wght=700,wdth=200.
       
      -* uni0935_uni0930_uni094D.vatu: L<<426.0,0.0>--<169.0,0.0>>/L<<169.0,0.0>--<1824.0,411.0>> = 13.946604289939135
      +- Contour order differs in glyph 'sacute': [0, 1, 2, 3, 4, 5] in wght=100,wdth=100, [0, 5, 2, 3, 4, 1] in wght=100,wdth=200.
       
      -* uni0937_uni0930_uni094D.vatu: L<<458.0,6.0>--<201.0,6.0>>/L<<201.0,6.0>--<1851.0,416.0>> = 13.954509173136843
      +- Contour order differs in glyph 'lacute': [0, 1, 2, 3] in wght=100,wdth=100, [0, 1, 3, 2] in wght=100,wdth=200.
       
      -* uni0939_uni0930_uni094D.vatu: L<<823.0,370.0>--<566.0,370.0>>/L<<566.0,370.0>--<1542.0,615.0>> = 14.091481608935501
      +- Contour order differs in glyph 'uni095C_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10] in wght=700,wdth=100, [8, 10, 0, 1, 2, 3, 4, 5, 6, 7, 9] in wght=700,wdth=200.
       
      -* uni0944 (U+0944): L<<14.0,-841.0>--<-764.0,-947.0>>/L<<-764.0,-947.0>--<-764.0,-947.0>> = 7.758593140226185
      +- Contour order differs in glyph 'uni0948_uni0930_uni094D.abvs': [0, 1, 2, 3, 4, 5] in wght=700,wdth=100, [3, 4, 5, 0, 1, 2] in wght=700,wdth=200.
       
      -* uni0959_uni0930_uni094D.vatu: L<<190.0,0.0>--<1679.0,370.0>>/L<<1679.0,370.0>--<457.0,370.0>> = 13.95472881922188
      +- Contour order differs in glyph 'uni095D_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] in wght=700,wdth=100, [7, 9, 0, 1, 2, 3, 4, 5, 6, 8] in wght=700,wdth=200.
       
      -* uni0959_uni0930_uni094D.vatu: L<<447.0,0.0>--<190.0,0.0>>/L<<190.0,0.0>--<1679.0,370.0>> = 13.95472881922188
      +- Contour order differs in glyph 'uni0932_uni094D.haln': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [5, 6, 0, 1, 2, 3, 4] in wght=700,wdth=200.
       
      -* uni095A_uni0930_uni094D.vatu: L<<453.0,0.0>--<196.0,0.0>>/L<<196.0,0.0>--<1846.0,410.0>> = 13.954509173136843
      +- Contour order differs in glyph 'uni0924_uni094D.haln': [0, 1, 2, 3, 4, 5] in wght=700,wdth=100, [4, 5, 0, 1, 2, 3] in wght=700,wdth=200.
       
      -* uni095B_uni0930_uni094D.vatu: L<<448.0,0.0>--<191.0,0.0>>/L<<191.0,0.0>--<1857.0,414.0>> = 13.95529441255671
      +- Contour order differs in glyph 'uni092F_uni094D.haln': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [5, 6, 0, 1, 2, 3, 4] in wght=700,wdth=200.
       
      -* uni095E_uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1452.0,334.0>> = 14.137867659892134
      +- Contour order differs in glyph 'uni0938_uni094D.haln': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [5, 6, 0, 1, 2, 3, 4] in wght=700,wdth=200.
       
      -* uni095F_uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1863.0,323.0>> = 10.533993557738619
      +- Contour order differs in glyph 'uni0949_uni0902.abvs': [0, 1, 2, 3, 4, 5] in wght=700,wdth=100, [5, 0, 1, 2, 3, 4] in wght=700,wdth=200.
       
      -* uni0968 (U+0968): L<<221.0,486.0>--<239.0,488.0>>/L<<239.0,488.0>--<224.0,488.0>> = 6.340191745909908
      -
      +- Contour order differs in glyph 'uni0921_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] in wght=700,wdth=100, [8, 9, 0, 1, 2, 3, 4, 5, 6, 7] in wght=700,wdth=200. - - [code: found-jaggy-segments] - - - - -

    -
    -
    - +- Contour order differs in glyph 'uni095F_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7] in wght=700,wdth=100, [5, 7, 0, 1, 2, 3, 4, 6] in wght=700,wdth=200. - -
    - - ⚠️ - Samaano-Bold-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - +- Contour order differs in glyph 'uni0946_uni0902.abvs': [0, 1, 2, 3, 4] in wght=700,wdth=100, [4, 0, 1, 2, 3] in wght=700,wdth=200. - -

      The following glyphs have jaggy segments:

      -
      * glyph094D: L<<630.0,-22.0>--<629.0,-23.0>>/L<<629.0,-23.0>--<632.0,-21.0>> = 11.309932474020227
      +- Contour order differs in glyph 'uni0940_uni0930_uni094D.abvs': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [3, 4, 5, 6, 0, 1, 2] in wght=700,wdth=200.
       
      -* uni01C4 (U+01C4): L<<336.0,767.0>--<337.0,771.0>>/L<<337.0,771.0>--<336.0,769.0>> = 12.528807709151492
      +- Contour order differs in glyph 'uni094C_uni0930_uni094D.abvs': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [3, 4, 5, 6, 0, 1, 2] in wght=700,wdth=200.
       
      -* uni01C4 (U+01C4): L<<336.0,769.0>--<-320.0,0.0>>/L<<-320.0,0.0>--<-210.0,201.0>> = 11.775746289963823
      +- Contour order differs in glyph 'uni0931_uni094D.haln': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [4, 6, 0, 1, 2, 3, 5] in wght=700,wdth=200.
       
      -* uni01C5 (U+01C5): L<<553.0,769.0>--<-102.0,0.0>>/L<<-102.0,0.0>--<7.0,201.0>> = 11.952410103730198
      +- Contour order differs in glyph 'uni0917_uni094D.haln': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [5, 6, 0, 1, 2, 3, 4] in wght=700,wdth=200.
       
      -* uni0915_uni094D.haln: L<<370.0,-22.0>--<369.0,-23.0>>/L<<369.0,-23.0>--<372.0,-21.0>> = 11.309932474020227
      +- Contour order differs in glyph 'uni0940_uni0902.abvs': [0, 1, 2, 3, 4] in wght=700,wdth=100, [4, 0, 1, 2, 3] in wght=700,wdth=200.
       
      -* uni0915_uni094D_uni0937_uni094D: L<<1363.0,-22.0>--<1362.0,-23.0>>/L<<1362.0,-23.0>--<1365.0,-21.0>> = 11.309932474020227
      +- Contour 0 start point differs in glyph 'endash' between location wght=700,wdth=100 and location wght=700,wdth=200
       
      -* uni0916_uni094D.haln: L<<285.0,-22.0>--<284.0,-23.0>>/L<<284.0,-23.0>--<287.0,-21.0>> = 11.309932474020227
      +- Contour order differs in glyph 'uni0958_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] in wght=700,wdth=100, [7, 9, 0, 1, 2, 3, 4, 5, 6, 8] in wght=700,wdth=200.
       
      -* uni091A_uni094D.haln: L<<447.0,-22.0>--<446.0,-23.0>>/L<<446.0,-23.0>--<449.0,-21.0>> = 11.309932474020227
      +- Contour order differs in glyph 'imacron': [0, 1, 2, 3] in wght=100,wdth=100, [0, 1, 3, 2] in wght=100,wdth=200.
       
      -* uni091B_uni094D.haln: L<<98.0,-13.0>--<97.0,-14.0>>/L<<97.0,-14.0>--<100.0,-12.0>> = 11.309932474020227
      +- Contour order differs in glyph 'uogonek': [0, 1, 2, 3, 4, 5] in wght=700,wdth=100, [1, 5, 3, 4, 0, 2] in wght=700,wdth=200.
       
      -* uni091C_uni094D.haln: L<<264.0,-22.0>--<263.0,-23.0>>/L<<263.0,-23.0>--<266.0,-21.0>> = 11.309932474020227
      +- Contour order differs in glyph 'uni091D_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10] in wght=700,wdth=100, [9, 10, 0, 1, 2, 3, 4, 5, 6, 7, 8] in wght=700,wdth=200.
       
      -* uni091C_uni094D_uni091E_uni094D: L<<1294.0,-22.0>--<1293.0,-23.0>>/L<<1293.0,-23.0>--<1296.0,-21.0>> = 11.309932474020227
      +- Contour order differs in glyph 'uni092D_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] in wght=700,wdth=100, [8, 9, 0, 1, 2, 3, 4, 5, 6, 7] in wght=700,wdth=200.
       
      -* uni0926_uni094D.half: L<<359.0,-22.0>--<358.0,-23.0>>/L<<358.0,-23.0>--<361.0,-21.0>> = 11.309932474020227
      +- Contour order differs in glyph 'uni091C_uni094D_uni091E_uni094D': [0, 1, 2, 3, 4, 5, 6, 7] in wght=700,wdth=100, [6, 7, 0, 1, 2, 3, 4, 5] in wght=700,wdth=200.
       
      -* uni0926_uni094D.haln: L<<241.0,-22.0>--<240.0,-23.0>>/L<<240.0,-23.0>--<243.0,-21.0>> = 11.309932474020227
      +- Contour order differs in glyph 'uni094B_uni0930_uni094D.abvs': [0, 1, 2, 3, 4, 5] in wght=700,wdth=100, [3, 4, 5, 0, 1, 2] in wght=700,wdth=200.
       
      -* uni0929_uni094D.haln: L<<511.0,-22.0>--<510.0,-23.0>>/L<<510.0,-23.0>--<513.0,-21.0>> = 11.309932474020227
      +- Contour order differs in glyph 'uni091B_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10] in wght=700,wdth=100, [9, 10, 0, 1, 2, 3, 4, 5, 6, 7, 8] in wght=700,wdth=200.
       
      -* uni092A_uni094D.haln: L<<397.0,-22.0>--<396.0,-23.0>>/L<<396.0,-23.0>--<399.0,-21.0>> = 11.309932474020227
      +- Contour order differs in glyph 'iacute': [0, 1, 2, 3] in wght=100,wdth=100, [0, 1, 3, 2] in wght=100,wdth=200.
       
      -* uni092B_uni094D.haln: L<<485.0,-22.0>--<484.0,-23.0>>/L<<484.0,-23.0>--<487.0,-21.0>> = 11.309932474020227
      +- Contour order differs in glyph 'uni0929_uni094D.haln': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [4, 6, 0, 1, 2, 3, 5] in wght=700,wdth=200.
       
      -* uni0937_uni094D.haln: L<<396.0,-22.0>--<395.0,-23.0>>/L<<395.0,-23.0>--<398.0,-21.0>> = 11.309932474020227
      +- Contour order differs in glyph 'uni0916_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] in wght=700,wdth=100, [8, 9, 0, 1, 2, 3, 4, 5, 6, 7] in wght=700,wdth=200.
       
      -* uni0938_uni094D.haln: L<<504.0,-22.0>--<503.0,-23.0>>/L<<503.0,-23.0>--<506.0,-21.0>> = 11.309932474020227
      +- Contour order differs in glyph 'uni0930_uni094D.haln': [0, 1, 2, 3, 4, 5] in wght=700,wdth=100, [4, 5, 0, 1, 2, 3] in wght=700,wdth=200.
       
      -* uni0959_uni094D.haln: L<<286.0,-22.0>--<285.0,-23.0>>/L<<285.0,-23.0>--<288.0,-21.0>> = 11.309932474020227
      -
      +- Contour order differs in glyph 'uni0915_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7, 8] in wght=700,wdth=100, [7, 8, 0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=200. - - [code: found-jaggy-segments] - -
      -
    • - -
    -
    -
    - +- Contour order differs in glyph 'uni092E_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7] in wght=700,wdth=100, [6, 7, 0, 1, 2, 3, 4, 5] in wght=700,wdth=200. - -
    - - ⚠️ - Samaano-Thin-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - +- Contour order differs in glyph 'uni0920_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7] in wght=700,wdth=100, [6, 7, 0, 1, 2, 3, 4, 5] in wght=700,wdth=200. - -

      The following glyphs have jaggy segments:

      -
      * uni0913 (U+0913): L<<1120.0,1550.0>--<1116.0,1549.0>>/L<<1116.0,1549.0>--<1298.0,1549.0>> = 14.036243467926484
      +- Contour order differs in glyph 'uni0928_uni094D.haln': [0, 1, 2, 3, 4, 5] in wght=700,wdth=100, [4, 5, 0, 1, 2, 3] in wght=700,wdth=200.
      +
      +- Contour order differs in glyph 'Eogonek': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [0, 1, 6, 3, 4, 5, 2] in wght=700,wdth=200.
      +
      +- Contour order differs in glyph 'uni0947_uni0930_uni094D.abvs': [0, 1, 2, 3, 4] in wght=700,wdth=100, [3, 4, 0, 1, 2] in wght=700,wdth=200.
      +
      +- Contour order differs in glyph 'uni0919_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10] in wght=700,wdth=100, [9, 10, 0, 1, 2, 3, 4, 5, 6, 7, 8] in wght=700,wdth=200.
      +
      +- Contour order differs in glyph 'uni0923_uni094D.haln': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [5, 6, 0, 1, 2, 3, 4] in wght=700,wdth=200.
      +
      +- Contour order differs in glyph 'uni0959_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10] in wght=700,wdth=100, [8, 10, 0, 1, 2, 3, 4, 5, 6, 7, 9] in wght=700,wdth=200.
      +
      +- Contour order differs in glyph 'uni0949_uni0930_uni094D.abvs': [0, 1, 2, 3, 4, 5, 6, 7] in wght=700,wdth=100, [3, 4, 5, 6, 7, 0, 1, 2] in wght=700,wdth=200.
      +
      +- Contour order differs in glyph 'uni0937_uni094D.haln': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [5, 6, 0, 1, 2, 3, 4] in wght=700,wdth=200.
      +
      +- Contour order differs in glyph 'uni094B_uni0902.abvs': [0, 1, 2, 3] in wght=700,wdth=100, [3, 0, 1, 2] in wght=700,wdth=200.
      +
      +- Contour order differs in glyph 'itilde': [0, 1, 2, 3, 4, 5] in wght=100,wdth=100, [0, 1, 3, 4, 2, 5] in wght=100,wdth=200.
      +
      +- Contour order differs in glyph 'uni0915_uni094D_uni0937_uni094D': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10] in wght=700,wdth=100, [9, 10, 0, 1, 2, 3, 4, 5, 6, 7, 8] in wght=700,wdth=200.
      +
      +- Contour order differs in glyph 'uni094A_uni0902.abvs': [0, 1, 2, 3, 4, 5] in wght=700,wdth=100, [5, 0, 1, 2, 3, 4] in wght=700,wdth=200.
      +
      +- Contour order differs in glyph 'uni091F_uni094D.haln': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [5, 6, 0, 1, 2, 3, 4] in wght=700,wdth=200.
      +
      +- Contour order differs in glyph 'Uogonek': [0, 1, 2, 3, 4, 5] in wght=700,wdth=100, [0, 1, 5, 3, 4, 2] in wght=700,wdth=200.
      +
      +- Contour order differs in glyph 'Uogonek': [0, 1, 2, 3, 4, 5] in wght=700,wdth=200, [0, 1, 5, 3, 4, 2] in wght=100,wdth=100.
       
      -* uni093D (U+093D): L<<179.0,104.0>--<190.0,127.0>>/L<<190.0,127.0>--<179.0,107.0>> = 3.250828571149245
      +- Contour order differs in glyph 'uni092C_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7] in wght=700,wdth=100, [6, 7, 0, 1, 2, 3, 4, 5] in wght=700,wdth=200.
       
      -* uni0944 (U+0944): L<<-130.0,-841.0>--<-527.0,-942.0>>/L<<-527.0,-942.0>--<-527.0,-942.0>> = 14.273702414211385
      +- Contour order differs in glyph 'uni094A_uni0930_uni094D.abvs': [0, 1, 2, 3, 4, 5, 6, 7] in wght=700,wdth=100, [3, 4, 5, 6, 7, 0, 1, 2] in wght=700,wdth=200.
       
      -* uni0944 (U+0944): L<<-527.0,-942.0>--<-527.0,-942.0>>/L<<-527.0,-942.0>--<-539.0,-945.0>> = 14.036243467926484
      +- Contour order differs in glyph 'uni093E_uni0930_uni094D.abvs': [0, 1, 2, 3, 4] in wght=700,wdth=100, [3, 4, 0, 1, 2] in wght=700,wdth=200.
       
      -* uni0944 (U+0944): L<<-539.0,-945.0>--<-547.0,-947.0>>/L<<-547.0,-947.0>--<-547.0,-947.0>> = 14.036243467926484
      +- Contour order differs in glyph 'uni0948_uni0902.abvs': [0, 1, 2, 3] in wght=700,wdth=100, [3, 0, 1, 2] in wght=700,wdth=200.
       
      -* uni0944 (U+0944): L<<-547.0,-947.0>--<-547.0,-947.0>>/L<<-547.0,-947.0>--<-591.0,-958.0>> = 14.036243467926484
      +- Contour order differs in glyph 'uni092A_uni094D.haln': [0, 1, 2, 3, 4, 5] in wght=700,wdth=100, [4, 5, 0, 1, 2, 3] in wght=700,wdth=200.
       
      -* uni0968 (U+0968): L<<45.0,486.0>--<64.0,488.0>>/L<<64.0,488.0>--<48.0,488.0>> = 6.009005957494474
      +- Contour order differs in glyph 'uni0927_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7, 8] in wght=700,wdth=100, [7, 8, 0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=200.
      +
      +- Contour order differs in glyph 'uni091C_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7] in wght=700,wdth=100, [6, 7, 0, 1, 2, 3, 4, 5] in wght=700,wdth=200.
      +
      +- Contour order differs in glyph 'uni0945_uni0902.abvs': [0, 1, 2, 3, 4] in wght=700,wdth=100, [4, 0, 1, 2, 3] in wght=700,wdth=200.
      +
      +- Contour order differs in glyph 'uni0936_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7, 8] in wght=700,wdth=100, [7, 8, 0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=200.
      +
      +- Contour order differs in glyph 'uni095A_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7] in wght=700,wdth=100, [6, 7, 0, 1, 2, 3, 4, 5] in wght=700,wdth=200.
      +
      +- Contour order differs in glyph 'uni0939_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] in wght=700,wdth=100, [8, 9, 0, 1, 2, 3, 4, 5, 6, 7] in wght=700,wdth=200.
       
      - [code: found-jaggy-segments] + [code: interpolation-issues]
    • @@ -14125,228 +2784,188 @@

    + +

    -
    - - ⚠️ - Samaano-Wide-Bold-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - + Check that legacy accents aren't used in composite glyphs. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/legacy_accents>
    - -

    The following glyphs have jaggy segments:

    -
    * uni01C4 (U+01C4): L<<935.0,875.0>--<824.0,1350.0>>/L<<824.0,1350.0>--<824.0,1349.0>> = 13.153086583164342
     
    -* uni01C5 (U+01C5): L<<1008.0,767.0>--<1007.0,772.0>>/L<<1007.0,772.0>--<1007.0,769.0>> = 11.309932474020227
     
    -* uni0915_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1213.0,289.0>> = 13.978169517093123
    +
    -* uni0916_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1722.0,370.0>> = 12.49247557736108 + -* uni0916_uni0930_uni094D.vatu: L<<52.0,0.0>--<1722.0,370.0>>/L<<1722.0,370.0>--<452.0,370.0>> = 12.49247557736108 + -* uni0917_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1863.0,401.0>> = 12.485252069704043 +
    -* uni0918_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1873.0,403.0>> = 12.478825942667704 -* uni091A_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1803.0,388.0>> = 12.494156501091224 + -* uni091B_uni0930_uni094D.vatu: L<<960.0,0.0>--<536.0,0.0>>/L<<536.0,0.0>--<1399.0,215.0>> = 13.989369374610066 + -* uni091C_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1865.0,402.0>> = 12.50203554615018 -* uni091E_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1905.0,411.0>> = 12.50588808887614 +

    + + Checking Vertical Metric Linegaps. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/linegaps>
    -* uni0923_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1888.0,407.0>> = 12.499065987539916 -* uni0924_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1521.0,325.0>> = 12.475109712208948 -* uni0925_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1550.0,332.0>> = 12.496405179302853 +
    -* uni0925_uni0930_uni094D.vatu: L<<52.0,0.0>--<1550.0,332.0>>/L<<1550.0,332.0>--<142.0,332.0>> = 12.496405179302853 + -* uni0926_uni094D.half: L<<1617.0,178.0>--<1616.0,177.0>>/L<<1616.0,177.0>--<1619.0,179.0>> = 11.309932474020227 + -* uni0927_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1523.0,326.0>> = 12.495810359397797 +
    -* uni0927_uni0930_uni094D.vatu: L<<52.0,0.0>--<1523.0,326.0>>/L<<1523.0,326.0>--<209.0,326.0>> = 12.495810359397797 -* uni0928_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1877.0,404.0>> = 12.482260924684706 + -* uni0929_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1874.0,404.0>> = 12.502167804288424 + -* uni092A_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1870.0,403.0>> = 12.498771480797592 -* uni092C_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1827.0,393.0>> = 12.484368535813914 +

    + + Font contains '.notdef' as its first glyph? +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/mandatory_glyphs>
    -* uni092D_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1901.0,410.0>> = 12.502556852726771 -* uni092E_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1921.0,414.0>> = 12.489850870338772 -* uni092F_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1310.0,279.0>> = 12.504693325258396 +
    -* uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1929.0,416.0>> = 12.496482872235207 + -* uni0932_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1875.0,404.0>> = 12.495525238591755 + -* uni0935_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1827.0,393.0>> = 12.484368535813914 +
    -* uni0936_uni0930_uni094D.vatu: L<<2036.0,658.0>--<1363.0,922.0>>/L<<1363.0,922.0>--<1510.0,861.0>> = 1.1180310216747913 -* uni0937_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1862.0,401.0>> = 12.491933528971943 + -* uni0948 (U+0948): L<<541.0,1548.0>--<631.0,1548.0>>/L<<631.0,1548.0>--<-175.0,1750.0>> = 14.069691087894096 + -* uni0959_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1722.0,370.0>> = 12.49247557736108 -* uni0959_uni0930_uni094D.vatu: L<<52.0,0.0>--<1722.0,370.0>>/L<<1722.0,370.0>--<452.0,370.0>> = 12.49247557736108 +

    + + Check math signs have the same width. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/math_signs_width>
    -* uni095A_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1863.0,401.0>> = 12.485252069704043 -* uni095B_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1865.0,402.0>> = 12.50203554615018 -* uni095F_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1310.0,279.0>> = 12.504693325258396 -
    +
    - - [code: found-jaggy-segments] - - - - - -
    - -
    - - ⚠️ - Samaano-Wide-Thin-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - -

      The following glyphs have jaggy segments:

      -
      * B (U+0042): L<<1413.0,907.0>--<1407.0,890.0>>/L<<1407.0,890.0>--<1413.0,908.0>> = 1.0050860052537793
      +
    -* Dcroat (U+0110): L<<2362.0,1020.0>--<2364.0,1023.0>>/L<<2364.0,1023.0>--<2325.0,915.0>> = 13.834853156658712 -* uni01C5 (U+01C5): L<<966.0,1020.0>--<967.0,1023.0>>/L<<967.0,1023.0>--<956.0,960.0>> = 8.530765609948096 + + + + + +

    + + Name table records must not have trailing spaces. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/name/trailing_spaces>
    -* uni0913 (U+0913): L<<2546.0,1550.0>--<2542.0,1549.0>>/L<<2542.0,1549.0>--<2612.0,1549.0>> = 14.036243467926484 -* uni0916_uni0930_uni094D.vatu: L<<190.0,0.0>--<1814.0,370.0>>/L<<1814.0,370.0>--<592.0,370.0>> = 12.834760383293624 -* uni0916_uni0930_uni094D.vatu: L<<447.0,0.0>--<190.0,0.0>>/L<<190.0,0.0>--<1814.0,370.0>> = 12.834760383293624 +
    + + -* uni0917_uni0930_uni094D.vatu: L<<453.0,0.0>--<196.0,0.0>>/L<<196.0,0.0>--<1995.0,410.0>> = 12.838675460780657 + -* uni0918_uni0930_uni094D.vatu: L<<201.0,-49.0>--<1847.0,326.0>>/L<<1847.0,326.0>--<299.0,326.0>> = 12.83435285303413 +
    -* uni0918_uni0930_uni094D.vatu: L<<458.0,-49.0>--<201.0,-49.0>>/L<<201.0,-49.0>--<1847.0,326.0>> = 12.83435285303413 -* uni091A_uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1951.0,416.0>> = 12.840898455437413 + -* uni091B_uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1603.0,333.0>> = 12.705303928524263 + -* uni091C_uni0930_uni094D.vatu: L<<448.0,0.0>--<191.0,0.0>>/L<<191.0,0.0>--<2008.0,414.0>> = 12.835609486401424 -* uni091E_uni0930_uni094D.vatu: L<<505.0,0.0>--<248.0,0.0>>/L<<248.0,0.0>--<2048.0,410.0>> = 12.831779042530089 +

    + + Checking OS/2 Metrics match hhea Metrics. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/os2_metrics_match_hhea>
    -* uni0923_uni0930_uni094D.vatu: L<<481.0,0.0>--<224.0,0.0>>/L<<224.0,0.0>--<2033.0,412.0>> = 12.830273512751555 -* uni0925_uni0930_uni094D.vatu: L<<523.0,0.0>--<266.0,0.0>>/L<<266.0,0.0>--<2073.0,412.0>> = 12.844003410182452 -* uni0926_uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1358.0,264.0>> = 12.094757077012089 +
    -* uni0927_uni0930_uni094D.vatu: L<<476.0,0.0>--<219.0,0.0>>/L<<219.0,0.0>--<2030.0,413.0>> = 12.84664964895844 + -* uni0928_uni0930_uni094D.vatu: L<<470.0,0.0>--<213.0,0.0>>/L<<213.0,0.0>--<2018.0,411.0>> = 12.827587702972119 + -* uni0929_uni0930_uni094D.vatu: L<<456.0,0.0>--<199.0,0.0>>/L<<199.0,0.0>--<2016.0,414.0>> = 12.835609486401424 +
    -* uni092A_uni0930_uni094D.vatu: L<<446.0,0.0>--<189.0,0.0>>/L<<189.0,0.0>--<2001.0,413.0>> = 12.839794937341944 -* uni092B_uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1573.0,334.0>> = 12.997508619477422 + -* uni092C_uni0930_uni094D.vatu: L<<406.0,0.0>--<149.0,0.0>>/L<<149.0,0.0>--<1974.0,416.0>> = 12.840898455437413 + -* uni092D_uni0930_uni094D.vatu: L<<495.0,0.0>--<238.0,0.0>>/L<<238.0,0.0>--<2042.0,411.0>> = 12.834462913442819 -* uni092E_uni0930_uni094D.vatu: L<<507.0,0.0>--<250.0,0.0>>/L<<250.0,0.0>--<2060.0,413.0>> = 12.85351156020271 +

    + + Checking with ots-sanitize. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/ots>
    -* uni092F_uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1980.0,323.0>> = 9.882760671675692 -* uni0930_uni0930_uni094D.vatu: L<<1172.0,186.0>--<1172.0,186.0>>/L<<1172.0,186.0>--<383.0,0.0>> = 13.264802931115398 -* uni0930_uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1128.0,230.0>> = 12.927780100724538 +
    -* uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1951.0,416.0>> = 12.840898455437413 + -* uni0931_uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1158.0,202.0>> = 11.07485226585879 + -* uni0932_uni0930_uni094D.vatu: L<<493.0,0.0>--<236.0,0.0>>/L<<236.0,0.0>--<2015.0,404.0>> = 12.794521411690255 +
    -* uni0935_uni0930_uni094D.vatu: L<<426.0,0.0>--<169.0,0.0>>/L<<169.0,0.0>--<1974.0,411.0>> = 12.827587702972119 -* uni0937_uni0930_uni094D.vatu: L<<460.0,6.0>--<203.0,6.0>>/L<<203.0,6.0>--<2002.0,416.0>> = 12.838675460780657 + -* uni0939_uni0930_uni094D.vatu: L<<958.0,370.0>--<701.0,370.0>>/L<<701.0,370.0>--<1766.0,615.0>> = 12.955319281265771 + -* uni0944 (U+0944): L<<-1109.0,-947.0>--<-1109.0,-947.0>>/L<<-1109.0,-947.0>--<-1153.0,-958.0>> = 14.036243467926484 -* uni0944 (U+0944): L<<-292.0,-841.0>--<-1109.0,-947.0>>/L<<-1109.0,-947.0>--<-1109.0,-947.0>> = 7.392429216723766 +

    + + Font contains all required tables? +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/required_tables>
    -* uni0958_uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1206.0,263.0>> = 13.686197239230474 -* uni0959_uni0930_uni094D.vatu: L<<190.0,0.0>--<1814.0,370.0>>/L<<1814.0,370.0>--<592.0,370.0>> = 12.834760383293624 -* uni0959_uni0930_uni094D.vatu: L<<447.0,0.0>--<190.0,0.0>>/L<<190.0,0.0>--<1814.0,370.0>> = 12.834760383293624 +
    -* uni095A_uni0930_uni094D.vatu: L<<453.0,0.0>--<196.0,0.0>>/L<<196.0,0.0>--<1995.0,410.0>> = 12.838675460780657 + -* uni095B_uni0930_uni094D.vatu: L<<448.0,0.0>--<191.0,0.0>>/L<<191.0,0.0>--<2008.0,414.0>> = 12.835609486401424 + -* uni095E_uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1573.0,334.0>> = 12.997508619477422 +
    -* uni095F_uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1980.0,323.0>> = 9.882760671675692 -* uni0968 (U+0968): L<<398.0,486.0>--<417.0,488.0>>/L<<417.0,488.0>--<402.0,488.0>> = 6.009005957494474 -
    + - - [code: found-jaggy-segments] - - - - - -

    -

    - Do outlines contain any semi-vertical or semi-horizontal lines? + Ensure indic fonts have the Indian Rupee Sign glyph.

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/outline_semi_vertical>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/rupee>
    @@ -14356,409 +2975,199 @@

    - + + - +

    + Font has the proper sfntVersion value? +

    +
    Check ID: <FontBakeryCheck:com.adobe.fonts/check/sfnt_version>
    - - +
    -
    - - ⚠️ - Samaano-Bold.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The following glyphs have semi-vertical/semi-horizontal lines:

      -
      * questiondown (U+00BF): L<<655.0,1273.0>--<405.0,1272.0>>
       
      -* uni0930_uni0942.blws: L<<-2.0,1347.0>--<-1.0,1548.0>>
      +    
       
      -* uni0930_uni0942.blws: L<<1023.0,1348.0>--<451.0,1347.0>>
      +
    -* uni0930_uni0942.blws: L<<1024.0,1548.0>--<1023.0,1348.0>> - - - [code: found-semi-vertical] - - - - - -
    - -
    - - ⚠️ - Samaano-Thin.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The following glyphs have semi-vertical/semi-horizontal lines:

      -
      * a (U+0061): L<<168.0,1024.0>--<817.0,1023.0>>
       
      -* aacute (U+00E1): L<<168.0,1024.0>--<817.0,1023.0>>
       
      -* abreve (U+0103): L<<168.0,1024.0>--<817.0,1023.0>>
      -
      -* acircumflex (U+00E2): L<<168.0,1024.0>--<817.0,1023.0>>
      +    

      + + Does the font contain a soft hyphen? +

      +
      Check ID: <FontBakeryCheck:com.google.fonts/check/soft_hyphen>
      -* adieresis (U+00E4): L<<168.0,1024.0>--<817.0,1023.0>> -* agrave (U+00E0): L<<168.0,1024.0>--<817.0,1023.0>> -* amacron (U+0101): L<<168.0,1024.0>--<817.0,1023.0>> +
      -* aogonek (U+0105): L<<168.0,1024.0>--<817.0,1023.0>> + -* aring (U+00E5): L<<168.0,1024.0>--<817.0,1023.0>> + -* atilde (U+00E3): L<<168.0,1024.0>--<817.0,1023.0>> +
      -* exclamdown (U+00A1): L<<538.0,1035.0>--<542.0,17.0>> -
      - - [code: found-semi-vertical] - -
      -
    • - -
    -
    -
    -
    - - ⚠️ - Samaano-Wide-Bold.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - -

      The following glyphs have semi-vertical/semi-horizontal lines:

      -
      * braceright (U+007D): L<<1040.0,1548.0>--<1036.0,838.0>>
       
      -* greater (U+003E): L<<1436.0,777.0>--<1437.0,568.0>>
      +    

      + + Checking STAT table entries in static fonts. +

      +
      Check ID: <FontBakeryCheck:com.google.fonts/check/STAT_in_statics>
      -* guilsinglright (U+203A): L<<1436.0,777.0>--<1437.0,568.0>> -* questiondown (U+00BF): L<<1168.0,1273.0>--<918.0,1272.0>> -* uni0921 (U+0921): L<<1383.0,200.0>--<1382.0,538.0>> +
      -* uni0921 (U+0921): L<<1581.0,703.0>--<1582.0,5.0>> + -* uni0921_uni0930_uni094D.vatu: L<<1383.0,359.0>--<1382.0,629.0>> + -* uni0921_uni0930_uni094D.vatu: L<<1581.0,794.0>--<1582.0,164.0>> +
      -* uni0921_uni094D.haln: L<<1383.0,200.0>--<1382.0,538.0>> -* uni0921_uni094D.haln: L<<1581.0,703.0>--<1582.0,5.0>> + -* uni095C (U+095C): L<<1383.0,200.0>--<1382.0,538.0>> + -* uni095C (U+095C): L<<1581.0,703.0>--<1582.0,5.0>> -* uni095C_uni0930_uni094D.vatu: L<<1383.0,359.0>--<1382.0,629.0>> +

      + + Check correctness of STAT table strings +

      +
      Check ID: <FontBakeryCheck:com.google.fonts/check/STAT_strings>
      -* uni095C_uni0930_uni094D.vatu: L<<1581.0,794.0>--<1582.0,164.0>> -* uni095C_uni094D.haln: L<<1383.0,200.0>--<1382.0,538.0>> -* uni095C_uni094D.haln: L<<1581.0,703.0>--<1582.0,5.0>> -
      +
      - - [code: found-semi-vertical] - - -
    • - -
    -
    -
    -
    - - ⚠️ - Samaano-Wide-Thin.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The following glyphs have semi-vertical/semi-horizontal lines:

      -
      * braceright (U+007D): L<<1040.0,1544.0>--<1039.0,838.0>>
       
      -* eight (U+0038): L<<1993.0,-3.0>--<56.0,0.0>>
      +
    -* exclamdown (U+00A1): L<<1050.0,1035.0>--<1054.0,17.0>> - - - [code: found-semi-vertical] - - - - - - -
    -
    - - ⚠️ - Samaano-Bold-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The following glyphs have semi-vertical/semi-horizontal lines:

      -
      * questiondown (U+00BF): L<<930.0,1273.0>--<680.0,1272.0>>
       
      -* uni091C_uni094D_uni091E_uni094D: L<<-114.0,367.0>--<-112.0,75.0>>
       
      -* uni0930_uni0942.blws: L<<1113.0,1348.0>--<541.0,1347.0>>
      -
      -* uni093D (U+093D): L<<626.0,1079.0>--<624.0,269.0>>
      -
      -* uni0943 (U+0943): L<<-289.0,-250.0>--<-288.0,-385.0>>
      +    

      + +
      EXPERIMENTAL CHECK - Since 2024/Jun/04
      + + Check tabular widths don't have kerning. +

      +
      Check ID: <FontBakeryCheck:com.google.fonts/check/tabular_kerning>
      -* uni0943 (U+0943): L<<-500.0,-611.0>--<-501.0,-495.0>> -* uni0943 (U+0943): L<<-503.0,-270.0>--<-504.0,-133.0>> -* uni0943 (U+0943): L<<-70.0,9.0>--<-69.0,-178.0>> -
      +
      - - [code: found-semi-vertical] - - -
    • - -
    -
    -
    -
    - - ⚠️ - Samaano-Thin-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - -

      The following glyphs have semi-vertical/semi-horizontal lines:

      -
      * a (U+0061): L<<353.0,1024.0>--<1001.0,1023.0>>
      +
    + -* aacute (U+00E1): L<<353.0,1024.0>--<1001.0,1023.0>> + -* abreve (U+0103): L<<353.0,1024.0>--<1001.0,1023.0>> + -* acircumflex (U+00E2): L<<353.0,1024.0>--<1001.0,1023.0>> -* adieresis (U+00E4): L<<353.0,1024.0>--<1001.0,1023.0>> +

    + + Ensure component transforms do not perform scaling or rotation. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/transformed_components>
    -* agrave (U+00E0): L<<353.0,1024.0>--<1001.0,1023.0>> -* amacron (U+0101): L<<353.0,1024.0>--<1001.0,1023.0>> -* aogonek (U+0105): L<<353.0,1024.0>--<1001.0,1023.0>> +
    -* aring (U+00E5): L<<353.0,1024.0>--<1001.0,1023.0>> + -* atilde (U+00E3): L<<353.0,1024.0>--<1001.0,1023.0>> + -* backslash (U+005C): L<<466.0,0.0>--<475.0,1550.0>> +
    -* trademark (U+2122): L<<699.0,905.0>--<700.0,1123.0>> -* uni0938_uni094D.haln: L<<-182.0,659.0>--<-186.0,0.0>> + -* uni0943 (U+0943): L<<-431.0,-169.0>--<-428.0,-566.0>> + -* uni0943 (U+0943): L<<-501.0,-590.0>--<-504.0,-132.0>> -* uni0947_uni0902.abvs: L<<126.0,1553.0>--<127.0,1724.0>> +

    + + Checking with fontTools.ttx +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/ttx_roundtrip>
    -* uni0947_uni0902.abvs: L<<127.0,1738.0>--<128.0,1962.0>> -* uni0947_uni0930_uni094D.abvs: L<<105.0,1553.0>--<107.0,1962.0>> -* uni1E42 (U+1E42): L<<663.0,1033.0>--<665.0,1470.0>> -
    +
    - - [code: found-semi-vertical] - - - - - -
    -
    -
    - - ⚠️ - Samaano-Wide-Bold-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      The following glyphs have semi-vertical/semi-horizontal lines:

      -
      * questiondown (U+00BF): L<<1631.0,1273.0>--<1381.0,1272.0>>
       
      -* uni093D (U+093D): L<<1451.0,1079.0>--<1449.0,269.0>>
      -
      -* uni0943 (U+0943): L<<-5.0,9.0>--<-4.0,-178.0>>
      +
    -* uni0943 (U+0943): L<<-637.0,-286.0>--<-636.0,-418.0>> -* uni0943 (U+0943): L<<-834.0,-611.0>--<-835.0,-495.0>> + -* uni0943 (U+0943): L<<-836.0,-455.0>--<-837.0,-270.0>> + -* uni0943 (U+0943): L<<-837.0,-270.0>--<-838.0,-133.0>> - - - [code: found-semi-vertical] - - - - - - -
    +

    - +
    EXPERIMENTAL CHECK - Since 2024/Jul/17
    -
    - - ⚠️ - Samaano-Wide-Thin-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - + Checking that the typoAscender exceeds the yMax of the /Agrave. +

    +
    Check ID: <FontBakeryCheck:com.arrowtype.fonts/check/typoascender_exceeds_Agrave>
    - -

    The following glyphs have semi-vertical/semi-horizontal lines:

    -
    * backslash (U+005C): L<<1263.0,0.0>--<1271.0,1550.0>>
     
    -* backslash (U+005C): L<<1354.0,1550.0>--<1341.0,0.0>>
     
    -* eight (U+0038): L<<1992.0,-3.0>--<56.0,0.0>>
    +
    + + -* grave (U+0060): L<<1407.0,1057.0>--<1406.0,1286.0>> + -* uni0938_uni094D.haln: L<<701.0,659.0>--<697.0,0.0>> +
    -* uni0943 (U+0943): L<<-1061.0,-178.0>--<-1058.0,-577.0>> -* uni0943 (U+0943): L<<-1131.0,-591.0>--<-1134.0,-132.0>> -
    + - - [code: found-semi-vertical] - -
    - - - - -

    - Check the direction of the outermost contour in each glyph + Font contains unique glyph names?

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/outline_direction>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/unique_glyphnames>
    @@ -14768,13 +3177,23 @@

    - + + + +

    + Check font contains no unreachable glyphs +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/unreachable_glyphs>
    + + + +
    @@ -14787,32 +3206,34 @@

    - +

    + Are there unwanted tables? +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/unwanted_tables>
    - + + +
    +
    + + + - - - -

    Font File Checks

    - - 🔥🔥🔥🔥🔥🔥🔥⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ -

    - Are there unwanted Apple tables? + Glyph names are all valid?

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/aat>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/valid_glyphnames>
    @@ -14822,13 +3243,23 @@

    - +

    + + +

    + Font has **proper** whitespace glyph names? +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/whitespace_glyphnames>
    + + + +
    @@ -14841,14 +3272,24 @@

    - +

    + Font contains glyphs for whitespace characters? +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/whitespace_glyphs>
    + + + +
    +
    + + @@ -14856,9 +3297,9 @@

    - Checking file is named canonically. + Whitespace glyphs have ink?

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/canonical_filename>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/whitespace_ink>
    @@ -14868,146 +3309,66 @@

    - +

    - - +

    + Space and non-breaking space have the same width? +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/whitespace_widths>
    - - +
    -
    - - 🔥 - Samaano-Wide-Bold.ttf - - -
    -
      - -
    • - - 🔥 FAIL - - -

      Expected "SamaanoWide-Bold-Regular.ttf. Got Samaano-Wide-Bold.ttf.

      +
    + - - [code: bad-filename] - - - - - -
    - -
    - - 🔥 - Samaano-Wide-Thin.ttf - - -
    -
      - -
    • - - 🔥 FAIL - - -

      Expected "SamaanoWide-Thin-Regular.ttf. Got Samaano-Wide-Thin.ttf.

      - - [code: bad-filename] - -
      -
    • - -
    -
    -
    - + + + +

    Article Checks

    + + ⚠️⚠️ + +

    -
    - - 🔥 - Samaano-Bold-Slanted.ttf - - -
    -
      - -
    • - - 🔥 FAIL - + Validate size, and resolution of article images, and ensure article page has minimum length and includes visual assets. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/article/images>
    - -

    Expected "SamaanoBold-Slanted-Regular.ttf. Got Samaano-Bold-Slanted.ttf.

    - - [code: bad-filename] - -
    - - - - - + +
    + -
    - - 🔥 - Samaano-Thin-Slanted.ttf - - -
    -
      - -
    • - - 🔥 FAIL - - -

      Expected "SamaanoThin-Slanted-Regular.ttf. Got Samaano-Thin-Slanted.ttf.

      +
    - - [code: bad-filename] - - - - - -
    - -
    - 🔥 - Samaano-Wide-Bold-Slanted.ttf + ⚠️ + Samaano-Italic[wdth,wght].ttf
    @@ -15015,14 +3376,14 @@

  • - 🔥 FAIL + ⚠️ WARN -

    Expected "SamaanoWide-Bold-Slanted-Regular.ttf. Got Samaano-Wide-Bold-Slanted.ttf.

    +

    Family metadata at fonts/variable does not have an article.

    - [code: bad-filename] + [code: lacks-article]
  • @@ -15035,8 +3396,8 @@

    - 🔥 - Samaano-Wide-Thin-Slanted.ttf + ⚠️ + Samaano[wdth,wght].ttf
    @@ -15044,14 +3405,14 @@

  • - 🔥 FAIL + ⚠️ WARN -

    Expected "SamaanoWide-Thin-Slanted-Regular.ttf. Got Samaano-Wide-Thin-Slanted.ttf.

    +

    Family metadata at fonts/variable does not have an article.

    - [code: bad-filename] + [code: lacks-article]
  • @@ -15062,57 +3423,19 @@

    -

    - - Does the font contain less than 150 CJK characters? -

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/cjk_not_enough_glyphs>
    - - - -
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - + + + +

    Metadata Checks

    + + ⚠️⚠️⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩ +

    - Check font follows the Google Fonts CJK vertical metric schema + Does METADATA.pb copyright field contain broken links?

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/cjk_vertical_metrics>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/broken_links>
    @@ -15122,32 +3445,30 @@

    - +

    - - +

    - -

    + METADATA.pb: Font styles are named canonically? + +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/canonical_style_names>
    - - +
    - +
    - @@ -15156,9 +3477,9 @@

    - Check if the vertical metrics of a CJK family are similar to the same family hosted on Google Fonts. + METADATA.pb: Check that font weight has a canonical value.

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/cjk_vertical_metrics_regressions>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/canonical_weight_value>
    @@ -15168,32 +3489,30 @@

    - + - - +

    - - + Check samples can be rendered. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/can_render_samples>
    - - +
    - +
    - @@ -15202,9 +3521,9 @@

    - Color layers should have a minimum brightness + Ensure METADATA.pb category field is valid.

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/color_cpal_brightness>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/category>
    @@ -15214,32 +3533,30 @@

    - + - - +

    - - + Check if category on METADATA.pb matches what can be inferred from the family name. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/category_hints>
    - - +
    - +
    - @@ -15248,9 +3565,9 @@

    - Check font has the expected color font tables. + Validate VF axes match the ones declared on METADATA.pb.

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/colorfont_tables>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/consistent_axis_enumeration>
    @@ -15260,32 +3577,30 @@

    - + - - +

    - - + METADATA.pb: Check URL on copyright string is the same as in repository_url field. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/consistent_repo_urls>
    - - +
    - +
    - @@ -15294,9 +3609,9 @@

    - Put an empty glyph on GID 1 right after the .notdef glyph for COLRv0 fonts. + METADATA.pb: Copyright notice is the same in all fonts?

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/empty_glyph_on_gid1_for_colrv0>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/copyright>
    @@ -15306,32 +3621,32 @@

    - + - - +

    - - +
    EXPERIMENTAL CHECK - Since 2024/May/22
    + + Validate 'date_added' field on METADATA.pb. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/date_added>
    - - +
    - +
    - @@ -15340,9 +3655,9 @@

    - EPAR table present in font? + METADATA.pb: Designers are listed correctly on the Google Fonts catalog?

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/epar>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/designer_profiles>
    @@ -15352,32 +3667,30 @@

    - + - - +

    - - + Multiple values in font designer field in METADATA.pb must be separated by commas. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/designer_values>
    - - +
    - +
    - @@ -15386,9 +3699,9 @@

    - Ensure files are not too large. + At least one designer is declared in METADATA.pb

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/file_size>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/empty_designer>
    @@ -15398,32 +3711,30 @@

    - + - - +

    - - + Ensure METADATA.pb does not use escaped strings. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/escaped_strings>
    - - +
    - +
    - @@ -15432,9 +3743,9 @@

    - Copyright notices match canonical pattern in fonts + Check font family directory name.

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/font_copyright>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/family_directory_name>
    @@ -15444,32 +3755,30 @@

    - + - - +

    - - + Check that METADATA.pb family values are all the same. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/familyname>
    - - +
    - +
    - @@ -15478,9 +3787,9 @@

    - Familyname must be unique according to namecheck.fontdata.com + METADATA.pb: Font filenames match font.filename entries?

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/fontdata_namecheck>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/filenames>
    @@ -15490,32 +3799,30 @@

    - + - - +

    - - + Validate METADATA.pb axes values are within gf_axisregistry bounds. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/gf_axisregistry_bounds>
    - - +
    - +
    - @@ -15524,9 +3831,9 @@

    - Check font names are correct + Validate METADATA.pb axes tags are defined in gf_axisregistry.

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/font_names>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/gf_axisregistry_valid_tags>
    @@ -15536,32 +3843,30 @@

    - + - - +

    - - + Ensure there is a regular style defined in METADATA.pb. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/has_regular>
    - - +
    - +
    - @@ -15570,9 +3875,9 @@

    - Checking OS/2 fsType does not impose restrictions. + Check METADATA.pb includes production subsets.

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/fstype>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/includes_production_subsets>
    @@ -15582,32 +3887,30 @@

    - + - - +

    - - + Check METADATA.pb file only contains a single CJK subset. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/single_cjk_subset>
    - - +
    - +
    - @@ -15616,9 +3919,9 @@

    - Check variable font instances + METADATA.pb license is "APACHE2", "UFL" or "OFL"?

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/fvar_instances>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/license>
    @@ -15628,32 +3931,30 @@

    - + - - +

    - - + METADATA.pb font.filename and font.post_script_name fields have equivalent values? +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/match_filename_postscript>
    - - +
    - +
    - @@ -15662,9 +3963,9 @@

    - All name entries referenced by fvar instances exist on the name table? + METADATA.pb font.full_name and font.post_script_name fields have equivalent values ?

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/fvar_name_entries>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/match_fullname_postscript>
    @@ -15674,32 +3975,30 @@

    - + - - +

    - - + METADATA.pb: Check font name is the same as family name. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/match_name_familyname>
    - - +
    - +
    - @@ -15708,9 +4007,9 @@

    - Is the Grid-fitting and Scan-conversion Procedure ('gasp') table set to optimize rendering? + METADATA.pb weight matches postScriptName for static fonts.

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/gasp>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/match_weight_postscript>
    @@ -15720,32 +4019,30 @@

    - + - - +

    - - + METADATA.pb should contain at least "menu" and "latin" subsets. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/menu_and_latin>
    - - +
    - +
    - @@ -15754,9 +4051,9 @@

    - Validate defaults on fvar table match registered fallback names in GFAxisRegistry. + METADATA.pb: Validate family.minisite_url field.

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/gf_axisregistry/fvar_axis_defaults>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/minisite_url>
    @@ -15766,32 +4063,30 @@

    - + - - +

    - - + METADATA.pb font.name and font.full_name fields match the values declared on the name table? +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/nameid/family_and_full_names>
    - - +
    - +
    - @@ -15800,9 +4095,9 @@

    - Check glyphs do not have components which are themselves components. + METADATA.pb font.name value should be same as the family name declared on the name table.

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/glyf_nested_components>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/nameid/font_name>
    @@ -15812,32 +4107,30 @@

    - + - - +

    - - + Checks METADATA.pb font.post_script_name matches postscript name declared on the name table. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/nameid/post_script_name>
    - - +
    - +
    - @@ -15846,9 +4139,9 @@

    - Check Google Fonts glyph coverage. + Check METADATA.pb font weights are correct.

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/glyph_coverage>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/os2_weightclass>
    @@ -15858,32 +4151,30 @@

    - + - - +

    - - + Check METADATA.pb parse correctly. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/parses>
    - - +
    - +
    - @@ -15892,9 +4183,9 @@

    - Font has ttfautohint params? + METADATA.pb: Check for primary_script

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/has_ttfautohint_params>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/primary_script>
    @@ -15904,32 +4195,30 @@

    - + - - +

    - - + METADATA.pb: Regular should be 400. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/regular_is_400>
    - - +
    - +
    - @@ -15938,9 +4227,9 @@

    - Show hinting filesize impact. + Copyright notice on METADATA.pb should not contain 'Reserved Font Name'.

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/hinting_impact>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/reserved_font_name>
    @@ -15950,32 +4239,30 @@

    - + - - +

    - - + METADATA.pb subsets should be alphabetically ordered. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/subsets_order>
    - - +
    - +
    - @@ -15984,9 +4271,9 @@

    - PPEM must be an integer on hinted fonts. + Ensure METADATA.pb lists all font binaries.

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/integer_ppem_if_hinted>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/undeclared_fonts>
    @@ -15996,32 +4283,30 @@

    - + - - +

    - - + METADATA.pb: check if fonts field only has unique "full_name" values. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/unique_full_name_values>
    - - +
    - +
    - @@ -16030,9 +4315,9 @@

    - Is there kerning info for non-ligated sequences? + METADATA.pb: check if fonts field only contains unique style:weight pairs.

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/kerning_for_non_ligated_sequences>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/unique_weight_style_pairs>
    @@ -16042,43 +4327,145 @@

    - + - - +

    + Check for codepoints not covered by METADATA subsets. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/unreachable_subsetting>
    - - +
    - +
    + +
    + + ⚠️ + Samaano-Italic[wdth,wght].ttf + + +
    +
      + +
    • + + ⚠️ WARN + + + +

      The following codepoints supported by the font are not covered by +any subsets defined in the font's metadata file, and will never +be served. You can solve this by either manually adding additional +subset declarations to METADATA.pb, or by editing the glyphset +definitions.

      +
        +
      • U+02D8 BREVE: try adding one of: canadian-aboriginal, yi
      • +
      • U+02D9 DOT ABOVE: try adding one of: canadian-aboriginal, yi
      • +
      • U+02DB OGONEK: try adding one of: canadian-aboriginal, yi
      • +
      • U+0302 COMBINING CIRCUMFLEX ACCENT: try adding one of: math, coptic, cherokee, tifinagh
      • +
      • U+0305 COMBINING OVERLINE: try adding one of: elbasan, math, glagolitic, gothic, coptic
      • +
      • U+0306 COMBINING BREVE: try adding one of: old-permic, tifinagh
      • +
      • U+0307 COMBINING DOT ABOVE: try adding one of: canadian-aboriginal, duployan, tifinagh, hebrew, math, coptic, malayalam, old-permic, syriac, todhri, tai-le
      • +
      • U+030A COMBINING RING ABOVE: try adding one of: syriac, duployan
      • +
      • U+030B COMBINING DOUBLE ACUTE ACCENT: try adding one of: osage, cherokee
      • +
      • U+030C COMBINING CARON: try adding one of: cherokee, tai-le
      • +
      • U+0326 COMBINING COMMA BELOW: try adding math
      • +
      • U+0327 COMBINING CEDILLA: try adding math
      • +
      • U+0328 COMBINING OGONEK: not included in any glyphset definition
      • +
      • U+0331 COMBINING MACRON BELOW: try adding one of: caucasian-albanian, thai, gothic, sunuwar, syriac, cherokee, tifinagh
      • +
      • U+2021 DOUBLE DAGGER: try adding adlam
      • +
      • U+2030 PER MILLE SIGN: try adding adlam
      • +
      • U+FB01 LATIN SMALL LIGATURE FI: not included in any glyphset definition
      • +
      • U+FB02 LATIN SMALL LIGATURE FL: not included in any glyphset definition
      • +
      +

      Or you can add the above codepoints to one of the subsets supported by the font: devanagari, latin, latin-ext

      + + [code: unreachable-subsetting] + +
      +
    • + +
    +
    +
    +
    + + ⚠️ + Samaano[wdth,wght].ttf + + +
    +
      + +
    • + + ⚠️ WARN + + + +

      The following codepoints supported by the font are not covered by +any subsets defined in the font's metadata file, and will never +be served. You can solve this by either manually adding additional +subset declarations to METADATA.pb, or by editing the glyphset +definitions.

      +
        +
      • U+02D8 BREVE: try adding one of: canadian-aboriginal, yi
      • +
      • U+02D9 DOT ABOVE: try adding one of: canadian-aboriginal, yi
      • +
      • U+02DB OGONEK: try adding one of: canadian-aboriginal, yi
      • +
      • U+0302 COMBINING CIRCUMFLEX ACCENT: try adding one of: math, coptic, cherokee, tifinagh
      • +
      • U+0305 COMBINING OVERLINE: try adding one of: elbasan, math, glagolitic, gothic, coptic
      • +
      • U+0306 COMBINING BREVE: try adding one of: old-permic, tifinagh
      • +
      • U+0307 COMBINING DOT ABOVE: try adding one of: canadian-aboriginal, duployan, tifinagh, hebrew, math, coptic, malayalam, old-permic, syriac, todhri, tai-le
      • +
      • U+030A COMBINING RING ABOVE: try adding one of: syriac, duployan
      • +
      • U+030B COMBINING DOUBLE ACUTE ACCENT: try adding one of: osage, cherokee
      • +
      • U+030C COMBINING CARON: try adding one of: cherokee, tai-le
      • +
      • U+0326 COMBINING COMMA BELOW: try adding math
      • +
      • U+0327 COMBINING CEDILLA: try adding math
      • +
      • U+0328 COMBINING OGONEK: not included in any glyphset definition
      • +
      • U+0331 COMBINING MACRON BELOW: try adding one of: caucasian-albanian, thai, gothic, sunuwar, syriac, cherokee, tifinagh
      • +
      • U+2021 DOUBLE DAGGER: try adding adlam
      • +
      • U+2030 PER MILLE SIGN: try adding adlam
      • +
      • U+FB01 LATIN SMALL LIGATURE FI: not included in any glyphset definition
      • +
      • U+FB02 LATIN SMALL LIGATURE FL: not included in any glyphset definition
      • +
      +

      Or you can add the above codepoints to one of the subsets supported by the font: devanagari, latin, latin-ext

      + + [code: unreachable-subsetting] + +
      +
    • + +
    +
    +

    - Are there caret positions declared for every ligature? + Check for METADATA subsets with zero support.

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/ligature_carets>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/unsupported_subsets>
    @@ -16088,32 +4475,30 @@

    - + - - +

    - - + METADATA.pb font.filename field contains font name in right format? +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/valid_filename_values>
    - - +
    - +
    - @@ -16122,9 +4507,9 @@

    - Ensure variable fonts include an avar table. + METADATA.pb font.full_name field contains font name in right format?

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/mandatory_avar_table>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/valid_full_name_values>
    @@ -16134,32 +4519,30 @@

    - + - - +

    - - + Check name ID 25 to end with "Italic" for Italic VFs. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/valid_nameid25>
    - - +
    - +
    - @@ -16168,9 +4551,9 @@

    - Ensure fonts have ScriptLangTags declared on the 'meta' table. + METADATA.pb font.post_script_name field contains font name in right format?

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/meta/script_lang_tags>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/metadata/valid_post_script_name_values>
    @@ -16180,13 +4563,31 @@

    - + + + + + + +

    Glyphset Checks

    + + 🔥🔥 + + +

    + Shapes languages in all GF glyphsets. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/glyphsets/shape_languages>
    + + + +
    @@ -16198,8 +4599,8 @@

    - ⚠️ - Samaano-Bold.ttf + 🔥 + Samaano-Italic[wdth,wght].ttf
    @@ -16207,14 +4608,28 @@

  • - ⚠️ WARN + 🔥 FAIL -

    This font file does not have a 'meta' table.

    +

    GF_Latin_Core glyphset:

    + + + + + + + + + + + + + +
    LanguageFAIL messages
    nl_Latn (Dutch)Shaper didn't attach acutecomb to j
    - [code: lacks-meta-table] + [code: failed-language-shaping]
  • @@ -16227,8 +4642,8 @@

    - ⚠️ - Samaano-Thin.ttf + 🔥 + Samaano[wdth,wght].ttf
    @@ -16236,14 +4651,28 @@

  • - ⚠️ WARN + 🔥 FAIL -

    This font file does not have a 'meta' table.

    +

    GF_Latin_Core glyphset:

    + + + + + + + + + + + + + +
    LanguageFAIL messages
    nl_Latn (Dutch)Shaper didn't attach acutecomb to j
    - [code: lacks-meta-table] + [code: failed-language-shaping]
  • @@ -16253,69 +4682,133 @@

    + + + + + + + + + + + + +

    Shaping Checks

    + + ⚠️⚠️⏩⏩⏩⏩⏩⏩ + + +

    -
    - - ⚠️ - Samaano-Wide-Bold.ttf - - -
    -
      - -
    • - - ⚠️ WARN - + Check that texts shape as per expectation +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/shaping/regression>
    - -

    This font file does not have a 'meta' table.

    - - [code: lacks-meta-table] - -
    - - - -
    -
    + +
    + -
    - - ⚠️ - Samaano-Wide-Thin.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - -

      This font file does not have a 'meta' table.

      +
    + + + + + + + +

    + + Check that no forbidden glyphs are found while shaping +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/shaping/forbidden>
    + + + +
    + + + + + +
    + + + + + + + +

    + + Check that no collisions are found while shaping +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/shaping/collides>
    + + + +
    + + + + + +
    + + + + + + + +

    + + Ensure dotted circle glyph is present and can attach marks. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/dotted_circle>
    + + + +
    + + + + + +
    + + + + + + + +

    + + Ensure soft_dotted characters lose their dot when combined with marks that replace the dot. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/soft_dotted>
    + + + +
    + + - - [code: lacks-meta-table] - - - - - -
    -
    +
    + +
    ⚠️ - Samaano-Bold-Slanted.ttf + Samaano-Italic[wdth,wght].ttf
    @@ -16327,10 +4820,13 @@

    -

    This font file does not have a 'meta' table.

    +

    The dot of soft dotted characters used in orthographies must disappear in the following strings: i̊ i̋ j̀ j́ j̃ j̄ j̈ į̀ į́ į̂ į̃ į̄ į̌

    +

    The dot of soft dotted characters should disappear in other cases, for example: i̅ i̇ ỉ ǐ ị̅ ị̇ ị̉ ị̊ ị̋ ị̌ i̦̅ i̦̇ ỉ̦ i̦̊ i̦̋ ǐ̦ i̧̅ i̧̇ ỉ̧ i̧̊

    +

    Your font fully covers the following languages that require the soft-dotted feature: Lithuanian (Latn, 2,357,094 speakers).

    +

    Your font does not cover the following languages that require the soft-dotted feature: Kpelle, Guinea (Latn, 622,000 speakers), Mundani (Latn, 34,000 speakers), Nzakara (Latn, 50,000 speakers), Sar (Latn, 500,000 speakers), Ejagham (Latn, 120,000 speakers), Mfumte (Latn, 79,000 speakers), Southern Kisi (Latn, 360,000 speakers), Bete-Bendi (Latn, 100,000 speakers), Makaa (Latn, 221,000 speakers), Ngbaka (Latn, 1,020,000 speakers), Aghem (Latn, 38,843 speakers), Dii (Latn, 71,000 speakers), Lugbara (Latn, 2,200,000 speakers), Nateni (Latn, 100,000 speakers), Ijo, Southeast (Latn, 2,471,000 speakers), Zapotec (Latn, 490,000 speakers), Mango (Latn, 77,000 speakers), Ma’di (Latn, 584,000 speakers), Bafut (Latn, 158,146 speakers), Vute (Latn, 21,000 speakers), Belarusian (Cyrl, 10,064,517 speakers), Igbo (Latn, 27,823,640 speakers), Dutch (Latn, 31,709,104 speakers), Gulay (Latn, 250,478 speakers), Avokaya (Latn, 100,000 speakers), Kom (Latn, 360,685 speakers), Basaa (Latn, 332,940 speakers), Cicipu (Latn, 44,000 speakers), Fur (Latn, 1,230,163 speakers), Navajo (Latn, 166,319 speakers), Ebira (Latn, 2,200,000 speakers), Ukrainian (Cyrl, 29,273,587 speakers), Ekpeye (Latn, 226,000 speakers), Koonzime (Latn, 40,000 speakers), Dan (Latn, 1,099,244 speakers), South Central Banda (Latn, 244,000 speakers), Yala (Latn, 200,000 speakers).

    - [code: lacks-meta-table] + [code: soft-dotted]
    @@ -16344,7 +4840,7 @@

    ⚠️ - Samaano-Thin-Slanted.ttf + Samaano[wdth,wght].ttf
    @@ -16356,10 +4852,13 @@

    -

    This font file does not have a 'meta' table.

    +

    The dot of soft dotted characters used in orthographies must disappear in the following strings: i̊ i̋ j̀ j́ j̃ j̄ j̈ į̀ į́ į̂ į̃ į̄ į̌

    +

    The dot of soft dotted characters should disappear in other cases, for example: i̅ i̇ ỉ ǐ ị̅ ị̇ ị̉ ị̊ ị̋ ị̌ i̦̅ i̦̇ ỉ̦ i̦̊ i̦̋ ǐ̦ i̧̅ i̧̇ ỉ̧ i̧̊

    +

    Your font fully covers the following languages that require the soft-dotted feature: Lithuanian (Latn, 2,357,094 speakers).

    +

    Your font does not cover the following languages that require the soft-dotted feature: Kpelle, Guinea (Latn, 622,000 speakers), Mundani (Latn, 34,000 speakers), Nzakara (Latn, 50,000 speakers), Sar (Latn, 500,000 speakers), Ejagham (Latn, 120,000 speakers), Mfumte (Latn, 79,000 speakers), Southern Kisi (Latn, 360,000 speakers), Bete-Bendi (Latn, 100,000 speakers), Makaa (Latn, 221,000 speakers), Ngbaka (Latn, 1,020,000 speakers), Aghem (Latn, 38,843 speakers), Dii (Latn, 71,000 speakers), Lugbara (Latn, 2,200,000 speakers), Nateni (Latn, 100,000 speakers), Ijo, Southeast (Latn, 2,471,000 speakers), Zapotec (Latn, 490,000 speakers), Mango (Latn, 77,000 speakers), Ma’di (Latn, 584,000 speakers), Bafut (Latn, 158,146 speakers), Vute (Latn, 21,000 speakers), Belarusian (Cyrl, 10,064,517 speakers), Igbo (Latn, 27,823,640 speakers), Dutch (Latn, 31,709,104 speakers), Gulay (Latn, 250,478 speakers), Avokaya (Latn, 100,000 speakers), Kom (Latn, 360,685 speakers), Basaa (Latn, 332,940 speakers), Cicipu (Latn, 44,000 speakers), Fur (Latn, 1,230,163 speakers), Navajo (Latn, 166,319 speakers), Ebira (Latn, 2,200,000 speakers), Ukrainian (Cyrl, 29,273,587 speakers), Ekpeye (Latn, 226,000 speakers), Koonzime (Latn, 40,000 speakers), Dan (Latn, 1,099,244 speakers), South Central Banda (Latn, 244,000 speakers), Yala (Latn, 200,000 speakers).

    - [code: lacks-meta-table] + [code: soft-dotted]
    @@ -16369,11 +4868,37 @@

    + + + + +

    Outline Checks

    + + ⚠️⚠️⚠️⏩⏩⏩⏩⏩⏩⏩⏩ + + +

    + + Are there any misaligned on-curve points? +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/outline_alignment_miss>
    + + + +
    + + + + + +
    + +
    ⚠️ - Samaano-Wide-Bold-Slanted.ttf + Samaano-Italic[wdth,wght].ttf
    @@ -16385,10 +4910,16 @@

    -

    This font file does not have a 'meta' table.

    +

    The following glyphs have on-curve points which have potentially incorrect y coordinates:

    +
    * Eng (U+014A): X=395.0,Y=1550.0 (should be at cap-height 1548?)
    +
    +* Eng (U+014A): X=1194.0,Y=1550.0 (should be at cap-height 1548?)
    +
    +* uni1E4D (U+1E4D): X=890.0,Y=1550.0 (should be at cap-height 1548?)
    +
    - [code: lacks-meta-table] + [code: found-misalignments]
    @@ -16402,7 +4933,7 @@

    ⚠️ - Samaano-Wide-Thin-Slanted.ttf + Samaano[wdth,wght].ttf
    @@ -16414,10 +4945,30 @@

    -

    This font file does not have a 'meta' table.

    +

    The following glyphs have on-curve points which have potentially incorrect y coordinates:

    +
    * Eng (U+014A): X=112.0,Y=1550.0 (should be at cap-height 1548?)
    +
    +* Eng (U+014A): X=911.0,Y=1550.0 (should be at cap-height 1548?)
    +
    +* uni0162 (U+0162): X=62.0,Y=-617.0 (should be at descender -615?)
    +
    +* uni0162 (U+0162): X=-90.0,Y=-617.0 (should be at descender -615?)
    +
    +* uni01C4 (U+01C4): X=213.0,Y=1550.0 (should be at cap-height 1548?)
    +
    +* uni01C4 (U+01C4): X=213.0,Y=1549.0 (should be at cap-height 1548?)
    +
    +* uni01C4 (U+01C4): X=132.0,Y=1549.0 (should be at cap-height 1548?)
    +
    +* uni01C5 (U+01C5): X=214.0,Y=1550.0 (should be at cap-height 1548?)
    +
    +* uni01C5 (U+01C5): X=214.0,Y=1549.0 (should be at cap-height 1548?)
    +
    +* uni01C5 (U+01C5): X=133.0,Y=1549.0 (should be at cap-height 1548?)
    +
    - [code: lacks-meta-table] + [code: found-misalignments]
    @@ -16430,9 +4981,9 @@

    - Check small caps glyphs are available. + Are any segments inordinately short?

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/missing_small_caps_glyphs>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/outline_short_segments>
    @@ -16442,13 +4993,23 @@

    - +

    + + +

    + Do any segments have colinear vectors? +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/outline_colinear_vectors>
    + + + +
    @@ -16461,14 +5022,24 @@

    - +

    + Do outlines contain any jaggy segments? +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/outline_jaggy_segments>
    + + + +
    +
    + + @@ -16476,9 +5047,9 @@

    - Are there non-ASCII characters in ASCII-only NAME table entries? + Do outlines contain any semi-vertical or semi-horizontal lines?

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/name/ascii_only_entries>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/outline_semi_vertical>
    @@ -16488,13 +5059,23 @@

    - +

    + + +

    + Check the direction of the outermost contour in each glyph +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/outline_direction>
    + + + +
    @@ -16506,25 +5087,66 @@

    +
    + + ⚠️ + Samaano[wdth,wght].ttf + + +
    +
      + +
    • + + ⚠️ WARN + - + +

      The following glyphs have a counter-clockwise outer contour:

      +
      * Hbar (U+0126) has a counter-clockwise outer contour
       
      -    
      +* Hbar (U+0126) has a counter-clockwise outer contour
       
      -    
      +* Hbar (U+0126) has a counter-clockwise outer contour
       
      -    
      +* Hbar (U+0126) has a counter-clockwise outer contour
       
      -    
      +* endash (U+2013) has a counter-clockwise outer contour
      +
      +* hbar (U+0127) has a counter-clockwise outer contour
      +
      +* hbar (U+0127) has a counter-clockwise outer contour
       
      +* hbar (U+0127) has a counter-clockwise outer contour
      +
      +* hbar (U+0127) has a counter-clockwise outer contour
      +
      + + + [code: ccw-outer-contour] + +
      +
    • + +
    +
    +
    + + + +

    Font File Checks

    + + 🔥⚠️⚠️⚠️⚠️⚠️⚠️⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ + +

    - Description strings in the name table must not exceed 200 characters. + Are there unwanted Apple tables?

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/name/description_max_length>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/aat>
    @@ -16534,13 +5156,23 @@

    - +

    + + +

    + Checking file is named canonically. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/canonical_filename>
    + + + +
    @@ -16553,14 +5185,24 @@

    - +

    + Does the font contain less than 150 CJK characters? +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/cjk_not_enough_glyphs>
    + + + +
    +
    + + @@ -16568,9 +5210,9 @@

    - Make sure family name does not begin with a digit. + Check font follows the Google Fonts CJK vertical metric schema

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/name/familyname_first_char>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/cjk_vertical_metrics>
    @@ -16580,13 +5222,23 @@

    - +

    + + +

    + Check if the vertical metrics of a CJK family are similar to the same family hosted on Google Fonts. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/cjk_vertical_metrics_regressions>
    + + + +
    @@ -16599,14 +5251,24 @@

    - +

    + Color layers should have a minimum brightness +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/color_cpal_brightness>
    + + + +
    +
    + + @@ -16614,9 +5276,9 @@

    - Font has all mandatory 'name' table entries? + Check font has the expected color font tables.

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/name/mandatory_entries>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/colorfont_tables>
    @@ -16626,74 +5288,53 @@

    - +

    - - +

    + Put an empty glyph on GID 1 right after the .notdef glyph for COLRv0 fonts. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/empty_glyph_on_gid1_for_colrv0>
    -

    - +
    +
    + + + +

    -
    - - 🔥 - Samaano-Thin-Slanted.ttf - - -
    -
      - -
    • - - 🔥 FAIL - + EPAR table present in font? +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/epar>
    - -

    Font lacks entry with nameId=16 (TYPOGRAPHIC_FAMILY_NAME)

    - - [code: missing-entry] - -
    - - -
  • - - 🔥 FAIL - - -

    Font lacks entry with nameId=17 (TYPOGRAPHIC_SUBFAMILY_NAME)

    +
    + + - - [code: missing-entry] - - -
  • - - -
    -
    +

    + + @@ -16701,9 +5342,9 @@

    - Version format is correct in 'name' table? + Ensure files are not too large.

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/name/version_format>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/file_size>
    @@ -16713,32 +5354,30 @@

    - + - - +

    - - + Copyright notices match canonical pattern in fonts +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/font_copyright>
    - - +
    - +
    - @@ -16747,9 +5386,9 @@

    - Ensure fonts do not contain any pre-production tables. + Familyname must be unique according to namecheck.fontdata.com

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/no_debugging_tables>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/fontdata_namecheck>
    @@ -16759,32 +5398,30 @@

    - + - - +

    - - + Check font names are correct +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/font_names>
    - - +
    - +
    - @@ -16793,9 +5430,9 @@

    - Font has old ttfautohint applied? + Checking OS/2 fsType does not impose restrictions.

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/old_ttfautohint>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/fstype>
    @@ -16805,32 +5442,30 @@

    - + - - +

    - - + Check variable font instances +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/fvar_instances>
    - - +
    - +
    - @@ -16839,9 +5474,9 @@

    - OS/2.fsSelection bit 7 (USE_TYPO_METRICS) is set in all fonts. + All name entries referenced by fvar instances exist on the name table?

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/os2/use_typo_metrics>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/fvar_name_entries>
    @@ -16849,17 +5484,21 @@

    + + + +

    - Check font can render its own name. + Is the Grid-fitting and Scan-conversion Procedure ('gasp') table set to optimize rendering?

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/render_own_name>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/gasp>
    @@ -16869,13 +5508,23 @@

    - + + + +

    + Validate defaults on fvar table match registered fallback names in GFAxisRegistry. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/gf_axisregistry/fvar_axis_defaults>
    + + + +
    @@ -16888,14 +5537,24 @@

    - +

    + Check glyphs do not have components which are themselves components. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/glyf_nested_components>
    + + + +
    +
    + + @@ -16903,9 +5562,9 @@

    - Checking direction of slnt axis angles + Check Google Fonts glyph coverage.

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/slant_direction>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/glyph_coverage>
    @@ -16915,13 +5574,23 @@

    - +

    + + +

    + Font has ttfautohint params? +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/has_ttfautohint_params>
    + + + +
    @@ -16934,14 +5603,24 @@

    - +

    + Show hinting filesize impact. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/hinting_impact>
    + + + +
    +
    + + @@ -16949,9 +5628,9 @@

    - Font enables smart dropout control in "prep" table instructions? + PPEM must be an integer on hinted fonts.

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/smart_dropout>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/integer_ppem_if_hinted>
    @@ -16961,13 +5640,23 @@

    - +

    + + +

    + Is there kerning info for non-ligated sequences? +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/kerning_for_non_ligated_sequences>
    + + + +
    @@ -16980,14 +5669,24 @@

    - +

    + Are there caret positions declared for every ligature? +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/ligature_carets>
    + + + +
    +
    + + @@ -16995,9 +5694,9 @@

    - Check axis ordering on the STAT table. + Ensure variable fonts include an avar table.

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/STAT/axis_order>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/mandatory_avar_table>
    @@ -17005,17 +5704,75 @@

    + +

    +
    + + ⚠️ + Samaano-Italic[wdth,wght].ttf + + +
    +
      + +
    • + + ⚠️ WARN + + + +

      This variable font does not have an avar table.

      + + + [code: missing-avar] + +
      +
    • + +
    +
    +
    + + + +
    + + ⚠️ + Samaano[wdth,wght].ttf + + +
    +
      + +
    • + + ⚠️ WARN + + + +

      This variable font does not have an avar table.

      + + + [code: missing-avar] + +
      +
    • + +
    +
    +
    +

    - Validate STAT particle names and values match the fallback names in GFAxisRegistry. + Ensure fonts have ScriptLangTags declared on the 'meta' table.

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/STAT/gf_axisregistry>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/meta/script_lang_tags>
    @@ -17025,32 +5782,84 @@

    + + + +
    + + ⚠️ + Samaano-Italic[wdth,wght].ttf + + +
    +
      + +
    • + + ⚠️ WARN + + + +

      This font file does not have a 'meta' table.

      + + [code: lacks-meta-table] + +
      +
    • + +
    +
    +
    +
    + + ⚠️ + Samaano[wdth,wght].ttf + + +
    +
      + +
    • + + ⚠️ WARN + + + +

      This font file does not have a 'meta' table.

      + + [code: lacks-meta-table] + +
      +
    • + +
    +
    +
    - +

    - - + Check small caps glyphs are available. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/missing_small_caps_glyphs>
    - - +
    - +
    - @@ -17059,9 +5868,9 @@

    - Ensure Stylistic Sets have description. + Are there non-ASCII characters in ASCII-only NAME table entries?

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/stylisticset_description>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/name/ascii_only_entries>
    @@ -17071,32 +5880,30 @@

    - + - - +

    - - + Description strings in the name table must not exceed 200 characters. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/name/description_max_length>
    - - +
    - +
    - @@ -17105,9 +5912,9 @@

    - Stricter unitsPerEm criteria for Google Fonts. + Make sure family name does not begin with a digit.

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/unitsperem_strict>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/name/familyname_first_char>
    @@ -17117,32 +5924,30 @@

    - + - - +

    - - + Font has all mandatory 'name' table entries? +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/name/mandatory_entries>
    - - +
    - +
    - @@ -17151,9 +5956,9 @@

    - Check the OS/2 usWeightClass is appropriate for the font's best SubFamily name. + Version format is correct in 'name' table?

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/usweightclass>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/name/version_format>
    @@ -17163,32 +5968,30 @@

    - + - - +

    - - + Ensure fonts do not contain any pre-production tables. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/no_debugging_tables>
    - - +
    - +
    - @@ -17197,9 +6000,9 @@

    - The variable font 'wght' (Weight) axis coordinate must be 700 on the 'Bold' instance. + Font has old ttfautohint applied?

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/varfont/bold_wght_coord>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/old_ttfautohint>
    @@ -17209,43 +6012,37 @@

    - - - - - + - - - +

    + OS/2.fsSelection bit 7 (USE_TYPO_METRICS) is set in all fonts. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/os2/use_typo_metrics>
    - - - +
    - +
    -

    - Ensure that all variable font files have the same set of axes and axis ranges. + Check font can render its own name.

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/varfont/consistent_axes>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/render_own_name>
    @@ -17253,17 +6050,21 @@

    + + + +

    - Ensure VFs with duplexed axes do not vary horizontal advance. + Checking direction of slnt axis angles

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/varfont/duplexed_axis_reflow>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/slant_direction>
    @@ -17273,32 +6074,30 @@

    - + - - +

    - - + Font enables smart dropout control in "prep" table instructions? +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/smart_dropout>
    - - +
    - +
    - @@ -17307,9 +6106,9 @@

    - Check variable font instances don't have duplicate names + Check axis ordering on the STAT table.

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/varfont_duplicate_instance_names>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/STAT/axis_order>
    @@ -17317,35 +6116,56 @@

    - - - + - - +

    + Validate STAT particle names and values match the fallback names in GFAxisRegistry. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/STAT/gf_axisregistry>
    - - +
    - +
    - +
    + + 🔥 + Samaano-Italic[wdth,wght].ttf + + +
    +
      + +
    • + + 🔥 FAIL + - + +

      STAT table is missing Axis Value Records

      + + [code: missing-axis-values] + +
      +
    • + +
    +
    +
    @@ -17353,9 +6173,9 @@

    - Check a static ttf can be generated from a variable font. + Ensure Stylistic Sets have description.

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/varfont/generate_static>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/stylisticset_description>
    @@ -17365,32 +6185,30 @@

    - + - - +

    - - + Stricter unitsPerEm criteria for Google Fonts. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/unitsperem_strict>
    - - +
    - +
    - @@ -17399,11 +6217,9 @@

    -
    EXPERIMENTAL CHECK - Since 2024/Mar/27
    - - Ensure the font's instances are in the correct order. + Check the OS/2 usWeightClass is appropriate for the font's best SubFamily name.

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/varfont/instances_in_order>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/usweightclass>
    @@ -17413,32 +6229,30 @@

    - + - - +

    - - + The variable font 'wght' (Weight) axis coordinate must be 700 on the 'Bold' instance. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/varfont/bold_wght_coord>
    - - +
    - +
    - @@ -17447,9 +6261,9 @@

    - Check that variable fonts have an HVAR table. + Ensure that all variable font files have the same set of axes and axis ranges.

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/varfont/has_HVAR>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/varfont/consistent_axes>
    @@ -17457,34 +6271,28 @@

    - - - - - + - - +

    - - + Ensure VFs with duplexed axes do not vary horizontal advance. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/varfont/duplexed_axis_reflow>
    - - +
    - +
    - @@ -17493,9 +6301,9 @@

    - Ensure VFs do not contain the ital axis. + Check variable font instances don't have duplicate names

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/varfont/unsupported_axes>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/varfont_duplicate_instance_names>
    @@ -17505,13 +6313,23 @@

    + + + + +

    + Check a static ttf can be generated from a variable font. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/varfont/generate_static>
    + + - +
    @@ -17524,14 +6342,26 @@

    - +

    +
    EXPERIMENTAL CHECK - Since 2024/Mar/27
    + + Ensure the font's instances are in the correct order. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/varfont/instances_in_order>
    + + + +
    +
    + + @@ -17539,9 +6369,9 @@

    - Checking OS/2 achVendID. + Check that variable fonts have an HVAR table.

    -
    Check ID: <FontBakeryCheck:com.google.fonts/check/vendor_id>
    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/varfont/has_HVAR>
    @@ -17551,200 +6381,58 @@

    - +

    - - +

    + Ensure VFs do not contain the ital axis. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/varfont/unsupported_axes>
    - - - - -
    - - ⚠️ - Samaano-Bold.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - -

      OS/2 VendorID value 'anir' is not yet recognized. If you registered it recently, then it's safe to ignore this warning message. Otherwise, you should set it to your own unique 4 character code, and register it with Microsoft at https://www.microsoft.com/typography/links/vendorlist.aspx

      - - [code: unknown] - -
      -
    • - -
    -
    -
    - +
    -
    - - ⚠️ - Samaano-Thin.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - - -

      OS/2 VendorID value 'anir' is not yet recognized. If you registered it recently, then it's safe to ignore this warning message. Otherwise, you should set it to your own unique 4 character code, and register it with Microsoft at https://www.microsoft.com/typography/links/vendorlist.aspx

      - - [code: unknown] - -
      -
    • - -
    -
    -
    - -
    - - ⚠️ - Samaano-Wide-Bold.ttf - - -
    -
      - -
    • - - ⚠️ WARN - +
    - -

    OS/2 VendorID value 'anir' is not yet recognized. If you registered it recently, then it's safe to ignore this warning message. Otherwise, you should set it to your own unique 4 character code, and register it with Microsoft at https://www.microsoft.com/typography/links/vendorlist.aspx

    - - [code: unknown] - -
    - - - -
    -
    -
    - - ⚠️ - Samaano-Wide-Thin.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - -

      OS/2 VendorID value 'anir' is not yet recognized. If you registered it recently, then it's safe to ignore this warning message. Otherwise, you should set it to your own unique 4 character code, and register it with Microsoft at https://www.microsoft.com/typography/links/vendorlist.aspx

      - - [code: unknown] - -
      -
    • - -
    -
    -
    +

    + Checking OS/2 achVendID. +

    +
    Check ID: <FontBakeryCheck:com.google.fonts/check/vendor_id>
    - -
    - - ⚠️ - Samaano-Bold-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - -

      OS/2 VendorID value 'anir' is not yet recognized. If you registered it recently, then it's safe to ignore this warning message. Otherwise, you should set it to your own unique 4 character code, and register it with Microsoft at https://www.microsoft.com/typography/links/vendorlist.aspx

      - - [code: unknown] - -
      -
    • - -
    -
    -
    +
    + -
    - - ⚠️ - Samaano-Thin-Slanted.ttf - - -
    -
      - -
    • - - ⚠️ WARN - - -

      OS/2 VendorID value 'anir' is not yet recognized. If you registered it recently, then it's safe to ignore this warning message. Otherwise, you should set it to your own unique 4 character code, and register it with Microsoft at https://www.microsoft.com/typography/links/vendorlist.aspx

      +
    - - [code: unknown] - - - - - -
    - -
    ⚠️ - Samaano-Wide-Bold-Slanted.ttf + Samaano-Italic[wdth,wght].ttf
    @@ -17773,7 +6461,7 @@

    ⚠️ - Samaano-Wide-Thin-Slanted.ttf + Samaano[wdth,wght].ttf
    @@ -17813,18 +6501,6 @@

    - - - - - - - - - - - -

    @@ -17832,18 +6508,6 @@

    - - - - - - - - - - - -

    @@ -17859,18 +6523,6 @@

    - - - - - - - - - - - -

    @@ -17878,18 +6530,6 @@

    - - - - - - - - - - - -

    @@ -17905,18 +6545,6 @@

    - - - - - - - - - - - - @@ -17924,18 +6552,6 @@

    - - - - - - - - - - - - diff --git a/out/fontbakery/fontbakery-report.md b/out/fontbakery/fontbakery-report.md index 1b84c0e34..fee855cca 100644 --- a/out/fontbakery/fontbakery-report.md +++ b/out/fontbakery/fontbakery-report.md @@ -10,10 +10,10 @@ fontbakery version: 0.12.10 -
    [1] Family checks +
    [15] Samaano-Italic[wdth,wght].ttf
    - 🔥 FAIL Verify that family names in the name table are consistent across all fonts in the family. Checks Typographic Family name (nameID 16) if present, otherwise uses Font Family name (nameID 1) + 🔥 FAIL Checking correctness of monospaced metadata.
    @@ -22,65 +22,22 @@ fontbakery version: 0.12.10 -* 🔥 **FAIL**

    7 different Font Family names were found:

    -
      -
    • -

      'Samaano' was found in:

      -
        -
      • Samaano-Bold.ttf (nameID 1)
      • -
      • Samaano-Thin.ttf (nameID 16)
      • -
      -
    • -
    • -

      'Samaano Wide-Bold' was found in:

      -
        -
      • Samaano-Wide-Bold.ttf (nameID 1)
      • -
      -
    • -
    • -

      'Samaano Wide-Thin' was found in:

      -
        -
      • Samaano-Wide-Thin.ttf (nameID 1)
      • -
      -
    • -
    • -

      'Samaano Bold-Slanted' was found in:

      -
        -
      • Samaano-Bold-Slanted.ttf (nameID 1)
      • -
      -
    • -
    • -

      'Samaano Thin-Slanted' was found in:

      -
        -
      • Samaano-Thin-Slanted.ttf (nameID 1)
      • -
      -
    • -
    • -

      'Samaano Wide-Bold-Slanted' was found in:

      -
        -
      • Samaano-Wide-Bold-Slanted.ttf (nameID 1)
      • -
      -
    • -
    • -

      'Samaano Wide-Thin-Slanted' was found in:

      -
        -
      • Samaano-Wide-Thin-Slanted.ttf (nameID 1)
      • -
      -
    • -
    - [code: inconsistent-family-name] +* 🔥 **FAIL**

    On monospaced fonts, the value of post.isFixedPitch must be set to a non-zero value (meaning 'fixed width monospaced'), but got 0 instead.

    + [code: mono-bad-post-isFixedPitch] + + + +* ⚠️ **WARN**

    The OpenType spec recommends at https://learn.microsoft.com/en-us/typography/opentype/spec/recom#hhea-table that hhea.numberOfHMetrics be set to 3 but this font has 434 instead. +Please read https://github.com/fonttools/fonttools/issues/3014 to decide whether this makes sense for your font.

    + [code: bad-numberOfHMetrics] -
    -
    -
    [16] Samaano-Bold.ttf -
    - 🔥 FAIL Checking OS/2 usWinAscent & usWinDescent. + 🔥 FAIL STAT table has Axis Value tables?
    @@ -89,8 +46,8 @@ fontbakery version: 0.12.10 -* 🔥 **FAIL**

    OS/2.usWinDescent value should be equal or greater than 978, but got 958 instead

    - [code: descent] +* 🔥 **FAIL**

    STAT table has no Axis Value tables.

    + [code: no-axis-value-tables] @@ -130,7 +87,7 @@ fontbakery version: 0.12.10
    - ⚠️ WARN Checking correctness of monospaced metadata. + 🔥 FAIL Validate STAT particle names and values match the fallback names in GFAxisRegistry.
    @@ -139,14 +96,8 @@ fontbakery version: 0.12.10 -* ⚠️ **WARN**

    The OpenType spec recommends at https://learn.microsoft.com/en-us/typography/opentype/spec/recom#hhea-table that hhea.numberOfHMetrics be set to 3 but this font has 441 instead. -Please read https://github.com/fonttools/fonttools/issues/3014 to decide whether this makes sense for your font.

    - [code: bad-numberOfHMetrics] - - - -* ⚠️ **WARN**

    Font is monospaced but 1 glyphs (0.14%) have a different width. You should check the widths of: ['ldot']

    - [code: mono-outliers] +* 🔥 **FAIL**

    STAT table is missing Axis Value Records

    + [code: missing-axis-values] @@ -164,7 +115,7 @@ Please read https:/ * ⚠️ **WARN**

    The following spacing glyphs may be in the GDEF mark glyph class by mistake: -acutecomb (U+0301), dotbelowcomb (U+0323), glyph094D (unencoded), gravecomb (U+0300), tildecomb (U+0303), uni0304 (U+0304), uni0306 (U+0306), uni0307 (U+0307), uni0308 (U+0308), uni030A (U+030A), uni030B (U+030B), uni030C (U+030C), uni0326 (U+0326), uni0327 (U+0327), uni0328 (U+0328), uni0331 (U+0331), uni0930_uni094D.blwf (unencoded), uni0930_uni094D.rphf (unencoded), uni093A (U+093A), uni093C (U+093C), uni0945 (U+0945), uni0946 (U+0946), uni0947 (U+0947), uni0948 (U+0948), uni0955 (U+0955), uni0956 (U+0956), uni0957 (U+0957), uni0962 (U+0962) and uni0963 (U+0963)

    +uni0930_uni094D.blwf (unencoded), uni0930_uni094D.rphf (unencoded), uni093A (U+093A), uni093C (U+093C), uni0945 (U+0945), uni0946 (U+0946), uni0947 (U+0947), uni0948 (U+0948), uni0951 (U+0951), uni0952 (U+0952), uni0953 (U+0953), uni0954 (U+0954), uni0955 (U+0955), uni0956 (U+0956), uni0957 (U+0957), uni0962 (U+0962) and uni0963 (U+0963)

    [code: spacing-mark-glyphs] @@ -173,7 +124,7 @@ acutecomb (U+0301), dotbelowcomb (U+0323), glyph094D (unencoded), gravecomb (U+0
    - ⚠️ WARN Check mark characters are in GDEF mark glyph class. + ⚠️ WARN Does GPOS table have kerning information? This check skips monospaced fonts as defined by post.isFixedPitch value
    @@ -182,9 +133,8 @@ acutecomb (U+0301), dotbelowcomb (U+0323), glyph094D (unencoded), gravecomb (U+0 -* ⚠️ **WARN**

    The following mark characters could be in the GDEF mark glyph class: -hookabovecomb (U+0309) and uni0305 (U+0305)

    - [code: mark-chars] +* ⚠️ **WARN**

    GPOS table lacks kerning information.

    + [code: lacks-kern-info] @@ -227,7 +177,7 @@ hookabovecomb (U+0309) and uni0305 (U+0305)

    - ⚠️ WARN Check if each glyph has the recommended amount of contours. + ⚠️ WARN Detect any interpolation issues in the font.
    @@ -236,143 +186,104 @@ hookabovecomb (U+0309) and uni0305 (U+0305)

    -* ⚠️ **WARN**

    This check inspects the glyph outlines and detects the total number of contours in each of them. The expected values are infered from the typical ammounts of contours observed in a large collection of reference font families. The divergences listed below may simply indicate a significantly different design on some of your glyphs. On the other hand, some of these may flag actual bugs in the font such as glyphs mapped to an incorrect codepoint. Please consider reviewing the design and codepoint assignment of these to make sure they are correct.

    -

    The following glyphs do not have the recommended number of contours:

    -
    - Glyph name: parenleft	Contours detected: 2	Expected: 1
    -
    -- Glyph name: Z	Contours detected: 2	Expected: 1
    -
    -- Glyph name: braceleft	Contours detected: 2	Expected: 1
    -
    -- Glyph name: mu	Contours detected: 2	Expected: 1
    -
    -- Glyph name: aogonek	Contours detected: 3	Expected: 2
    -
    -- Glyph name: eogonek	Contours detected: 3	Expected: 2
    -
    -- Glyph name: Uogonek	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uogonek	Contours detected: 2	Expected: 1
    -
    -- Glyph name: Zacute	Contours detected: 3	Expected: 2
    -
    -- Glyph name: Zdotaccent	Contours detected: 3	Expected: 2
    -
    -- Glyph name: Zcaron	Contours detected: 3	Expected: 2
    +* ⚠️ **WARN** 

    Interpolation issues were found in the font:

    +
    - Contour order differs in glyph 'uni0946_uni0930_uni094D.abvs': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [4, 1, 5, 3, 6, 2, 0] in wght=700,wdth=200.
     
    -- Glyph name: uni01C4	Contours detected: 5	Expected: 4
    +- Contour 0 start point differs in glyph 'uni0946_uni0930_uni094D.abvs' between location wght=700,wdth=100 and location wght=700,wdth=200
     
    -- Glyph name: uni0916	Contours detected: 2	Expected: 1 or 3
    +- Contour 0 in glyph 'uni0946_uni0930_uni094D.abvs': becomes underweight between wght=700,wdth=100 and wght=700,wdth=200.
     
    -- Glyph name: uni091B	Contours detected: 1	Expected: 2
    +- Contour 5 start point differs in glyph 'uni0946_uni0930_uni094D.abvs' between location wght=700,wdth=100 and location wght=700,wdth=200
     
    -- Glyph name: uni092D	Contours detected: 2	Expected: 1
    +- Contour 6 start point differs in glyph 'uni0946_uni0930_uni094D.abvs' between location wght=700,wdth=100 and location wght=700,wdth=200
     
    -- Glyph name: uni092E	Contours detected: 3	Expected: 2
    +- Contour 6 in glyph 'uni0946_uni0930_uni094D.abvs': becomes underweight between wght=700,wdth=100 and wght=700,wdth=200.
     
    -- Glyph name: uni093D	Contours detected: 3	Expected: 1
    +- Contour order differs in glyph 'igrave': [0, 1, 2, 3] in wght=700,wdth=100, [0, 1, 3, 2] in wght=700,wdth=200.
     
    -- Glyph name: uni0945	Contours detected: 2	Expected: 1
    +- Contour order differs in glyph 'uni094C_uni0902.abvs': [0, 1, 2, 3, 4] in wght=700,wdth=100, [0, 1, 3, 4, 2] in wght=700,wdth=200.
     
    -- Glyph name: uni0955	Contours detected: 3	Expected: 2
    +- Contour 4 start point differs in glyph 'uni094C_uni0902.abvs' between location wght=700,wdth=100 and location wght=700,wdth=200
     
    -- Glyph name: uni0956	Contours detected: 2	Expected: 1
    +- Contour order differs in glyph 'uni094C_uni0902.abvs': [0, 1, 2, 3, 4] in wght=700,wdth=200, [0, 1, 2, 4, 3] in wght=100,wdth=100.
     
    -- Glyph name: uni0957	Contours detected: 3	Expected: 2
    +- Contour order differs in glyph 'uni094C_uni0902.abvs': [0, 1, 2, 3, 4] in wght=100,wdth=100, [0, 1, 3, 4, 2] in wght=100,wdth=200.
     
    -- Glyph name: uni0959	Contours detected: 3	Expected: 2 or 4
    +- Contour order differs in glyph 'egrave': [0, 1, 2, 3, 4, 5] in wght=700,wdth=100, [5, 1, 2, 3, 0, 4] in wght=700,wdth=200.
     
    -- Glyph name: uni0962	Contours detected: 2	Expected: 1
    +- Contour order differs in glyph 'uni0947_uni0902.abvs': [0, 1, 2] in wght=700,wdth=100, [0, 2, 1] in wght=700,wdth=200.
     
    -- Glyph name: uni0963	Contours detected: 2	Expected: 1
    +- Contour 2 start point differs in glyph 'uni0947_uni0902.abvs' between location wght=700,wdth=100 and location wght=700,wdth=200
     
    -- Glyph name: uni0967	Contours detected: 2	Expected: 1
    +- Contour order differs in glyph 'uni0945_uni0930_uni094D.abvs': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [4, 2, 5, 3, 6, 0, 1] in wght=700,wdth=200.
     
    -- Glyph name: uni0970	Contours detected: 1	Expected: 2
    +- Contour 0 start point differs in glyph 'uni0945_uni0930_uni094D.abvs' between location wght=700,wdth=100 and location wght=700,wdth=200
     
    -- Glyph name: uni097F	Contours detected: 2	Expected: 3
    +- Contour 0 in glyph 'uni0945_uni0930_uni094D.abvs': becomes underweight between wght=700,wdth=100 and wght=700,wdth=200.
     
    -- Glyph name: uni25CC	Contours detected: 8	Expected: 16 or 12
    +- Contour 1 start point differs in glyph 'uni0945_uni0930_uni094D.abvs' between location wght=700,wdth=100 and location wght=700,wdth=200
     
    -- Glyph name: Uogonek	Contours detected: 2	Expected: 1
    +- Contour 1 in glyph 'uni0945_uni0930_uni094D.abvs': becomes underweight between wght=700,wdth=100 and wght=700,wdth=200.
     
    -- Glyph name: Z	Contours detected: 2	Expected: 1
    +- Contour 5 start point differs in glyph 'uni0945_uni0930_uni094D.abvs' between location wght=700,wdth=100 and location wght=700,wdth=200
     
    -- Glyph name: Zacute	Contours detected: 3	Expected: 2
    +- Contour 5 in glyph 'uni0945_uni0930_uni094D.abvs': becomes underweight between wght=700,wdth=100 and wght=700,wdth=200.
     
    -- Glyph name: Zcaron	Contours detected: 3	Expected: 2
    +- Contour order differs in glyph 'lacute': [0, 1, 2, 3] in wght=700,wdth=100, [0, 1, 3, 2] in wght=700,wdth=200.
     
    -- Glyph name: Zdotaccent	Contours detected: 3	Expected: 2
    +- Contour order differs in glyph 'uni0949_uni0902.abvs': [0, 1, 2, 3, 4, 5] in wght=700,wdth=100, [0, 1, 5, 3, 4, 2] in wght=700,wdth=200.
     
    -- Glyph name: aogonek	Contours detected: 3	Expected: 2
    +- Contour order differs in glyph 'uni0946_uni0902.abvs': [0, 1, 2, 3, 4] in wght=700,wdth=100, [0, 3, 2, 4, 1] in wght=700,wdth=200.
     
    -- Glyph name: braceleft	Contours detected: 2	Expected: 1
    +- Contour order differs in glyph 'uni0946_uni0902.abvs': [0, 1, 2, 3, 4] in wght=700,wdth=200, [0, 1, 2, 4, 3] in wght=100,wdth=100.
     
    -- Glyph name: eogonek	Contours detected: 3	Expected: 2
    +- Contour order differs in glyph 'uni0946_uni0902.abvs': [0, 1, 2, 3, 4] in wght=100,wdth=100, [0, 1, 2, 4, 3] in wght=100,wdth=200.
     
    -- Glyph name: parenleft	Contours detected: 2	Expected: 1
    +- Contour order differs in glyph 'imacron': [0, 1, 2, 3] in wght=100,wdth=100, [0, 1, 3, 2] in wght=100,wdth=200.
     
    -- Glyph name: uni01C4	Contours detected: 5	Expected: 4
    +- Contour order differs in glyph 'icircumflex': [0, 1, 2, 3, 4] in wght=100,wdth=100, [0, 1, 4, 2, 3] in wght=100,wdth=200.
     
    -- Glyph name: uni0916	Contours detected: 2	Expected: 1 or 3
    +- Contour 3 start point differs in glyph 'icircumflex' between location wght=100,wdth=100 and location wght=100,wdth=200
     
    -- Glyph name: uni091B	Contours detected: 1	Expected: 2
    +- Contour 3 in glyph 'icircumflex': becomes underweight between wght=100,wdth=100 and wght=100,wdth=200.
     
    -- Glyph name: uni092D	Contours detected: 2	Expected: 1
    +- Contour order differs in glyph 'Dcaron': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [0, 1, 2, 5, 4, 6, 3] in wght=700,wdth=200.
     
    -- Glyph name: uni092E	Contours detected: 3	Expected: 2
    +- Contour 3 start point differs in glyph 'Dcaron' between location wght=700,wdth=100 and location wght=700,wdth=200
     
    -- Glyph name: uni093D	Contours detected: 3	Expected: 1
    +- Contour 3 in glyph 'Dcaron': becomes underweight between wght=700,wdth=100 and wght=700,wdth=200.
     
    -- Glyph name: uni0945	Contours detected: 2	Expected: 1
    +- Contour 5 start point differs in glyph 'Dcaron' between location wght=700,wdth=100 and location wght=700,wdth=200
     
    -- Glyph name: uni0955	Contours detected: 3	Expected: 2
    +- Contour 5 in glyph 'Dcaron': becomes underweight between wght=700,wdth=100 and wght=700,wdth=200.
     
    -- Glyph name: uni0956	Contours detected: 2	Expected: 1
    +- Contour order differs in glyph 'iacute': [0, 1, 2, 3] in wght=700,wdth=100, [0, 1, 3, 2] in wght=700,wdth=200.
     
    -- Glyph name: uni0957	Contours detected: 3	Expected: 2
    +- Contour order differs in glyph 'ibreve': [0, 1, 2, 3, 4, 5] in wght=100,wdth=100, [0, 1, 3, 4, 5, 2] in wght=100,wdth=200.
     
    -- Glyph name: uni0959	Contours detected: 3	Expected: 2 or 4
    +- Contour order differs in glyph 'atilde': [0, 1, 2, 3, 4, 5, 6, 7] in wght=100,wdth=100, [7, 1, 5, 2, 4, 0, 3, 6] in wght=100,wdth=200.
     
    -- Glyph name: uni0962	Contours detected: 2	Expected: 1
    +- Contour 6 start point differs in glyph 'atilde' between location wght=100,wdth=100 and location wght=100,wdth=200
     
    -- Glyph name: uni0963	Contours detected: 2	Expected: 1
    +- Contour order differs in glyph 'itilde': [0, 1, 2, 3, 4, 5] in wght=100,wdth=100, [0, 1, 3, 4, 2, 5] in wght=100,wdth=200.
     
    -- Glyph name: uni0967	Contours detected: 2	Expected: 1
    +- Contour order differs in glyph 'racute': [0, 1, 2, 3] in wght=700,wdth=100, [0, 1, 3, 2] in wght=700,wdth=200.
     
    -- Glyph name: uni0970	Contours detected: 1	Expected: 2
    -
    -- Glyph name: uni097F	Contours detected: 2	Expected: 3
    -
    -- Glyph name: uni25CC	Contours detected: 8	Expected: 16 or 12
    -
    -- Glyph name: uogonek	Contours detected: 2	Expected: 1
    -
    - [code: contour-count] - - - -
    -
    - -
    - ⚠️ WARN Check font contains no unreachable glyphs -
    +- Contour order differs in glyph 'idieresis': [0, 1, 2, 3, 4] in wght=100,wdth=100, [0, 1, 4, 2, 3] in wght=100,wdth=200. +- Contour order differs in glyph 'uni0948_uni0902.abvs': [0, 1, 2, 3] in wght=700,wdth=100, [0, 2, 3, 1] in wght=700,wdth=200. +- Contour 3 start point differs in glyph 'uni0948_uni0902.abvs' between location wght=700,wdth=100 and location wght=700,wdth=200 +- Contour 3 in glyph 'uni0948_uni0902.abvs': becomes underweight between wght=700,wdth=100 and wght=700,wdth=200. +- Contour order differs in glyph 'uni1E39': [0, 1, 2, 3, 4] in wght=700,wdth=100, [0, 1, 4, 3, 2] in wght=700,wdth=200. +- Contour order differs in glyph 'uni0945_uni0902.abvs': [0, 1, 2, 3, 4] in wght=700,wdth=100, [0, 2, 3, 4, 1] in wght=700,wdth=200. - -* ⚠️ **WARN**

    The following glyphs could not be reached by codepoint or substitution rules:

    -
    - glyph094D
    -
    -- uni0930_uni094D.abvs
    -
    -- uni0930_uni094D.vatu
    +- Contour order differs in glyph 'uni0945_uni0902.abvs': [0, 1, 2, 3, 4] in wght=100,wdth=100, [0, 1, 2, 4, 3] in wght=100,wdth=200.
     
    - [code: unreachable-glyphs] + [code: interpolation-issues] @@ -389,7 +300,7 @@ hookabovecomb (U+0309) and uni0305 (U+0305)

    -* ⚠️ **WARN**

    Family metadata at fonts/ttf does not have an article.

    +* ⚠️ **WARN**

    Family metadata at fonts/variable does not have an article.

    [code: lacks-article] @@ -416,17 +327,17 @@ definitions.

  • U+02D8 BREVE: try adding one of: canadian-aboriginal, yi
  • U+02D9 DOT ABOVE: try adding one of: canadian-aboriginal, yi
  • U+02DB OGONEK: try adding one of: canadian-aboriginal, yi
  • -
  • U+0302 COMBINING CIRCUMFLEX ACCENT: try adding one of: math, tifinagh, coptic, cherokee
  • -
  • U+0305 COMBINING OVERLINE: try adding one of: coptic, glagolitic, gothic, elbasan, math
  • +
  • U+0302 COMBINING CIRCUMFLEX ACCENT: try adding one of: math, coptic, cherokee, tifinagh
  • +
  • U+0305 COMBINING OVERLINE: try adding one of: elbasan, math, glagolitic, gothic, coptic
  • U+0306 COMBINING BREVE: try adding one of: old-permic, tifinagh
  • -
  • U+0307 COMBINING DOT ABOVE: try adding one of: duployan, malayalam, hebrew, old-permic, todhri, tai-le, coptic, tifinagh, math, syriac, canadian-aboriginal
  • -
  • U+030A COMBINING RING ABOVE: try adding one of: duployan, syriac
  • -
  • U+030B COMBINING DOUBLE ACUTE ACCENT: try adding one of: cherokee, osage
  • -
  • U+030C COMBINING CARON: try adding one of: tai-le, cherokee
  • +
  • U+0307 COMBINING DOT ABOVE: try adding one of: canadian-aboriginal, duployan, tifinagh, hebrew, math, coptic, malayalam, old-permic, syriac, todhri, tai-le
  • +
  • U+030A COMBINING RING ABOVE: try adding one of: syriac, duployan
  • +
  • U+030B COMBINING DOUBLE ACUTE ACCENT: try adding one of: osage, cherokee
  • +
  • U+030C COMBINING CARON: try adding one of: cherokee, tai-le
  • U+0326 COMBINING COMMA BELOW: try adding math
  • U+0327 COMBINING CEDILLA: try adding math
  • U+0328 COMBINING OGONEK: not included in any glyphset definition
  • -
  • U+0331 COMBINING MACRON BELOW: try adding one of: gothic, thai, tifinagh, caucasian-albanian, syriac, sunuwar, cherokee
  • +
  • U+0331 COMBINING MACRON BELOW: try adding one of: caucasian-albanian, thai, gothic, sunuwar, syriac, cherokee, tifinagh
  • U+2021 DOUBLE DAGGER: try adding adlam
  • U+2030 PER MILLE SIGN: try adding adlam
  • U+FB01 LATIN SMALL LIGATURE FI: not included in any glyphset definition
  • @@ -453,7 +364,7 @@ definitions.

    * ⚠️ **WARN**

    The dot of soft dotted characters used in orthographies must disappear in the following strings: i̊ i̋ j̀ j́ j̃ j̄ j̈ į̀ į́ į̂ į̃ į̄ į̌

    The dot of soft dotted characters should disappear in other cases, for example: i̅ i̇ ỉ ǐ ị̅ ị̇ ị̉ ị̊ ị̋ ị̌ i̦̅ i̦̇ ỉ̦ i̦̊ i̦̋ ǐ̦ i̧̅ i̧̇ ỉ̧ i̧̊

    Your font fully covers the following languages that require the soft-dotted feature: Lithuanian (Latn, 2,357,094 speakers).

    -

    Your font does not cover the following languages that require the soft-dotted feature: Nzakara (Latn, 50,000 speakers), Bete-Bendi (Latn, 100,000 speakers), Makaa (Latn, 221,000 speakers), Ejagham (Latn, 120,000 speakers), Igbo (Latn, 27,823,640 speakers), Zapotec (Latn, 490,000 speakers), Aghem (Latn, 38,843 speakers), Yala (Latn, 200,000 speakers), Ukrainian (Cyrl, 29,273,587 speakers), Sar (Latn, 500,000 speakers), Koonzime (Latn, 40,000 speakers), Mundani (Latn, 34,000 speakers), Dutch (Latn, 31,709,104 speakers), Ngbaka (Latn, 1,020,000 speakers), Ekpeye (Latn, 226,000 speakers), Avokaya (Latn, 100,000 speakers), Mango (Latn, 77,000 speakers), Southern Kisi (Latn, 360,000 speakers), Gulay (Latn, 250,478 speakers), Cicipu (Latn, 44,000 speakers), Basaa (Latn, 332,940 speakers), Dii (Latn, 71,000 speakers), South Central Banda (Latn, 244,000 speakers), Lugbara (Latn, 2,200,000 speakers), Navajo (Latn, 166,319 speakers), Nateni (Latn, 100,000 speakers), Kom (Latn, 360,685 speakers), Belarusian (Cyrl, 10,064,517 speakers), Ma’di (Latn, 584,000 speakers), Ebira (Latn, 2,200,000 speakers), Mfumte (Latn, 79,000 speakers), Bafut (Latn, 158,146 speakers), Vute (Latn, 21,000 speakers), Kpelle, Guinea (Latn, 622,000 speakers), Fur (Latn, 1,230,163 speakers), Ijo, Southeast (Latn, 2,471,000 speakers), Dan (Latn, 1,099,244 speakers).

    +

    Your font does not cover the following languages that require the soft-dotted feature: Kpelle, Guinea (Latn, 622,000 speakers), Mundani (Latn, 34,000 speakers), Nzakara (Latn, 50,000 speakers), Sar (Latn, 500,000 speakers), Ejagham (Latn, 120,000 speakers), Mfumte (Latn, 79,000 speakers), Southern Kisi (Latn, 360,000 speakers), Bete-Bendi (Latn, 100,000 speakers), Makaa (Latn, 221,000 speakers), Ngbaka (Latn, 1,020,000 speakers), Aghem (Latn, 38,843 speakers), Dii (Latn, 71,000 speakers), Lugbara (Latn, 2,200,000 speakers), Nateni (Latn, 100,000 speakers), Ijo, Southeast (Latn, 2,471,000 speakers), Zapotec (Latn, 490,000 speakers), Mango (Latn, 77,000 speakers), Ma’di (Latn, 584,000 speakers), Bafut (Latn, 158,146 speakers), Vute (Latn, 21,000 speakers), Belarusian (Cyrl, 10,064,517 speakers), Igbo (Latn, 27,823,640 speakers), Dutch (Latn, 31,709,104 speakers), Gulay (Latn, 250,478 speakers), Avokaya (Latn, 100,000 speakers), Kom (Latn, 360,685 speakers), Basaa (Latn, 332,940 speakers), Cicipu (Latn, 44,000 speakers), Fur (Latn, 1,230,163 speakers), Navajo (Latn, 166,319 speakers), Ebira (Latn, 2,200,000 speakers), Ukrainian (Cyrl, 29,273,587 speakers), Ekpeye (Latn, 226,000 speakers), Koonzime (Latn, 40,000 speakers), Dan (Latn, 1,099,244 speakers), South Central Banda (Latn, 244,000 speakers), Yala (Latn, 200,000 speakers).

    [code: soft-dotted] @@ -472,37 +383,11 @@ definitions.

    * ⚠️ **WARN**

    The following glyphs have on-curve points which have potentially incorrect y coordinates:

    -
    * N (U+004E): X=722.0,Y=2.0 (should be at baseline 0?)
    -
    -* Ntilde (U+00D1): X=722.0,Y=2.0 (should be at baseline 0?)
    +
    * Eng (U+014A): X=395.0,Y=1550.0 (should be at cap-height 1548?)
     
    -* Nacute (U+0143): X=722.0,Y=2.0 (should be at baseline 0?)
    -
    -* uni0145 (U+0145): X=722.0,Y=2.0 (should be at baseline 0?)
    -
    -* Ncaron (U+0147): X=722.0,Y=2.0 (should be at baseline 0?)
    -
    -* Eng (U+014A): X=112.0,Y=1550.0 (should be at cap-height 1548?)
    -
    -* Eng (U+014A): X=911.0,Y=1550.0 (should be at cap-height 1548?)
    -
    -* uni01C4 (U+01C4): X=213.0,Y=1550.0 (should be at cap-height 1548?)
    -
    -* uni01C4 (U+01C4): X=213.0,Y=1549.0 (should be at cap-height 1548?)
    -
    -* uni01C4 (U+01C4): X=151.0,Y=1549.0 (should be at cap-height 1548?)
    -
    -* uni01C5 (U+01C5): X=214.0,Y=1550.0 (should be at cap-height 1548?)
    -
    -* uni01C5 (U+01C5): X=214.0,Y=1549.0 (should be at cap-height 1548?)
    -
    -* uni01C5 (U+01C5): X=152.0,Y=1549.0 (should be at cap-height 1548?)
    -
    -* uni1E44 (U+1E44): X=722.0,Y=2.0 (should be at baseline 0?)
    -
    -* uni1E46 (U+1E46): X=722.0,Y=2.0 (should be at baseline 0?)
    +* Eng (U+014A): X=1194.0,Y=1550.0 (should be at cap-height 1548?)
     
    -* uni1E48 (U+1E48): X=722.0,Y=2.0 (should be at baseline 0?)
    +* uni1E4D (U+1E4D): X=890.0,Y=1550.0 (should be at cap-height 1548?)
     
    [code: found-misalignments] @@ -512,49 +397,7 @@ definitions.

    - ⚠️ WARN Do any segments have colinear vectors? -
    - - - - - - - -* ⚠️ **WARN**

    The following glyphs have colinear vectors:

    -
    * B (U+0042): L<<947.0,1215.0>--<947.0,1215.0>> -> L<<947.0,1215.0>--<948.0,1215.0>>
    -
    -* uni092F (U+092F): L<<688.0,223.0>--<140.0,467.0>> -> L<<140.0,467.0>--<127.0,472.0>>
    -
    -* uni092F_uni0930_uni094D.vatu: L<<574.0,273.0>--<140.0,467.0>> -> L<<140.0,467.0>--<127.0,472.0>>
    -
    -* uni092F_uni094D.half: L<<991.0,199.0>--<390.0,467.0>> -> L<<390.0,467.0>--<377.0,472.0>>
    -
    -* uni092F_uni094D.haln: L<<688.0,223.0>--<140.0,467.0>> -> L<<140.0,467.0>--<127.0,472.0>>
    -
    -* uni0943 (U+0943): L<<-211.0,-611.0>--<-254.0,-495.0>> -> L<<-254.0,-495.0>--<-269.0,-455.0>>
    -
    -* uni0943 (U+0943): L<<-269.0,-455.0>--<-338.0,-269.0>> -> L<<-338.0,-269.0>--<-389.0,-133.0>>
    -
    -* uni095F (U+095F): L<<688.0,223.0>--<140.0,467.0>> -> L<<140.0,467.0>--<127.0,472.0>>
    -
    -* uni095F_uni0930_uni094D.vatu: L<<574.0,273.0>--<140.0,467.0>> -> L<<140.0,467.0>--<127.0,472.0>>
    -
    -* uni095F_uni094D.half: L<<688.0,223.0>--<140.0,467.0>> -> L<<140.0,467.0>--<127.0,472.0>>
    -
    -* uni095F_uni094D.haln: L<<688.0,223.0>--<140.0,467.0>> -> L<<140.0,467.0>--<127.0,472.0>>
    -
    -* uni097A (U+097A): L<<688.0,223.0>--<140.0,467.0>> -> L<<140.0,467.0>--<127.0,472.0>>
    -
    - [code: found-colinear-vectors] - - - -
    -
    - -
    - ⚠️ WARN Do outlines contain any semi-vertical or semi-horizontal lines? + ⚠️ WARN Ensure variable fonts include an avar table.
    @@ -563,16 +406,8 @@ definitions.

    -* ⚠️ **WARN**

    The following glyphs have semi-vertical/semi-horizontal lines:

    -
    * questiondown (U+00BF): L<<655.0,1273.0>--<405.0,1272.0>>
    -
    -* uni0930_uni0942.blws: L<<-2.0,1347.0>--<-1.0,1548.0>>
    -
    -* uni0930_uni0942.blws: L<<1023.0,1348.0>--<451.0,1347.0>>
    -
    -* uni0930_uni0942.blws: L<<1024.0,1548.0>--<1023.0,1348.0>>
    -
    - [code: found-semi-vertical] +* ⚠️ **WARN**

    This variable font does not have an avar table.

    + [code: missing-avar] @@ -617,10 +452,10 @@ definitions.

    -
    [17] Samaano-Thin.ttf +
    [14] Samaano[wdth,wght].ttf
    - 🔥 FAIL Checking OS/2 usWinAscent & usWinDescent. + 🔥 FAIL Checking correctness of monospaced metadata.
    @@ -629,8 +464,14 @@ definitions.

    -* 🔥 **FAIL**

    OS/2.usWinDescent value should be equal or greater than 978, but got 958 instead

    - [code: descent] +* 🔥 **FAIL**

    On monospaced fonts, the value of post.isFixedPitch must be set to a non-zero value (meaning 'fixed width monospaced'), but got 0 instead.

    + [code: mono-bad-post-isFixedPitch] + + + +* ⚠️ **WARN**

    The OpenType spec recommends at https://learn.microsoft.com/en-us/typography/opentype/spec/recom#hhea-table that hhea.numberOfHMetrics be set to 3 but this font has 441 instead. +Please read https://github.com/fonttools/fonttools/issues/3014 to decide whether this makes sense for your font.

    + [code: bad-numberOfHMetrics] @@ -666,30 +507,6 @@ definitions.

    -
    -
    - -
    - ⚠️ WARN Checking correctness of monospaced metadata. -
    - - - - - - - -* ⚠️ **WARN**

    The OpenType spec recommends at https://learn.microsoft.com/en-us/typography/opentype/spec/recom#hhea-table that hhea.numberOfHMetrics be set to 3 but this font has 434 instead. -Please read https://github.com/fonttools/fonttools/issues/3014 to decide whether this makes sense for your font.

    - [code: bad-numberOfHMetrics] - - - -* ⚠️ **WARN**

    Font is monospaced but 3 glyphs (0.42%) have a different width. You should check the widths of: ['uni0308', 'uni030A', 'uni030B']

    - [code: mono-outliers] - - -
    @@ -704,30 +521,11 @@ Please read https:/ * ⚠️ **WARN**

    The following spacing glyphs may be in the GDEF mark glyph class by mistake: -acutecomb (U+0301), dotbelowcomb (U+0323), glyph094D (unencoded), gravecomb (U+0300), uni0304 (U+0304), uni0308 (U+0308), uni030A (U+030A), uni030B (U+030B), uni030C (U+030C), uni0326 (U+0326), uni0327 (U+0327), uni0328 (U+0328), uni0331 (U+0331), uni0930_uni094D.blwf (unencoded), uni0930_uni094D.rphf (unencoded), uni093A (U+093A), uni093C (U+093C), uni0945 (U+0945), uni0946 (U+0946), uni0947 (U+0947), uni0948 (U+0948), uni0951 (U+0951), uni0952 (U+0952), uni0953 (U+0953), uni0954 (U+0954), uni0955 (U+0955), uni0956 (U+0956), uni0957 (U+0957), uni0962 (U+0962) and uni0963 (U+0963)

    +uni0930_uni094D.blwf (unencoded), uni0930_uni094D.rphf (unencoded), uni093A (U+093A), uni093C (U+093C), uni0945 (U+0945), uni0946 (U+0946), uni0947 (U+0947), uni0948 (U+0948), uni0955 (U+0955), uni0956 (U+0956), uni0957 (U+0957), uni0962 (U+0962) and uni0963 (U+0963)

    [code: spacing-mark-glyphs] -
    -
    - -
    - ⚠️ WARN Check mark characters are in GDEF mark glyph class. -
    - - - - - - - -* ⚠️ **WARN**

    The following mark characters could be in the GDEF mark glyph class: -hookabovecomb (U+0309) and uni0305 (U+0305)

    - [code: mark-chars] - - -
    @@ -785,7 +583,7 @@ hookabovecomb (U+0309) and uni0305 (U+0305)

    - ⚠️ WARN Check if each glyph has the recommended amount of contours. + ⚠️ WARN Detect any interpolation issues in the font.
    @@ -794,191 +592,180 @@ hookabovecomb (U+0309) and uni0305 (U+0305)

    -* ⚠️ **WARN**

    This check inspects the glyph outlines and detects the total number of contours in each of them. The expected values are infered from the typical ammounts of contours observed in a large collection of reference font families. The divergences listed below may simply indicate a significantly different design on some of your glyphs. On the other hand, some of these may flag actual bugs in the font such as glyphs mapped to an incorrect codepoint. Please consider reviewing the design and codepoint assignment of these to make sure they are correct.

    -

    The following glyphs do not have the recommended number of contours:

    -
    - Glyph name: D	Contours detected: 1	Expected: 2
    -
    -- Glyph name: g	Contours detected: 1	Expected: 2 or 3
    -
    -- Glyph name: o	Contours detected: 1	Expected: 2
    +* ⚠️ **WARN** 

    Interpolation issues were found in the font:

    +
    - Contour order differs in glyph 'uni0926_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7] in wght=700,wdth=100, [6, 7, 0, 1, 2, 3, 4, 5] in wght=700,wdth=200.
     
    -- Glyph name: braceleft	Contours detected: 2	Expected: 1
    +- Contour order differs in glyph 'uni0946_uni0930_uni094D.abvs': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [3, 4, 5, 6, 0, 1, 2] in wght=700,wdth=200.
     
    -- Glyph name: ograve	Contours detected: 2	Expected: 3
    +- Contour order differs in glyph 'igrave': [0, 1, 2, 3] in wght=100,wdth=100, [0, 1, 3, 2] in wght=100,wdth=200.
     
    -- Glyph name: oacute	Contours detected: 2	Expected: 3
    +- Contour 3 start point differs in glyph 'igrave' between location wght=100,wdth=100 and location wght=100,wdth=200
     
    -- Glyph name: ocircumflex	Contours detected: 2	Expected: 3
    +- Contour order differs in glyph 'uni095E_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7] in wght=700,wdth=100, [6, 7, 0, 1, 2, 3, 4, 5] in wght=700,wdth=200.
     
    -- Glyph name: otilde	Contours detected: 2	Expected: 3
    +- Contour order differs in glyph 'uni092B_uni094D.haln': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [5, 6, 0, 1, 2, 3, 4] in wght=700,wdth=200.
     
    -- Glyph name: odieresis	Contours detected: 3	Expected: 4
    +- Contour order differs in glyph 'uni094C_uni0902.abvs': [0, 1, 2, 3, 4] in wght=700,wdth=100, [4, 0, 1, 2, 3] in wght=700,wdth=200.
     
    -- Glyph name: aogonek	Contours detected: 3	Expected: 2
    +- Contour order differs in glyph 'uni0922_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7, 8] in wght=700,wdth=100, [7, 8, 0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=200.
     
    -- Glyph name: Dcaron	Contours detected: 2	Expected: 3
    +- Contour order differs in glyph 'uni091E_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7] in wght=700,wdth=100, [6, 7, 0, 1, 2, 3, 4, 5] in wght=700,wdth=200.
     
    -- Glyph name: eogonek	Contours detected: 3	Expected: 2
    +- Contour order differs in glyph 'uni0918_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7] in wght=700,wdth=100, [6, 7, 0, 1, 2, 3, 4, 5] in wght=700,wdth=200.
     
    -- Glyph name: gcircumflex	Contours detected: 2	Expected: 3 or 4
    +- Contour 0 start point differs in glyph 'Hbar' between location wght=700,wdth=100 and location wght=700,wdth=200
     
    -- Glyph name: gbreve	Contours detected: 2	Expected: 3 or 4
    +- Contour 1 start point differs in glyph 'Hbar' between location wght=700,wdth=100 and location wght=700,wdth=200
     
    -- Glyph name: gdotaccent	Contours detected: 2	Expected: 3 or 4
    +- Contour 2 start point differs in glyph 'Hbar' between location wght=700,wdth=100 and location wght=700,wdth=200
     
    -- Glyph name: uni0123	Contours detected: 2	Expected: 3 or 4
    +- Contour 3 start point differs in glyph 'Hbar' between location wght=700,wdth=100 and location wght=700,wdth=200
     
    -- Glyph name: omacron	Contours detected: 2	Expected: 3
    +- Contour order differs in glyph 'uni0935_uni094D.haln': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [5, 6, 0, 1, 2, 3, 4] in wght=700,wdth=200.
     
    -- Glyph name: obreve	Contours detected: 2	Expected: 3
    +- Contour order differs in glyph 'uni091A_uni094D.haln': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [5, 6, 0, 1, 2, 3, 4] in wght=700,wdth=200.
     
    -- Glyph name: ohungarumlaut	Contours detected: 3	Expected: 4
    +- Contour order differs in glyph 'uni095B_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7, 8] in wght=700,wdth=100, [7, 8, 0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=200.
     
    -- Glyph name: Uogonek	Contours detected: 2	Expected: 1
    +- Contour order differs in glyph 'uni0925_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7, 8] in wght=700,wdth=100, [7, 8, 0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=200.
     
    -- Glyph name: uogonek	Contours detected: 2	Expected: 1
    +- Contour 0 start point differs in glyph 'hbar' between location wght=700,wdth=100 and location wght=700,wdth=200
     
    -- Glyph name: uni01C4	Contours detected: 3	Expected: 4
    +- Contour 1 start point differs in glyph 'hbar' between location wght=700,wdth=100 and location wght=700,wdth=200
     
    -- Glyph name: uni01C5	Contours detected: 3	Expected: 4
    +- Contour 2 start point differs in glyph 'hbar' between location wght=700,wdth=100 and location wght=700,wdth=200
     
    -- Glyph name: uni0910	Contours detected: 2	Expected: 1
    +- Contour 3 start point differs in glyph 'hbar' between location wght=700,wdth=100 and location wght=700,wdth=200
     
    -- Glyph name: uni091B	Contours detected: 1	Expected: 2
    +- Contour order differs in glyph 'uni0947_uni0902.abvs': [0, 1, 2] in wght=700,wdth=100, [2, 0, 1] in wght=700,wdth=200.
     
    -- Glyph name: uni092D	Contours detected: 2	Expected: 1
    +- Contour order differs in glyph 'uni0945_uni0930_uni094D.abvs': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [3, 4, 5, 6, 0, 1, 2] in wght=700,wdth=200.
     
    -- Glyph name: uni092E	Contours detected: 3	Expected: 2
    +- Contour order differs in glyph 'uni0934_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7, 8] in wght=700,wdth=100, [6, 8, 0, 1, 2, 3, 4, 5, 7] in wght=700,wdth=200.
     
    -- Glyph name: uni093D	Contours detected: 2	Expected: 1
    +- Contour order differs in glyph 'uni0933_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7] in wght=700,wdth=100, [6, 7, 0, 1, 2, 3, 4, 5] in wght=700,wdth=200.
     
    -- Glyph name: uni0945	Contours detected: 2	Expected: 1
    +- Contour order differs in glyph 'sacute': [0, 1, 2, 3, 4, 5] in wght=100,wdth=100, [0, 5, 2, 3, 4, 1] in wght=100,wdth=200.
     
    -- Glyph name: uni0955	Contours detected: 3	Expected: 2
    +- Contour order differs in glyph 'lacute': [0, 1, 2, 3] in wght=100,wdth=100, [0, 1, 3, 2] in wght=100,wdth=200.
     
    -- Glyph name: uni0956	Contours detected: 2	Expected: 1
    +- Contour order differs in glyph 'uni095C_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10] in wght=700,wdth=100, [8, 10, 0, 1, 2, 3, 4, 5, 6, 7, 9] in wght=700,wdth=200.
     
    -- Glyph name: uni0957	Contours detected: 3	Expected: 2
    +- Contour order differs in glyph 'uni0948_uni0930_uni094D.abvs': [0, 1, 2, 3, 4, 5] in wght=700,wdth=100, [3, 4, 5, 0, 1, 2] in wght=700,wdth=200.
     
    -- Glyph name: uni0962	Contours detected: 2	Expected: 1
    +- Contour order differs in glyph 'uni095D_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] in wght=700,wdth=100, [7, 9, 0, 1, 2, 3, 4, 5, 6, 8] in wght=700,wdth=200.
     
    -- Glyph name: uni0963	Contours detected: 2	Expected: 1
    +- Contour order differs in glyph 'uni0932_uni094D.haln': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [5, 6, 0, 1, 2, 3, 4] in wght=700,wdth=200.
     
    -- Glyph name: uni0967	Contours detected: 2	Expected: 1
    +- Contour order differs in glyph 'uni0924_uni094D.haln': [0, 1, 2, 3, 4, 5] in wght=700,wdth=100, [4, 5, 0, 1, 2, 3] in wght=700,wdth=200.
     
    -- Glyph name: uni0970	Contours detected: 1	Expected: 2
    +- Contour order differs in glyph 'uni092F_uni094D.haln': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [5, 6, 0, 1, 2, 3, 4] in wght=700,wdth=200.
     
    -- Glyph name: uni097F	Contours detected: 2	Expected: 3
    +- Contour order differs in glyph 'uni0938_uni094D.haln': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [5, 6, 0, 1, 2, 3, 4] in wght=700,wdth=200.
     
    -- Glyph name: uni1E0C	Contours detected: 2	Expected: 3
    +- Contour order differs in glyph 'uni0949_uni0902.abvs': [0, 1, 2, 3, 4, 5] in wght=700,wdth=100, [5, 0, 1, 2, 3, 4] in wght=700,wdth=200.
     
    -- Glyph name: uni1E4D	Contours detected: 3	Expected: 4
    +- Contour order differs in glyph 'uni0921_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] in wght=700,wdth=100, [8, 9, 0, 1, 2, 3, 4, 5, 6, 7] in wght=700,wdth=200.
     
    -- Glyph name: uni25CC	Contours detected: 8	Expected: 16 or 12
    +- Contour order differs in glyph 'uni095F_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7] in wght=700,wdth=100, [5, 7, 0, 1, 2, 3, 4, 6] in wght=700,wdth=200.
     
    -- Glyph name: D	Contours detected: 1	Expected: 2
    +- Contour order differs in glyph 'uni0946_uni0902.abvs': [0, 1, 2, 3, 4] in wght=700,wdth=100, [4, 0, 1, 2, 3] in wght=700,wdth=200.
     
    -- Glyph name: Dcaron	Contours detected: 2	Expected: 3
    +- Contour order differs in glyph 'uni0940_uni0930_uni094D.abvs': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [3, 4, 5, 6, 0, 1, 2] in wght=700,wdth=200.
     
    -- Glyph name: Uogonek	Contours detected: 2	Expected: 1
    +- Contour order differs in glyph 'uni094C_uni0930_uni094D.abvs': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [3, 4, 5, 6, 0, 1, 2] in wght=700,wdth=200.
     
    -- Glyph name: aogonek	Contours detected: 3	Expected: 2
    +- Contour order differs in glyph 'uni0931_uni094D.haln': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [4, 6, 0, 1, 2, 3, 5] in wght=700,wdth=200.
     
    -- Glyph name: braceleft	Contours detected: 2	Expected: 1
    +- Contour order differs in glyph 'uni0917_uni094D.haln': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [5, 6, 0, 1, 2, 3, 4] in wght=700,wdth=200.
     
    -- Glyph name: eogonek	Contours detected: 3	Expected: 2
    +- Contour order differs in glyph 'uni0940_uni0902.abvs': [0, 1, 2, 3, 4] in wght=700,wdth=100, [4, 0, 1, 2, 3] in wght=700,wdth=200.
     
    -- Glyph name: g	Contours detected: 1	Expected: 2 or 3
    +- Contour 0 start point differs in glyph 'endash' between location wght=700,wdth=100 and location wght=700,wdth=200
     
    -- Glyph name: gbreve	Contours detected: 2	Expected: 3 or 4
    +- Contour order differs in glyph 'uni0958_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] in wght=700,wdth=100, [7, 9, 0, 1, 2, 3, 4, 5, 6, 8] in wght=700,wdth=200.
     
    -- Glyph name: gcircumflex	Contours detected: 2	Expected: 3 or 4
    +- Contour order differs in glyph 'imacron': [0, 1, 2, 3] in wght=100,wdth=100, [0, 1, 3, 2] in wght=100,wdth=200.
     
    -- Glyph name: gdotaccent	Contours detected: 2	Expected: 3 or 4
    +- Contour order differs in glyph 'uogonek': [0, 1, 2, 3, 4, 5] in wght=700,wdth=100, [1, 5, 3, 4, 0, 2] in wght=700,wdth=200.
     
    -- Glyph name: o	Contours detected: 1	Expected: 2
    +- Contour order differs in glyph 'uni091D_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10] in wght=700,wdth=100, [9, 10, 0, 1, 2, 3, 4, 5, 6, 7, 8] in wght=700,wdth=200.
     
    -- Glyph name: oacute	Contours detected: 2	Expected: 3
    +- Contour order differs in glyph 'uni092D_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] in wght=700,wdth=100, [8, 9, 0, 1, 2, 3, 4, 5, 6, 7] in wght=700,wdth=200.
     
    -- Glyph name: ocircumflex	Contours detected: 2	Expected: 3
    +- Contour order differs in glyph 'uni091C_uni094D_uni091E_uni094D': [0, 1, 2, 3, 4, 5, 6, 7] in wght=700,wdth=100, [6, 7, 0, 1, 2, 3, 4, 5] in wght=700,wdth=200.
     
    -- Glyph name: odieresis	Contours detected: 3	Expected: 4
    +- Contour order differs in glyph 'uni094B_uni0930_uni094D.abvs': [0, 1, 2, 3, 4, 5] in wght=700,wdth=100, [3, 4, 5, 0, 1, 2] in wght=700,wdth=200.
     
    -- Glyph name: ograve	Contours detected: 2	Expected: 3
    +- Contour order differs in glyph 'uni091B_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10] in wght=700,wdth=100, [9, 10, 0, 1, 2, 3, 4, 5, 6, 7, 8] in wght=700,wdth=200.
     
    -- Glyph name: ohungarumlaut	Contours detected: 3	Expected: 4
    +- Contour order differs in glyph 'iacute': [0, 1, 2, 3] in wght=100,wdth=100, [0, 1, 3, 2] in wght=100,wdth=200.
     
    -- Glyph name: omacron	Contours detected: 2	Expected: 3
    +- Contour order differs in glyph 'uni0929_uni094D.haln': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [4, 6, 0, 1, 2, 3, 5] in wght=700,wdth=200.
     
    -- Glyph name: otilde	Contours detected: 2	Expected: 3
    +- Contour order differs in glyph 'uni0916_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] in wght=700,wdth=100, [8, 9, 0, 1, 2, 3, 4, 5, 6, 7] in wght=700,wdth=200.
     
    -- Glyph name: uni0123	Contours detected: 2	Expected: 3 or 4
    +- Contour order differs in glyph 'uni0930_uni094D.haln': [0, 1, 2, 3, 4, 5] in wght=700,wdth=100, [4, 5, 0, 1, 2, 3] in wght=700,wdth=200.
     
    -- Glyph name: uni01C4	Contours detected: 3	Expected: 4
    +- Contour order differs in glyph 'uni0915_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7, 8] in wght=700,wdth=100, [7, 8, 0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=200.
     
    -- Glyph name: uni01C5	Contours detected: 3	Expected: 4
    +- Contour order differs in glyph 'uni092E_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7] in wght=700,wdth=100, [6, 7, 0, 1, 2, 3, 4, 5] in wght=700,wdth=200.
     
    -- Glyph name: uni0910	Contours detected: 2	Expected: 1
    +- Contour order differs in glyph 'uni0920_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7] in wght=700,wdth=100, [6, 7, 0, 1, 2, 3, 4, 5] in wght=700,wdth=200.
     
    -- Glyph name: uni091B	Contours detected: 1	Expected: 2
    +- Contour order differs in glyph 'uni0928_uni094D.haln': [0, 1, 2, 3, 4, 5] in wght=700,wdth=100, [4, 5, 0, 1, 2, 3] in wght=700,wdth=200.
     
    -- Glyph name: uni092D	Contours detected: 2	Expected: 1
    +- Contour order differs in glyph 'Eogonek': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [0, 1, 6, 3, 4, 5, 2] in wght=700,wdth=200.
     
    -- Glyph name: uni092E	Contours detected: 3	Expected: 2
    +- Contour order differs in glyph 'uni0947_uni0930_uni094D.abvs': [0, 1, 2, 3, 4] in wght=700,wdth=100, [3, 4, 0, 1, 2] in wght=700,wdth=200.
     
    -- Glyph name: uni093D	Contours detected: 2	Expected: 1
    +- Contour order differs in glyph 'uni0919_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10] in wght=700,wdth=100, [9, 10, 0, 1, 2, 3, 4, 5, 6, 7, 8] in wght=700,wdth=200.
     
    -- Glyph name: uni0945	Contours detected: 2	Expected: 1
    +- Contour order differs in glyph 'uni0923_uni094D.haln': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [5, 6, 0, 1, 2, 3, 4] in wght=700,wdth=200.
     
    -- Glyph name: uni0955	Contours detected: 3	Expected: 2
    +- Contour order differs in glyph 'uni0959_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10] in wght=700,wdth=100, [8, 10, 0, 1, 2, 3, 4, 5, 6, 7, 9] in wght=700,wdth=200.
     
    -- Glyph name: uni0956	Contours detected: 2	Expected: 1
    +- Contour order differs in glyph 'uni0949_uni0930_uni094D.abvs': [0, 1, 2, 3, 4, 5, 6, 7] in wght=700,wdth=100, [3, 4, 5, 6, 7, 0, 1, 2] in wght=700,wdth=200.
     
    -- Glyph name: uni0957	Contours detected: 3	Expected: 2
    +- Contour order differs in glyph 'uni0937_uni094D.haln': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [5, 6, 0, 1, 2, 3, 4] in wght=700,wdth=200.
     
    -- Glyph name: uni0962	Contours detected: 2	Expected: 1
    +- Contour order differs in glyph 'uni094B_uni0902.abvs': [0, 1, 2, 3] in wght=700,wdth=100, [3, 0, 1, 2] in wght=700,wdth=200.
     
    -- Glyph name: uni0963	Contours detected: 2	Expected: 1
    +- Contour order differs in glyph 'itilde': [0, 1, 2, 3, 4, 5] in wght=100,wdth=100, [0, 1, 3, 4, 2, 5] in wght=100,wdth=200.
     
    -- Glyph name: uni0967	Contours detected: 2	Expected: 1
    +- Contour order differs in glyph 'uni0915_uni094D_uni0937_uni094D': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10] in wght=700,wdth=100, [9, 10, 0, 1, 2, 3, 4, 5, 6, 7, 8] in wght=700,wdth=200.
     
    -- Glyph name: uni0970	Contours detected: 1	Expected: 2
    +- Contour order differs in glyph 'uni094A_uni0902.abvs': [0, 1, 2, 3, 4, 5] in wght=700,wdth=100, [5, 0, 1, 2, 3, 4] in wght=700,wdth=200.
     
    -- Glyph name: uni097F	Contours detected: 2	Expected: 3
    +- Contour order differs in glyph 'uni091F_uni094D.haln': [0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=100, [5, 6, 0, 1, 2, 3, 4] in wght=700,wdth=200.
     
    -- Glyph name: uni1E0C	Contours detected: 2	Expected: 3
    +- Contour order differs in glyph 'Uogonek': [0, 1, 2, 3, 4, 5] in wght=700,wdth=100, [0, 1, 5, 3, 4, 2] in wght=700,wdth=200.
     
    -- Glyph name: uni1E4D	Contours detected: 3	Expected: 4
    +- Contour order differs in glyph 'Uogonek': [0, 1, 2, 3, 4, 5] in wght=700,wdth=200, [0, 1, 5, 3, 4, 2] in wght=100,wdth=100.
     
    -- Glyph name: uni25CC	Contours detected: 8	Expected: 16 or 12
    +- Contour order differs in glyph 'uni092C_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7] in wght=700,wdth=100, [6, 7, 0, 1, 2, 3, 4, 5] in wght=700,wdth=200.
     
    -- Glyph name: uogonek	Contours detected: 2	Expected: 1
    -
    - [code: contour-count] - - - -
    -
    - -
    - ⚠️ WARN Check font contains no unreachable glyphs -
    +- Contour order differs in glyph 'uni094A_uni0930_uni094D.abvs': [0, 1, 2, 3, 4, 5, 6, 7] in wght=700,wdth=100, [3, 4, 5, 6, 7, 0, 1, 2] in wght=700,wdth=200. +- Contour order differs in glyph 'uni093E_uni0930_uni094D.abvs': [0, 1, 2, 3, 4] in wght=700,wdth=100, [3, 4, 0, 1, 2] in wght=700,wdth=200. +- Contour order differs in glyph 'uni0948_uni0902.abvs': [0, 1, 2, 3] in wght=700,wdth=100, [3, 0, 1, 2] in wght=700,wdth=200. +- Contour order differs in glyph 'uni092A_uni094D.haln': [0, 1, 2, 3, 4, 5] in wght=700,wdth=100, [4, 5, 0, 1, 2, 3] in wght=700,wdth=200. +- Contour order differs in glyph 'uni0927_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7, 8] in wght=700,wdth=100, [7, 8, 0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=200. +- Contour order differs in glyph 'uni091C_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7] in wght=700,wdth=100, [6, 7, 0, 1, 2, 3, 4, 5] in wght=700,wdth=200. +- Contour order differs in glyph 'uni0945_uni0902.abvs': [0, 1, 2, 3, 4] in wght=700,wdth=100, [4, 0, 1, 2, 3] in wght=700,wdth=200. -* ⚠️ **WARN**

    The following glyphs could not be reached by codepoint or substitution rules:

    -
    - glyph094D
    +- Contour order differs in glyph 'uni0936_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7, 8] in wght=700,wdth=100, [7, 8, 0, 1, 2, 3, 4, 5, 6] in wght=700,wdth=200.
     
    -- uni0930_uni094D.abvs
    +- Contour order differs in glyph 'uni095A_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7] in wght=700,wdth=100, [6, 7, 0, 1, 2, 3, 4, 5] in wght=700,wdth=200.
     
    -- uni0930_uni094D.vatu
    +- Contour order differs in glyph 'uni0939_uni094D.haln': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] in wght=700,wdth=100, [8, 9, 0, 1, 2, 3, 4, 5, 6, 7] in wght=700,wdth=200.
     
    - [code: unreachable-glyphs] + [code: interpolation-issues] @@ -995,7 +782,7 @@ hookabovecomb (U+0309) and uni0305 (U+0305)

    -* ⚠️ **WARN**

    Family metadata at fonts/ttf does not have an article.

    +* ⚠️ **WARN**

    Family metadata at fonts/variable does not have an article.

    [code: lacks-article] @@ -1022,17 +809,17 @@ definitions.

  • U+02D8 BREVE: try adding one of: canadian-aboriginal, yi
  • U+02D9 DOT ABOVE: try adding one of: canadian-aboriginal, yi
  • U+02DB OGONEK: try adding one of: canadian-aboriginal, yi
  • -
  • U+0302 COMBINING CIRCUMFLEX ACCENT: try adding one of: math, tifinagh, coptic, cherokee
  • -
  • U+0305 COMBINING OVERLINE: try adding one of: coptic, glagolitic, gothic, elbasan, math
  • +
  • U+0302 COMBINING CIRCUMFLEX ACCENT: try adding one of: math, coptic, cherokee, tifinagh
  • +
  • U+0305 COMBINING OVERLINE: try adding one of: elbasan, math, glagolitic, gothic, coptic
  • U+0306 COMBINING BREVE: try adding one of: old-permic, tifinagh
  • -
  • U+0307 COMBINING DOT ABOVE: try adding one of: duployan, malayalam, hebrew, old-permic, todhri, tai-le, coptic, tifinagh, math, syriac, canadian-aboriginal
  • -
  • U+030A COMBINING RING ABOVE: try adding one of: duployan, syriac
  • -
  • U+030B COMBINING DOUBLE ACUTE ACCENT: try adding one of: cherokee, osage
  • -
  • U+030C COMBINING CARON: try adding one of: tai-le, cherokee
  • +
  • U+0307 COMBINING DOT ABOVE: try adding one of: canadian-aboriginal, duployan, tifinagh, hebrew, math, coptic, malayalam, old-permic, syriac, todhri, tai-le
  • +
  • U+030A COMBINING RING ABOVE: try adding one of: syriac, duployan
  • +
  • U+030B COMBINING DOUBLE ACUTE ACCENT: try adding one of: osage, cherokee
  • +
  • U+030C COMBINING CARON: try adding one of: cherokee, tai-le
  • U+0326 COMBINING COMMA BELOW: try adding math
  • U+0327 COMBINING CEDILLA: try adding math
  • U+0328 COMBINING OGONEK: not included in any glyphset definition
  • -
  • U+0331 COMBINING MACRON BELOW: try adding one of: gothic, thai, tifinagh, caucasian-albanian, syriac, sunuwar, cherokee
  • +
  • U+0331 COMBINING MACRON BELOW: try adding one of: caucasian-albanian, thai, gothic, sunuwar, syriac, cherokee, tifinagh
  • U+2021 DOUBLE DAGGER: try adding adlam
  • U+2030 PER MILLE SIGN: try adding adlam
  • U+FB01 LATIN SMALL LIGATURE FI: not included in any glyphset definition
  • @@ -1059,7 +846,7 @@ definitions.

    * ⚠️ **WARN**

    The dot of soft dotted characters used in orthographies must disappear in the following strings: i̊ i̋ j̀ j́ j̃ j̄ j̈ į̀ į́ į̂ į̃ į̄ į̌

    The dot of soft dotted characters should disappear in other cases, for example: i̅ i̇ ỉ ǐ ị̅ ị̇ ị̉ ị̊ ị̋ ị̌ i̦̅ i̦̇ ỉ̦ i̦̊ i̦̋ ǐ̦ i̧̅ i̧̇ ỉ̧ i̧̊

    Your font fully covers the following languages that require the soft-dotted feature: Lithuanian (Latn, 2,357,094 speakers).

    -

    Your font does not cover the following languages that require the soft-dotted feature: Nzakara (Latn, 50,000 speakers), Bete-Bendi (Latn, 100,000 speakers), Makaa (Latn, 221,000 speakers), Ejagham (Latn, 120,000 speakers), Igbo (Latn, 27,823,640 speakers), Zapotec (Latn, 490,000 speakers), Aghem (Latn, 38,843 speakers), Yala (Latn, 200,000 speakers), Ukrainian (Cyrl, 29,273,587 speakers), Sar (Latn, 500,000 speakers), Koonzime (Latn, 40,000 speakers), Mundani (Latn, 34,000 speakers), Dutch (Latn, 31,709,104 speakers), Ngbaka (Latn, 1,020,000 speakers), Ekpeye (Latn, 226,000 speakers), Avokaya (Latn, 100,000 speakers), Mango (Latn, 77,000 speakers), Southern Kisi (Latn, 360,000 speakers), Gulay (Latn, 250,478 speakers), Cicipu (Latn, 44,000 speakers), Basaa (Latn, 332,940 speakers), Dii (Latn, 71,000 speakers), South Central Banda (Latn, 244,000 speakers), Lugbara (Latn, 2,200,000 speakers), Navajo (Latn, 166,319 speakers), Nateni (Latn, 100,000 speakers), Kom (Latn, 360,685 speakers), Belarusian (Cyrl, 10,064,517 speakers), Ma’di (Latn, 584,000 speakers), Ebira (Latn, 2,200,000 speakers), Mfumte (Latn, 79,000 speakers), Bafut (Latn, 158,146 speakers), Vute (Latn, 21,000 speakers), Kpelle, Guinea (Latn, 622,000 speakers), Fur (Latn, 1,230,163 speakers), Ijo, Southeast (Latn, 2,471,000 speakers), Dan (Latn, 1,099,244 speakers).

    +

    Your font does not cover the following languages that require the soft-dotted feature: Kpelle, Guinea (Latn, 622,000 speakers), Mundani (Latn, 34,000 speakers), Nzakara (Latn, 50,000 speakers), Sar (Latn, 500,000 speakers), Ejagham (Latn, 120,000 speakers), Mfumte (Latn, 79,000 speakers), Southern Kisi (Latn, 360,000 speakers), Bete-Bendi (Latn, 100,000 speakers), Makaa (Latn, 221,000 speakers), Ngbaka (Latn, 1,020,000 speakers), Aghem (Latn, 38,843 speakers), Dii (Latn, 71,000 speakers), Lugbara (Latn, 2,200,000 speakers), Nateni (Latn, 100,000 speakers), Ijo, Southeast (Latn, 2,471,000 speakers), Zapotec (Latn, 490,000 speakers), Mango (Latn, 77,000 speakers), Ma’di (Latn, 584,000 speakers), Bafut (Latn, 158,146 speakers), Vute (Latn, 21,000 speakers), Belarusian (Cyrl, 10,064,517 speakers), Igbo (Latn, 27,823,640 speakers), Dutch (Latn, 31,709,104 speakers), Gulay (Latn, 250,478 speakers), Avokaya (Latn, 100,000 speakers), Kom (Latn, 360,685 speakers), Basaa (Latn, 332,940 speakers), Cicipu (Latn, 44,000 speakers), Fur (Latn, 1,230,163 speakers), Navajo (Latn, 166,319 speakers), Ebira (Latn, 2,200,000 speakers), Ukrainian (Cyrl, 29,273,587 speakers), Ekpeye (Latn, 226,000 speakers), Koonzime (Latn, 40,000 speakers), Dan (Latn, 1,099,244 speakers), South Central Banda (Latn, 244,000 speakers), Yala (Latn, 200,000 speakers).

    [code: soft-dotted] @@ -1068,7 +855,7 @@ definitions.

    - ⚠️ WARN Do any segments have colinear vectors? + ⚠️ WARN Are there any misaligned on-curve points?
    @@ -1077,36 +864,28 @@ definitions.

    -* ⚠️ **WARN**

    The following glyphs have colinear vectors:

    -
    * a (U+0061): L<<168.0,1024.0>--<817.0,1023.0>> -> L<<817.0,1023.0>--<856.0,1023.0>>
    -
    -* aacute (U+00E1): L<<168.0,1024.0>--<817.0,1023.0>> -> L<<817.0,1023.0>--<856.0,1023.0>>
    -
    -* abreve (U+0103): L<<168.0,1024.0>--<817.0,1023.0>> -> L<<817.0,1023.0>--<856.0,1023.0>>
    -
    -* acircumflex (U+00E2): L<<168.0,1024.0>--<817.0,1023.0>> -> L<<817.0,1023.0>--<856.0,1023.0>>
    -
    -* adieresis (U+00E4): L<<168.0,1024.0>--<817.0,1023.0>> -> L<<817.0,1023.0>--<856.0,1023.0>>
    +* ⚠️ **WARN** 

    The following glyphs have on-curve points which have potentially incorrect y coordinates:

    +
    * Eng (U+014A): X=112.0,Y=1550.0 (should be at cap-height 1548?)
     
    -* agrave (U+00E0): L<<168.0,1024.0>--<817.0,1023.0>> -> L<<817.0,1023.0>--<856.0,1023.0>>
    +* Eng (U+014A): X=911.0,Y=1550.0 (should be at cap-height 1548?)
     
    -* amacron (U+0101): L<<168.0,1024.0>--<817.0,1023.0>> -> L<<817.0,1023.0>--<856.0,1023.0>>
    +* uni0162 (U+0162): X=62.0,Y=-617.0 (should be at descender -615?)
     
    -* aogonek (U+0105): L<<168.0,1024.0>--<817.0,1023.0>> -> L<<817.0,1023.0>--<856.0,1023.0>>
    +* uni0162 (U+0162): X=-90.0,Y=-617.0 (should be at descender -615?)
     
    -* aring (U+00E5): L<<168.0,1024.0>--<817.0,1023.0>> -> L<<817.0,1023.0>--<856.0,1023.0>>
    +* uni01C4 (U+01C4): X=213.0,Y=1550.0 (should be at cap-height 1548?)
     
    -* atilde (U+00E3): L<<168.0,1024.0>--<817.0,1023.0>> -> L<<817.0,1023.0>--<856.0,1023.0>>
    +* uni01C4 (U+01C4): X=213.0,Y=1549.0 (should be at cap-height 1548?)
     
    -* uni0944 (U+0944): L<<-210.0,-942.0>--<-220.0,-945.0>> -> L<<-220.0,-945.0>--<-228.0,-947.0>>
    +* uni01C4 (U+01C4): X=132.0,Y=1549.0 (should be at cap-height 1548?)
     
    -* uni094F (U+094F): L<<134.0,2066.0>--<143.0,2105.0>> -> L<<143.0,2105.0>--<187.0,2323.0>>
    +* uni01C5 (U+01C5): X=214.0,Y=1550.0 (should be at cap-height 1548?)
     
    -* uni094F (U+094F): L<<722.0,1934.0>--<162.0,2060.0>> -> L<<162.0,2060.0>--<135.0,2064.0>>
    +* uni01C5 (U+01C5): X=214.0,Y=1549.0 (should be at cap-height 1548?)
     
    -* uni0975 (U+0975): L<<439.0,2080.0>--<433.0,2083.0>> -> L<<433.0,2083.0>--<428.0,2086.0>>
    +* uni01C5 (U+01C5): X=133.0,Y=1549.0 (should be at cap-height 1548?)
     
    - [code: found-colinear-vectors] + [code: found-misalignments] @@ -1114,7 +893,7 @@ definitions.

    - ⚠️ WARN Do outlines contain any jaggy segments? + ⚠️ WARN Check the direction of the outermost contour in each glyph
    @@ -1123,56 +902,44 @@ definitions.

    -* ⚠️ **WARN**

    The following glyphs have jaggy segments:

    -
    * uni0913 (U+0913): L<<846.0,1550.0>--<842.0,1549.0>>/L<<842.0,1549.0>--<1024.0,1549.0>> = 14.036243467926484
    -
    -* uni093D (U+093D): L<<455.0,104.0>--<457.0,127.0>>/L<<457.0,127.0>--<454.0,107.0>> = 3.561024881837821
    -
    -* uni0944 (U+0944): L<<-220.0,-945.0>--<-228.0,-947.0>>/L<<-228.0,-947.0>--<-228.0,-947.0>> = 14.036243467926484
    -
    -* uni0968 (U+0968): L<<221.0,486.0>--<239.0,488.0>>/L<<239.0,488.0>--<224.0,488.0>> = 6.340191745909908
    -
    - [code: found-jaggy-segments] - +* ⚠️ **WARN**

    The following glyphs have a counter-clockwise outer contour:

    +
    * Hbar (U+0126) has a counter-clockwise outer contour
     
    +* Hbar (U+0126) has a counter-clockwise outer contour
     
    -
    -
    - -
    - ⚠️ WARN Do outlines contain any semi-vertical or semi-horizontal lines? -
    +* Hbar (U+0126) has a counter-clockwise outer contour +* Hbar (U+0126) has a counter-clockwise outer contour +* endash (U+2013) has a counter-clockwise outer contour +* hbar (U+0127) has a counter-clockwise outer contour +* hbar (U+0127) has a counter-clockwise outer contour +* hbar (U+0127) has a counter-clockwise outer contour +* hbar (U+0127) has a counter-clockwise outer contour + + [code: ccw-outer-contour] -* ⚠️ **WARN**

    The following glyphs have semi-vertical/semi-horizontal lines:

    -
    * a (U+0061): L<<168.0,1024.0>--<817.0,1023.0>>
     
    -* aacute (U+00E1): L<<168.0,1024.0>--<817.0,1023.0>>
     
    -* abreve (U+0103): L<<168.0,1024.0>--<817.0,1023.0>>
    +
    +
    -* acircumflex (U+00E2): L<<168.0,1024.0>--<817.0,1023.0>> +
    + ⚠️ WARN Ensure variable fonts include an avar table. +
    -* adieresis (U+00E4): L<<168.0,1024.0>--<817.0,1023.0>> -* agrave (U+00E0): L<<168.0,1024.0>--<817.0,1023.0>> -* amacron (U+0101): L<<168.0,1024.0>--<817.0,1023.0>> -* aogonek (U+0105): L<<168.0,1024.0>--<817.0,1023.0>> -* aring (U+00E5): L<<168.0,1024.0>--<817.0,1023.0>> -* atilde (U+00E3): L<<168.0,1024.0>--<817.0,1023.0>> -* exclamdown (U+00A1): L<<538.0,1035.0>--<542.0,17.0>> - - [code: found-semi-vertical] +* ⚠️ **WARN**

    This variable font does not have an avar table.

    + [code: missing-avar] @@ -1217,66 +984,10 @@ definitions.

    -
    [21] Samaano-Wide-Bold.ttf +
    [1] Family checks
    - 🔥 FAIL Checking correctness of monospaced metadata. -
    - - - - - - - -* 🔥 **FAIL**

    On monospaced fonts, the value of post.isFixedPitch must be set to a non-zero value (meaning 'fixed width monospaced'), but got 0 instead.

    - [code: mono-bad-post-isFixedPitch] - - - -* ⚠️ **WARN**

    The OpenType spec recommends at https://learn.microsoft.com/en-us/typography/opentype/spec/recom#hhea-table that hhea.numberOfHMetrics be set to 3 but this font has 434 instead. -Please read https://github.com/fonttools/fonttools/issues/3014 to decide whether this makes sense for your font.

    - [code: bad-numberOfHMetrics] - - - -
    -
    - -
    - 🔥 FAIL Ensure the font supports case swapping for all its glyphs. -
    - - - - - - - -* 🔥 **FAIL**

    The following glyphs lack their case-swapping counterparts:

    - - - - - - - - - - - - - -
    Glyph present in the fontMissing case-swapping counterpart
    U+0189: LATIN CAPITAL LETTER AFRICAN DU+0256: LATIN SMALL LETTER D WITH TAIL
    - [code: missing-case-counterparts] - - - -
    -
    - -
    - 🔥 FAIL Checking OS/2 usWinAscent & usWinDescent. + 🔥 FAIL Ensure VFs have 'ital' STAT axis. -
    - -
    - 🔥 FAIL Shapes languages in all GF glyphsets. -
    - - - - - - - -* 🔥 **FAIL**

    GF_Latin_Core glyphset:

    - - - - - - - - - - - - - -
    LanguageFAIL messages
    nl_Latn (Dutch)Shaper didn't attach acutecomb to j
    - [code: failed-language-shaping] - - - -
    -
    - -
    - 🔥 FAIL Check family name for GF Guide compliance. -
    - - - - - - - -* 🔥 **FAIL**

    "Samaano Wide-Bold" contains the following characters which are not allowed: "-".

    - [code: forbidden-characters] - - - -
    -
    - -
    - 🔥 FAIL Checking file is named canonically. -
    - - - - - - - -* 🔥 **FAIL**

    Expected "SamaanoWide-Bold-Regular.ttf. Got Samaano-Wide-Bold.ttf.

    - [code: bad-filename] - - - -
    -
    - -
    - ⚠️ WARN Check glyphs in mark glyph class are non-spacing. -
    - - - - - - - -* ⚠️ **WARN**

    The following spacing glyphs may be in the GDEF mark glyph class by mistake: -glyph094D (unencoded), uni0930_uni094D.blwf (unencoded), uni0930_uni094D.rphf (unencoded), uni093A (U+093A), uni093C (U+093C), uni0945 (U+0945), uni0946 (U+0946), uni0947 (U+0947), uni0948 (U+0948), uni0951 (U+0951), uni0952 (U+0952), uni0953 (U+0953), uni0954 (U+0954), uni0955 (U+0955), uni0956 (U+0956), uni0957 (U+0957), uni0962 (U+0962) and uni0963 (U+0963)

    - [code: spacing-mark-glyphs] - - - -
    -
    - -
    - ⚠️ WARN Check mark characters are in GDEF mark glyph class. -
    - - - - - - - -* ⚠️ **WARN**

    The following mark characters could be in the GDEF mark glyph class: -hookabovecomb (U+0309) and uni0305 (U+0305)

    - [code: mark-chars] - - - -
    -
    - -
    - ⚠️ WARN Does GPOS table have kerning information? This check skips monospaced fonts as defined by post.isFixedPitch value -
    - - - - - - - -* ⚠️ **WARN**

    GPOS table lacks kerning information.

    - [code: lacks-kern-info] - - - -
    -
    - -
    - ⚠️ WARN Check accent of Lcaron, dcaron, lcaron, tcaron -
    - - - - - - - - - -* ⚠️ **WARN**

    dcaron is decomposed and therefore could not be checked. Please check manually.

    - [code: decomposed-outline] - - - -* ⚠️ **WARN**

    Lcaron is decomposed and therefore could not be checked. Please check manually.

    - [code: decomposed-outline] - - - -* ⚠️ **WARN**

    lcaron is decomposed and therefore could not be checked. Please check manually.

    - [code: decomposed-outline] - - - -* ⚠️ **WARN**

    tcaron is decomposed and therefore could not be checked. Please check manually.

    - [code: decomposed-outline] - - - -
    -
    - -
    - ⚠️ WARN Check if each glyph has the recommended amount of contours. -
    - - - - - - - -* ⚠️ **WARN**

    This check inspects the glyph outlines and detects the total number of contours in each of them. The expected values are infered from the typical ammounts of contours observed in a large collection of reference font families. The divergences listed below may simply indicate a significantly different design on some of your glyphs. On the other hand, some of these may flag actual bugs in the font such as glyphs mapped to an incorrect codepoint. Please consider reviewing the design and codepoint assignment of these to make sure they are correct.

    -

    The following glyphs do not have the recommended number of contours:

    -
    - Glyph name: parenleft	Contours detected: 2	Expected: 1
    -
    -- Glyph name: Z	Contours detected: 2	Expected: 1
    -
    -- Glyph name: braceleft	Contours detected: 2	Expected: 1
    -
    -- Glyph name: mu	Contours detected: 2	Expected: 1
    -
    -- Glyph name: aogonek	Contours detected: 3	Expected: 2
    -
    -- Glyph name: eogonek	Contours detected: 3	Expected: 2
    -
    -- Glyph name: Uogonek	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uogonek	Contours detected: 2	Expected: 1
    -
    -- Glyph name: Zacute	Contours detected: 3	Expected: 2
    -
    -- Glyph name: Zdotaccent	Contours detected: 3	Expected: 2
    -
    -- Glyph name: Zcaron	Contours detected: 3	Expected: 2
    -
    -- Glyph name: uni01C4	Contours detected: 5	Expected: 4
    -
    -- Glyph name: uni0916	Contours detected: 2	Expected: 1 or 3
    -
    -- Glyph name: uni091B	Contours detected: 1	Expected: 2
    -
    -- Glyph name: uni092D	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni092E	Contours detected: 3	Expected: 2
    -
    -- Glyph name: uni093D	Contours detected: 3	Expected: 1
    -
    -- Glyph name: uni0945	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0955	Contours detected: 3	Expected: 2
    -
    -- Glyph name: uni0956	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0957	Contours detected: 3	Expected: 2
    -
    -- Glyph name: uni0959	Contours detected: 3	Expected: 2 or 4
    -
    -- Glyph name: uni0962	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0963	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0967	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0970	Contours detected: 1	Expected: 2
    -
    -- Glyph name: uni097F	Contours detected: 2	Expected: 3
    -
    -- Glyph name: uni25CC	Contours detected: 8	Expected: 16 or 12
    -
    -- Glyph name: Uogonek	Contours detected: 2	Expected: 1
    -
    -- Glyph name: Z	Contours detected: 2	Expected: 1
    -
    -- Glyph name: Zacute	Contours detected: 3	Expected: 2
    -
    -- Glyph name: Zcaron	Contours detected: 3	Expected: 2
    -
    -- Glyph name: Zdotaccent	Contours detected: 3	Expected: 2
    -
    -- Glyph name: aogonek	Contours detected: 3	Expected: 2
    -
    -- Glyph name: braceleft	Contours detected: 2	Expected: 1
    -
    -- Glyph name: eogonek	Contours detected: 3	Expected: 2
    -
    -- Glyph name: parenleft	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni01C4	Contours detected: 5	Expected: 4
    -
    -- Glyph name: uni0916	Contours detected: 2	Expected: 1 or 3
    -
    -- Glyph name: uni091B	Contours detected: 1	Expected: 2
    -
    -- Glyph name: uni092D	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni092E	Contours detected: 3	Expected: 2
    -
    -- Glyph name: uni093D	Contours detected: 3	Expected: 1
    -
    -- Glyph name: uni0945	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0955	Contours detected: 3	Expected: 2
    -
    -- Glyph name: uni0956	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0957	Contours detected: 3	Expected: 2
    -
    -- Glyph name: uni0959	Contours detected: 3	Expected: 2 or 4
    -
    -- Glyph name: uni0962	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0963	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0967	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0970	Contours detected: 1	Expected: 2
    -
    -- Glyph name: uni097F	Contours detected: 2	Expected: 3
    -
    -- Glyph name: uni25CC	Contours detected: 8	Expected: 16 or 12
    -
    -- Glyph name: uogonek	Contours detected: 2	Expected: 1
    -
    - [code: contour-count] - - - -
    -
    - -
    - ⚠️ WARN Check font contains no unreachable glyphs -
    - - - - - - - -* ⚠️ **WARN**

    The following glyphs could not be reached by codepoint or substitution rules:

    -
    - glyph094D
    -
    -- uni0930_uni094D.abvs
    -
    -- uni0930_uni094D.vatu
    -
    - [code: unreachable-glyphs] - - - -
    -
    - -
    - ⚠️ WARN Validate size, and resolution of article images, and ensure article page has minimum length and includes visual assets. -
    - - - - - - - -* ⚠️ **WARN**

    Family metadata at fonts/ttf does not have an article.

    - [code: lacks-article] - - - -
    -
    - -
    - ⚠️ WARN Check for codepoints not covered by METADATA subsets. -
    - - - - - - - -* ⚠️ **WARN**

    The following codepoints supported by the font are not covered by -any subsets defined in the font's metadata file, and will never -be served. You can solve this by either manually adding additional -subset declarations to METADATA.pb, or by editing the glyphset -definitions.

    -
      -
    • U+02D8 BREVE: try adding one of: canadian-aboriginal, yi
    • -
    • U+02D9 DOT ABOVE: try adding one of: canadian-aboriginal, yi
    • -
    • U+02DB OGONEK: try adding one of: canadian-aboriginal, yi
    • -
    • U+0302 COMBINING CIRCUMFLEX ACCENT: try adding one of: math, tifinagh, coptic, cherokee
    • -
    • U+0305 COMBINING OVERLINE: try adding one of: coptic, glagolitic, gothic, elbasan, math
    • -
    • U+0306 COMBINING BREVE: try adding one of: old-permic, tifinagh
    • -
    • U+0307 COMBINING DOT ABOVE: try adding one of: duployan, malayalam, hebrew, old-permic, todhri, tai-le, coptic, tifinagh, math, syriac, canadian-aboriginal
    • -
    • U+030A COMBINING RING ABOVE: try adding one of: duployan, syriac
    • -
    • U+030B COMBINING DOUBLE ACUTE ACCENT: try adding one of: cherokee, osage
    • -
    • U+030C COMBINING CARON: try adding one of: tai-le, cherokee
    • -
    • U+0326 COMBINING COMMA BELOW: try adding math
    • -
    • U+0327 COMBINING CEDILLA: try adding math
    • -
    • U+0328 COMBINING OGONEK: not included in any glyphset definition
    • -
    • U+0331 COMBINING MACRON BELOW: try adding one of: gothic, thai, tifinagh, caucasian-albanian, syriac, sunuwar, cherokee
    • -
    • U+2021 DOUBLE DAGGER: try adding adlam
    • -
    • U+2030 PER MILLE SIGN: try adding adlam
    • -
    • U+FB01 LATIN SMALL LIGATURE FI: not included in any glyphset definition
    • -
    • U+FB02 LATIN SMALL LIGATURE FL: not included in any glyphset definition
    • -
    -

    Or you can add the above codepoints to one of the subsets supported by the font: devanagari, latin, latin-ext

    - [code: unreachable-subsetting] - - - -
    -
    - -
    - ⚠️ WARN Ensure soft_dotted characters lose their dot when combined with marks that replace the dot. -
    - - - - - - - -* ⚠️ **WARN**

    The dot of soft dotted characters used in orthographies must disappear in the following strings: i̊ i̋ j̀ j́ j̃ j̄ j̈ į̀ į́ į̂ į̃ į̄ į̌

    -

    The dot of soft dotted characters should disappear in other cases, for example: i̅ i̇ ỉ ǐ ị̅ ị̇ ị̉ ị̊ ị̋ ị̌ i̦̅ i̦̇ ỉ̦ i̦̊ i̦̋ ǐ̦ i̧̅ i̧̇ ỉ̧ i̧̊

    -

    Your font fully covers the following languages that require the soft-dotted feature: Lithuanian (Latn, 2,357,094 speakers).

    -

    Your font does not cover the following languages that require the soft-dotted feature: Nzakara (Latn, 50,000 speakers), Bete-Bendi (Latn, 100,000 speakers), Makaa (Latn, 221,000 speakers), Ejagham (Latn, 120,000 speakers), Igbo (Latn, 27,823,640 speakers), Zapotec (Latn, 490,000 speakers), Aghem (Latn, 38,843 speakers), Yala (Latn, 200,000 speakers), Ukrainian (Cyrl, 29,273,587 speakers), Sar (Latn, 500,000 speakers), Koonzime (Latn, 40,000 speakers), Mundani (Latn, 34,000 speakers), Dutch (Latn, 31,709,104 speakers), Ngbaka (Latn, 1,020,000 speakers), Ekpeye (Latn, 226,000 speakers), Avokaya (Latn, 100,000 speakers), Mango (Latn, 77,000 speakers), Southern Kisi (Latn, 360,000 speakers), Gulay (Latn, 250,478 speakers), Cicipu (Latn, 44,000 speakers), Basaa (Latn, 332,940 speakers), Dii (Latn, 71,000 speakers), South Central Banda (Latn, 244,000 speakers), Lugbara (Latn, 2,200,000 speakers), Navajo (Latn, 166,319 speakers), Nateni (Latn, 100,000 speakers), Kom (Latn, 360,685 speakers), Belarusian (Cyrl, 10,064,517 speakers), Ma’di (Latn, 584,000 speakers), Ebira (Latn, 2,200,000 speakers), Mfumte (Latn, 79,000 speakers), Bafut (Latn, 158,146 speakers), Vute (Latn, 21,000 speakers), Kpelle, Guinea (Latn, 622,000 speakers), Fur (Latn, 1,230,163 speakers), Ijo, Southeast (Latn, 2,471,000 speakers), Dan (Latn, 1,099,244 speakers).

    - [code: soft-dotted] - - - -
    -
    - -
    - ⚠️ WARN Are there any misaligned on-curve points? -
    - - - - - - - -* ⚠️ **WARN**

    The following glyphs have on-curve points which have potentially incorrect y coordinates:

    -
    * N (U+004E): X=1912.0,Y=2.0 (should be at baseline 0?)
    -
    -* N (U+004E): X=1710.0,Y=2.0 (should be at baseline 0?)
    -
    -* v (U+0076): X=1128.0,Y=1.0 (should be at baseline 0?)
    -
    -* v (U+0076): X=921.0,Y=1.0 (should be at baseline 0?)
    -
    -* Ntilde (U+00D1): X=1912.0,Y=2.0 (should be at baseline 0?)
    -
    -* Ntilde (U+00D1): X=1710.0,Y=2.0 (should be at baseline 0?)
    -
    -* ccedilla (U+00E7): X=1844.0,Y=-617.0 (should be at descender -615?)
    -
    -* ccedilla (U+00E7): X=1398.0,Y=-617.0 (should be at descender -615?)
    -
    -* Nacute (U+0143): X=1912.0,Y=2.0 (should be at baseline 0?)
    -
    -* Nacute (U+0143): X=1710.0,Y=2.0 (should be at baseline 0?)
    -
    -* uni0145 (U+0145): X=1912.0,Y=2.0 (should be at baseline 0?)
    -
    -* uni0145 (U+0145): X=1710.0,Y=2.0 (should be at baseline 0?)
    -
    -* uni0145 (U+0145): X=913.0,Y=-2.0 (should be at baseline 0?)
    -
    -* uni0145 (U+0145): X=1161.0,Y=-2.0 (should be at baseline 0?)
    -
    -* Ncaron (U+0147): X=1912.0,Y=2.0 (should be at baseline 0?)
    -
    -* Ncaron (U+0147): X=1710.0,Y=2.0 (should be at baseline 0?)
    -
    -* Eng (U+014A): X=112.0,Y=1547.0 (should be at cap-height 1548?)
    -
    -* Eng (U+014A): X=313.0,Y=1547.0 (should be at cap-height 1548?)
    -
    -* uni0156 (U+0156): X=878.0,Y=1.0 (should be at baseline 0?)
    -
    -* uni0156 (U+0156): X=1126.0,Y=1.0 (should be at baseline 0?)
    -
    -* Uogonek (U+0172): X=1340.0,Y=-2.0 (should be at baseline 0?)
    -
    -* Uogonek (U+0172): X=1882.0,Y=-2.0 (should be at baseline 0?)
    -
    -* uni1E44 (U+1E44): X=1912.0,Y=2.0 (should be at baseline 0?)
    -
    -* uni1E44 (U+1E44): X=1710.0,Y=2.0 (should be at baseline 0?)
    -
    -* uni1E46 (U+1E46): X=1912.0,Y=2.0 (should be at baseline 0?)
    -
    -* uni1E46 (U+1E46): X=1710.0,Y=2.0 (should be at baseline 0?)
    -
    -* uni1E48 (U+1E48): X=1912.0,Y=2.0 (should be at baseline 0?)
    -
    -* uni1E48 (U+1E48): X=1710.0,Y=2.0 (should be at baseline 0?)
    -
    -* uni094A_uni0930_uni094D.abvs: X=1378.0,Y=1549.0 (should be at cap-height 1548?)
    -
    -* uni094A_uni0930_uni094D.abvs: X=1576.0,Y=1549.0 (should be at cap-height 1548?)
    -
    -* uni095C_uni0930_uni094D.vatu: X=282.0,Y=1.0 (should be at baseline 0?)
    -
    -* uni095C_uni0930_uni094D.vatu: X=548.0,Y=1.0 (should be at baseline 0?)
    -
    - [code: found-misalignments] - - - -
    -
    - -
    - ⚠️ WARN Do any segments have colinear vectors? -
    - - - - - - - -* ⚠️ **WARN**

    The following glyphs have colinear vectors:

    -
    * uni0921 (U+0921): L<<1581.0,746.0>--<1581.0,703.0>> -> L<<1581.0,703.0>--<1582.0,5.0>>
    -
    -* uni0921_uni0930_uni094D.vatu: L<<1581.0,837.0>--<1581.0,794.0>> -> L<<1581.0,794.0>--<1582.0,164.0>>
    -
    -* uni0921_uni094D.haln: L<<1581.0,746.0>--<1581.0,703.0>> -> L<<1581.0,703.0>--<1582.0,5.0>>
    -
    -* uni0943 (U+0943): L<<-612.0,-611.0>--<-655.0,-495.0>> -> L<<-655.0,-495.0>--<-670.0,-455.0>>
    -
    -* uni0943 (U+0943): L<<-670.0,-455.0>--<-739.0,-269.0>> -> L<<-739.0,-269.0>--<-790.0,-133.0>>
    -
    -* uni0943 (U+0943): L<<-790.0,-132.0>--<-730.0,-122.0>> -> L<<-730.0,-122.0>--<-8.0,9.0>>
    -
    -* uni095C (U+095C): L<<1581.0,746.0>--<1581.0,703.0>> -> L<<1581.0,703.0>--<1582.0,5.0>>
    -
    -* uni095C_uni0930_uni094D.vatu: L<<1581.0,837.0>--<1581.0,794.0>> -> L<<1581.0,794.0>--<1582.0,164.0>>
    -
    -* uni095C_uni094D.haln: L<<1581.0,746.0>--<1581.0,703.0>> -> L<<1581.0,703.0>--<1582.0,5.0>>
    -
    - [code: found-colinear-vectors] - - - -
    -
    - -
    - ⚠️ WARN Do outlines contain any jaggy segments? -
    - - - - - - - -* ⚠️ **WARN**

    The following glyphs have jaggy segments:

    -
    * uni0916_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1587.0,370.0>> = 13.552189259088937
    -
    -* uni0916_uni0930_uni094D.vatu: L<<52.0,0.0>--<1587.0,370.0>>/L<<1587.0,370.0>--<317.0,370.0>> = 13.552189259088937
    -
    -* uni0917_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1717.0,401.0>> = 13.541277371563512
    -
    -* uni0918_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1726.0,403.0>> = 13.535856369134248
    -
    -* uni091A_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1662.0,388.0>> = 13.549559916764828
    -
    -* uni091C_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1719.0,402.0>> = 13.558114398357505
    -
    -* uni091E_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1756.0,411.0>> = 13.560573371057753
    -
    -* uni0923_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1740.0,407.0>> = 13.556055413364934
    -
    -* uni0924_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1402.0,325.0>> = 13.535856369134248
    -
    -* uni0925_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1429.0,332.0>> = 13.555519612214798
    -
    -* uni0925_uni0930_uni094D.vatu: L<<52.0,0.0>--<1429.0,332.0>>/L<<1429.0,332.0>--<21.0,332.0>> = 13.555519612214798
    -
    -* uni0927_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1405.0,326.0>> = 13.546974566830361
    -
    -* uni0927_uni0930_uni094D.vatu: L<<52.0,0.0>--<1405.0,326.0>>/L<<1405.0,326.0>--<90.0,326.0>> = 13.546974566830361
    -
    -* uni0928_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1730.0,404.0>> = 13.53705172462755
    -
    -* uni0929_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1727.0,404.0>> = 13.56040263584047
    -
    -* uni092A_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1723.0,403.0>> = 13.559261261373097
    -
    -* uni092C_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1684.0,393.0>> = 13.539543474860553
    -
    -* uni092D_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1752.0,410.0>> = 13.559451870534032
    -
    -* uni092E_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1770.0,414.0>> = 13.548698506267515
    -
    -* uni092F_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1209.0,279.0>> = 13.557524842313844
    -
    -* uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1778.0,416.0>> = 13.550962950816185
    -
    -* uni0932_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1728.0,404.0>> = 13.552610220387871
    -
    -* uni0935_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1684.0,393.0>> = 13.539543474860553
    -
    -* uni0936_uni0930_uni094D.vatu: L<<1797.0,658.0>--<1027.0,922.0>>/L<<1027.0,922.0>--<1197.0,861.0>> = 0.8145364198432462
    -
    -* uni0937_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1716.0,401.0>> = 13.54911523508201
    -
    -* uni0948 (U+0948): L<<-22.0,1548.0>--<68.0,1548.0>>/L<<68.0,1548.0>--<-812.0,1750.0>> = 12.928027006757656
    -
    -* uni0948_uni0902.abvs: L<<-22.0,1548.0>--<68.0,1548.0>>/L<<68.0,1548.0>--<-812.0,1750.0>> = 12.928027006757656
    -
    -* uni0948_uni0930_uni094D.abvs: L<<-22.0,1548.0>--<68.0,1548.0>>/L<<68.0,1548.0>--<-812.0,1750.0>> = 12.928027006757656
    -
    -* uni0959_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1587.0,370.0>> = 13.552189259088937
    -
    -* uni0959_uni0930_uni094D.vatu: L<<52.0,0.0>--<1587.0,370.0>>/L<<1587.0,370.0>--<317.0,370.0>> = 13.552189259088937
    -
    -* uni095A_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1717.0,401.0>> = 13.541277371563512
    -
    -* uni095B_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1719.0,402.0>> = 13.558114398357505
    -
    -* uni095F_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1209.0,279.0>> = 13.557524842313844
    -
    - [code: found-jaggy-segments] - - - -
    -
    - -
    - ⚠️ WARN Do outlines contain any semi-vertical or semi-horizontal lines? -
    - - - - - - - -* ⚠️ **WARN**

    The following glyphs have semi-vertical/semi-horizontal lines:

    -
    * braceright (U+007D): L<<1040.0,1548.0>--<1036.0,838.0>>
    -
    -* greater (U+003E): L<<1436.0,777.0>--<1437.0,568.0>>
    -
    -* guilsinglright (U+203A): L<<1436.0,777.0>--<1437.0,568.0>>
    -
    -* questiondown (U+00BF): L<<1168.0,1273.0>--<918.0,1272.0>>
    -
    -* uni0921 (U+0921): L<<1383.0,200.0>--<1382.0,538.0>>
    -
    -* uni0921 (U+0921): L<<1581.0,703.0>--<1582.0,5.0>>
    -
    -* uni0921_uni0930_uni094D.vatu: L<<1383.0,359.0>--<1382.0,629.0>>
    -
    -* uni0921_uni0930_uni094D.vatu: L<<1581.0,794.0>--<1582.0,164.0>>
    -
    -* uni0921_uni094D.haln: L<<1383.0,200.0>--<1382.0,538.0>>
    -
    -* uni0921_uni094D.haln: L<<1581.0,703.0>--<1582.0,5.0>>
    -
    -* uni095C (U+095C): L<<1383.0,200.0>--<1382.0,538.0>>
    -
    -* uni095C (U+095C): L<<1581.0,703.0>--<1582.0,5.0>>
    -
    -* uni095C_uni0930_uni094D.vatu: L<<1383.0,359.0>--<1382.0,629.0>>
    -
    -* uni095C_uni0930_uni094D.vatu: L<<1581.0,794.0>--<1582.0,164.0>>
    -
    -* uni095C_uni094D.haln: L<<1383.0,200.0>--<1382.0,538.0>>
    -
    -* uni095C_uni094D.haln: L<<1581.0,703.0>--<1582.0,5.0>>
    -
    - [code: found-semi-vertical] - - - -
    -
    - -
    - ⚠️ WARN Ensure fonts have ScriptLangTags declared on the 'meta' table. -
    - - - - - - - -* ⚠️ **WARN**

    This font file does not have a 'meta' table.

    - [code: lacks-meta-table] - - - -
    -
    - -
    - ⚠️ WARN Checking OS/2 achVendID. -
    - - - - - - - -* ⚠️ **WARN**

    OS/2 VendorID value 'anir' is not yet recognized. If you registered it recently, then it's safe to ignore this warning message. Otherwise, you should set it to your own unique 4 character code, and register it with Microsoft at https://www.microsoft.com/typography/links/vendorlist.aspx

    - [code: unknown] - - - -
    -
    -
    -
    - -
    [20] Samaano-Wide-Thin.ttf -
    -
    - 🔥 FAIL Ensure the font supports case swapping for all its glyphs. -
    - - - - - - - -* 🔥 **FAIL**

    The following glyphs lack their case-swapping counterparts:

    - - - - - - - - - - - - - -
    Glyph present in the fontMissing case-swapping counterpart
    U+0189: LATIN CAPITAL LETTER AFRICAN DU+0256: LATIN SMALL LETTER D WITH TAIL
    - [code: missing-case-counterparts] - - - -
    -
    - -
    - 🔥 FAIL Checking OS/2 usWinAscent & usWinDescent. -
    - - - - - - - -* 🔥 **FAIL**

    OS/2.usWinDescent value should be equal or greater than 978, but got 958 instead

    - [code: descent] - - - -
    -
    - -
    - 🔥 FAIL Shapes languages in all GF glyphsets. -
    - - - - - - - -* 🔥 **FAIL**

    GF_Latin_Core glyphset:

    - - - - - - - - - - - - - -
    LanguageFAIL messages
    nl_Latn (Dutch)Shaper didn't attach acutecomb to j
    - [code: failed-language-shaping] - - - -
    -
    - -
    - 🔥 FAIL Check family name for GF Guide compliance. -
    - - - - - - - -* 🔥 **FAIL**

    "Samaano Wide-Thin" contains the following characters which are not allowed: "-".

    - [code: forbidden-characters] - - - -
    -
    - -
    - 🔥 FAIL Checking file is named canonically. -
    - - - - - - - -* 🔥 **FAIL**

    Expected "SamaanoWide-Thin-Regular.ttf. Got Samaano-Wide-Thin.ttf.

    - [code: bad-filename] - - - -
    -
    - -
    - ⚠️ WARN Checking correctness of monospaced metadata. -
    - - - - - - - -* ⚠️ **WARN**

    The OpenType spec recommends at https://learn.microsoft.com/en-us/typography/opentype/spec/recom#hhea-table that hhea.numberOfHMetrics be set to 3 but this font has 355 instead. -Please read https://github.com/fonttools/fonttools/issues/3014 to decide whether this makes sense for your font.

    - [code: bad-numberOfHMetrics] - - - -* ⚠️ **WARN**

    Font is monospaced but 2 glyphs (0.28%) have a different width. You should check the widths of: ['Eng', 'eng']

    - [code: mono-outliers] - - - -
    -
    - -
    - ⚠️ WARN Check glyphs in mark glyph class are non-spacing. -
    - - - - - - - -* ⚠️ **WARN**

    The following spacing glyphs may be in the GDEF mark glyph class by mistake: -glyph094D (unencoded), uni0331 (U+0331), uni0900 (U+0900), uni0901 (U+0901), uni0902 (U+0902), uni0930_uni094D.blwf (unencoded), uni0930_uni094D.rphf (unencoded), uni093A (U+093A), uni093C (U+093C), uni0941 (U+0941), uni0942 (U+0942), uni0943 (U+0943), uni0944 (U+0944), uni0945 (U+0945), uni0946 (U+0946), uni0947 (U+0947), uni0948 (U+0948), uni094D (U+094D), uni0951 (U+0951), uni0952 (U+0952), uni0953 (U+0953), uni0954 (U+0954), uni0955 (U+0955), uni0956 (U+0956), uni0957 (U+0957), uni0962 (U+0962) and uni0963 (U+0963)

    - [code: spacing-mark-glyphs] - - - -
    -
    - -
    - ⚠️ WARN Check mark characters are in GDEF mark glyph class. -
    - - - - - - - -* ⚠️ **WARN**

    The following mark characters could be in the GDEF mark glyph class: -hookabovecomb (U+0309) and uni0305 (U+0305)

    - [code: mark-chars] - - - -
    -
    - -
    - ⚠️ WARN Does GPOS table have kerning information? This check skips monospaced fonts as defined by post.isFixedPitch value -
    - - - - - - - -* ⚠️ **WARN**

    GPOS table lacks kerning information.

    - [code: lacks-kern-info] - - - -
    -
    - -
    - ⚠️ WARN Check accent of Lcaron, dcaron, lcaron, tcaron -
    - - - - - - - - - -* ⚠️ **WARN**

    dcaron is decomposed and therefore could not be checked. Please check manually.

    - [code: decomposed-outline] - - - -* ⚠️ **WARN**

    Lcaron is decomposed and therefore could not be checked. Please check manually.

    - [code: decomposed-outline] - - - -* ⚠️ **WARN**

    lcaron is decomposed and therefore could not be checked. Please check manually.

    - [code: decomposed-outline] - - - -* ⚠️ **WARN**

    tcaron is decomposed and therefore could not be checked. Please check manually.

    - [code: decomposed-outline] - - - -
    -
    - -
    - ⚠️ WARN Check if each glyph has the recommended amount of contours. -
    - - - - - - - -* ⚠️ **WARN**

    This check inspects the glyph outlines and detects the total number of contours in each of them. The expected values are infered from the typical ammounts of contours observed in a large collection of reference font families. The divergences listed below may simply indicate a significantly different design on some of your glyphs. On the other hand, some of these may flag actual bugs in the font such as glyphs mapped to an incorrect codepoint. Please consider reviewing the design and codepoint assignment of these to make sure they are correct.

    -

    The following glyphs do not have the recommended number of contours:

    -
    - Glyph name: D	Contours detected: 1	Expected: 2
    -
    -- Glyph name: g	Contours detected: 1	Expected: 2 or 3
    -
    -- Glyph name: braceleft	Contours detected: 3	Expected: 1
    -
    -- Glyph name: aogonek	Contours detected: 3	Expected: 2
    -
    -- Glyph name: Dcaron	Contours detected: 2	Expected: 3
    -
    -- Glyph name: eogonek	Contours detected: 3	Expected: 2
    -
    -- Glyph name: gcircumflex	Contours detected: 2	Expected: 3 or 4
    -
    -- Glyph name: gbreve	Contours detected: 2	Expected: 3 or 4
    -
    -- Glyph name: gdotaccent	Contours detected: 2	Expected: 3 or 4
    -
    -- Glyph name: uni0123	Contours detected: 2	Expected: 3 or 4
    -
    -- Glyph name: Uogonek	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uogonek	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni01C4	Contours detected: 3	Expected: 4
    -
    -- Glyph name: uni01C5	Contours detected: 3	Expected: 4
    -
    -- Glyph name: uni091B	Contours detected: 1	Expected: 2
    -
    -- Glyph name: uni092D	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni092E	Contours detected: 3	Expected: 2
    -
    -- Glyph name: uni093D	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0945	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0955	Contours detected: 3	Expected: 2
    -
    -- Glyph name: uni0956	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0957	Contours detected: 3	Expected: 2
    -
    -- Glyph name: uni0962	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0963	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0967	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0970	Contours detected: 1	Expected: 2
    -
    -- Glyph name: uni097F	Contours detected: 2	Expected: 3
    -
    -- Glyph name: uni1E0C	Contours detected: 2	Expected: 3
    -
    -- Glyph name: uni25CC	Contours detected: 8	Expected: 16 or 12
    -
    -- Glyph name: D	Contours detected: 1	Expected: 2
    -
    -- Glyph name: Dcaron	Contours detected: 2	Expected: 3
    -
    -- Glyph name: Uogonek	Contours detected: 2	Expected: 1
    -
    -- Glyph name: aogonek	Contours detected: 3	Expected: 2
    -
    -- Glyph name: braceleft	Contours detected: 3	Expected: 1
    -
    -- Glyph name: eogonek	Contours detected: 3	Expected: 2
    -
    -- Glyph name: g	Contours detected: 1	Expected: 2 or 3
    -
    -- Glyph name: gbreve	Contours detected: 2	Expected: 3 or 4
    -
    -- Glyph name: gcircumflex	Contours detected: 2	Expected: 3 or 4
    -
    -- Glyph name: gdotaccent	Contours detected: 2	Expected: 3 or 4
    -
    -- Glyph name: uni0123	Contours detected: 2	Expected: 3 or 4
    -
    -- Glyph name: uni01C4	Contours detected: 3	Expected: 4
    -
    -- Glyph name: uni01C5	Contours detected: 3	Expected: 4
    -
    -- Glyph name: uni091B	Contours detected: 1	Expected: 2
    -
    -- Glyph name: uni092D	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni092E	Contours detected: 3	Expected: 2
    -
    -- Glyph name: uni093D	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0945	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0955	Contours detected: 3	Expected: 2
    -
    -- Glyph name: uni0956	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0957	Contours detected: 3	Expected: 2
    -
    -- Glyph name: uni0962	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0963	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0967	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0970	Contours detected: 1	Expected: 2
    -
    -- Glyph name: uni097F	Contours detected: 2	Expected: 3
    -
    -- Glyph name: uni1E0C	Contours detected: 2	Expected: 3
    -
    -- Glyph name: uni25CC	Contours detected: 8	Expected: 16 or 12
    -
    -- Glyph name: uogonek	Contours detected: 2	Expected: 1
    -
    - [code: contour-count] - - - -
    -
    - -
    - ⚠️ WARN Check font contains no unreachable glyphs -
    - - - - - - - -* ⚠️ **WARN**

    The following glyphs could not be reached by codepoint or substitution rules:

    -
    - glyph094D
    -
    -- uni0930_uni094D.abvs
    -
    -- uni0930_uni094D.vatu
    -
    - [code: unreachable-glyphs] - - - -
    -
    - -
    - ⚠️ WARN Validate size, and resolution of article images, and ensure article page has minimum length and includes visual assets. -
    - - - - - - - -* ⚠️ **WARN**

    Family metadata at fonts/ttf does not have an article.

    - [code: lacks-article] - - - -
    -
    - -
    - ⚠️ WARN Check for codepoints not covered by METADATA subsets. -
    - - - - - - - -* ⚠️ **WARN**

    The following codepoints supported by the font are not covered by -any subsets defined in the font's metadata file, and will never -be served. You can solve this by either manually adding additional -subset declarations to METADATA.pb, or by editing the glyphset -definitions.

    -
      -
    • U+02D8 BREVE: try adding one of: canadian-aboriginal, yi
    • -
    • U+02D9 DOT ABOVE: try adding one of: canadian-aboriginal, yi
    • -
    • U+02DB OGONEK: try adding one of: canadian-aboriginal, yi
    • -
    • U+0302 COMBINING CIRCUMFLEX ACCENT: try adding one of: math, tifinagh, coptic, cherokee
    • -
    • U+0305 COMBINING OVERLINE: try adding one of: coptic, glagolitic, gothic, elbasan, math
    • -
    • U+0306 COMBINING BREVE: try adding one of: old-permic, tifinagh
    • -
    • U+0307 COMBINING DOT ABOVE: try adding one of: duployan, malayalam, hebrew, old-permic, todhri, tai-le, coptic, tifinagh, math, syriac, canadian-aboriginal
    • -
    • U+030A COMBINING RING ABOVE: try adding one of: duployan, syriac
    • -
    • U+030B COMBINING DOUBLE ACUTE ACCENT: try adding one of: cherokee, osage
    • -
    • U+030C COMBINING CARON: try adding one of: tai-le, cherokee
    • -
    • U+0326 COMBINING COMMA BELOW: try adding math
    • -
    • U+0327 COMBINING CEDILLA: try adding math
    • -
    • U+0328 COMBINING OGONEK: not included in any glyphset definition
    • -
    • U+0331 COMBINING MACRON BELOW: try adding one of: gothic, thai, tifinagh, caucasian-albanian, syriac, sunuwar, cherokee
    • -
    • U+2021 DOUBLE DAGGER: try adding adlam
    • -
    • U+2030 PER MILLE SIGN: try adding adlam
    • -
    • U+FB01 LATIN SMALL LIGATURE FI: not included in any glyphset definition
    • -
    • U+FB02 LATIN SMALL LIGATURE FL: not included in any glyphset definition
    • -
    -

    Or you can add the above codepoints to one of the subsets supported by the font: devanagari, latin, latin-ext

    - [code: unreachable-subsetting] - - - -
    -
    - -
    - ⚠️ WARN Ensure soft_dotted characters lose their dot when combined with marks that replace the dot. -
    - - - - - - - -* ⚠️ **WARN**

    The dot of soft dotted characters used in orthographies must disappear in the following strings: i̊ i̋ j̀ j́ j̃ j̄ j̈ į̀ į́ į̂ į̃ į̄ į̌

    -

    The dot of soft dotted characters should disappear in other cases, for example: i̅ i̇ ỉ ǐ ị̅ ị̇ ị̉ ị̊ ị̋ ị̌ i̦̅ i̦̇ ỉ̦ i̦̊ i̦̋ ǐ̦ i̧̅ i̧̇ ỉ̧ i̧̊

    -

    Your font fully covers the following languages that require the soft-dotted feature: Lithuanian (Latn, 2,357,094 speakers).

    -

    Your font does not cover the following languages that require the soft-dotted feature: Nzakara (Latn, 50,000 speakers), Bete-Bendi (Latn, 100,000 speakers), Makaa (Latn, 221,000 speakers), Ejagham (Latn, 120,000 speakers), Igbo (Latn, 27,823,640 speakers), Zapotec (Latn, 490,000 speakers), Aghem (Latn, 38,843 speakers), Yala (Latn, 200,000 speakers), Ukrainian (Cyrl, 29,273,587 speakers), Sar (Latn, 500,000 speakers), Koonzime (Latn, 40,000 speakers), Mundani (Latn, 34,000 speakers), Dutch (Latn, 31,709,104 speakers), Ngbaka (Latn, 1,020,000 speakers), Ekpeye (Latn, 226,000 speakers), Avokaya (Latn, 100,000 speakers), Mango (Latn, 77,000 speakers), Southern Kisi (Latn, 360,000 speakers), Gulay (Latn, 250,478 speakers), Cicipu (Latn, 44,000 speakers), Basaa (Latn, 332,940 speakers), Dii (Latn, 71,000 speakers), South Central Banda (Latn, 244,000 speakers), Lugbara (Latn, 2,200,000 speakers), Navajo (Latn, 166,319 speakers), Nateni (Latn, 100,000 speakers), Kom (Latn, 360,685 speakers), Belarusian (Cyrl, 10,064,517 speakers), Ma’di (Latn, 584,000 speakers), Ebira (Latn, 2,200,000 speakers), Mfumte (Latn, 79,000 speakers), Bafut (Latn, 158,146 speakers), Vute (Latn, 21,000 speakers), Kpelle, Guinea (Latn, 622,000 speakers), Fur (Latn, 1,230,163 speakers), Ijo, Southeast (Latn, 2,471,000 speakers), Dan (Latn, 1,099,244 speakers).

    - [code: soft-dotted] - - - -
    -
    - -
    - ⚠️ WARN Do any segments have colinear vectors? -
    - - - - - - - -* ⚠️ **WARN**

    The following glyphs have colinear vectors:

    -
    * uni092C (U+092C): L<<136.0,964.0>--<136.0,964.0>> -> L<<136.0,964.0>--<136.0,964.0>>
    -
    -* uni092C_uni0930_uni094D.vatu: L<<136.0,1264.0>--<136.0,1264.0>> -> L<<136.0,1264.0>--<136.0,1264.0>>
    -
    -* uni092C_uni094D.half: L<<386.0,964.0>--<386.0,964.0>> -> L<<386.0,964.0>--<386.0,964.0>>
    -
    -* uni092C_uni094D.haln: L<<136.0,964.0>--<136.0,964.0>> -> L<<136.0,964.0>--<136.0,964.0>>
    -
    -* uni0930_uni0942.blws: L<<1376.0,1026.0>--<1436.0,1026.0>> -> L<<1436.0,1026.0>--<1436.0,1026.0>>
    -
    -* uni0930_uni0942.blws: L<<1436.0,1026.0>--<1436.0,1026.0>> -> L<<1436.0,1026.0>--<1836.0,1026.0>>
    -
    -* uni094F (U+094F): L<<1376.0,1934.0>--<816.0,2060.0>> -> L<<816.0,2060.0>--<789.0,2064.0>>
    -
    -* uni094F (U+094F): L<<788.0,2066.0>--<797.0,2105.0>> -> L<<797.0,2105.0>--<841.0,2323.0>>
    -
    - [code: found-colinear-vectors] - - - -
    -
    - -
    - ⚠️ WARN Do outlines contain any jaggy segments? -
    - - - - - - - -* ⚠️ **WARN**

    The following glyphs have jaggy segments:

    -
    * uni0913 (U+0913): L<<1982.0,1550.0>--<1978.0,1549.0>>/L<<1978.0,1549.0>--<2048.0,1549.0>> = 14.036243467926484
    -
    -* uni0916_uni0930_uni094D.vatu: L<<190.0,0.0>--<1679.0,370.0>>/L<<1679.0,370.0>--<457.0,370.0>> = 13.95472881922188
    -
    -* uni0916_uni0930_uni094D.vatu: L<<447.0,0.0>--<190.0,0.0>>/L<<190.0,0.0>--<1679.0,370.0>> = 13.95472881922188
    -
    -* uni0917_uni0930_uni094D.vatu: L<<453.0,0.0>--<196.0,0.0>>/L<<196.0,0.0>--<1846.0,410.0>> = 13.954509173136843
    -
    -* uni0918_uni0930_uni094D.vatu: L<<219.0,-49.0>--<1728.0,326.0>>/L<<1728.0,326.0>--<180.0,326.0>> = 13.955809576666178
    -
    -* uni0918_uni0930_uni094D.vatu: L<<476.0,-49.0>--<219.0,-49.0>>/L<<219.0,-49.0>--<1728.0,326.0>> = 13.955809576666178
    -
    -* uni091A_uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1800.0,416.0>> = 13.955681401342739
    -
    -* uni091B_uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1482.0,333.0>> = 13.797388032395103
    -
    -* uni091C_uni0930_uni094D.vatu: L<<448.0,0.0>--<191.0,0.0>>/L<<191.0,0.0>--<1857.0,414.0>> = 13.95529441255671
    -
    -* uni091E_uni0930_uni094D.vatu: L<<505.0,0.0>--<248.0,0.0>>/L<<248.0,0.0>--<1899.0,410.0>> = 13.94638702966965
    -
    -* uni0923_uni0930_uni094D.vatu: L<<481.0,0.0>--<224.0,0.0>>/L<<224.0,0.0>--<1883.0,412.0>> = 13.946820502133802
    -
    -* uni0925_uni0930_uni094D.vatu: L<<523.0,0.0>--<266.0,0.0>>/L<<266.0,0.0>--<1923.0,412.0>> = 13.962996062429674
    -
    -* uni0926_uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1262.0,264.0>> = 13.082990674811118
    -
    -* uni0927_uni0930_uni094D.vatu: L<<476.0,0.0>--<219.0,0.0>>/L<<219.0,0.0>--<1880.0,413.0>> = 13.963172511989223
    -
    -* uni0928_uni0930_uni094D.vatu: L<<470.0,0.0>--<213.0,0.0>>/L<<213.0,0.0>--<1868.0,411.0>> = 13.946604289939135
    -
    -* uni0929_uni0930_uni094D.vatu: L<<456.0,0.0>--<199.0,0.0>>/L<<199.0,0.0>--<1865.0,414.0>> = 13.95529441255671
    -
    -* uni092A_uni0930_uni094D.vatu: L<<446.0,0.0>--<189.0,0.0>>/L<<189.0,0.0>--<1851.0,413.0>> = 13.9550995206004
    -
    -* uni092B_uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1452.0,334.0>> = 14.137867659892134
    -
    -* uni092C_uni0930_uni094D.vatu: L<<406.0,0.0>--<149.0,0.0>>/L<<149.0,0.0>--<1823.0,416.0>> = 13.955681401342739
    -
    -* uni092D_uni0930_uni094D.vatu: L<<495.0,0.0>--<238.0,0.0>>/L<<238.0,0.0>--<1892.0,411.0>> = 13.954706907750937
    -
    -* uni092E_uni0930_uni094D.vatu: L<<507.0,0.0>--<250.0,0.0>>/L<<250.0,0.0>--<1910.0,413.0>> = 13.971254663228907
    -
    -* uni092F_uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1863.0,323.0>> = 10.533993557738619
    -
    -* uni0930_uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1045.0,230.0>> = 14.050912125955458
    -
    -* uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1800.0,416.0>> = 13.955681401342739
    -
    -* uni0931_uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1084.0,202.0>> = 11.906741925249397
    -
    -* uni0932_uni0930_uni094D.vatu: L<<493.0,0.0>--<236.0,0.0>>/L<<236.0,0.0>--<1868.0,404.0>> = 13.903997241115658
    -
    -* uni0935_uni0930_uni094D.vatu: L<<426.0,0.0>--<169.0,0.0>>/L<<169.0,0.0>--<1824.0,411.0>> = 13.946604289939135
    -
    -* uni0937_uni0930_uni094D.vatu: L<<458.0,6.0>--<201.0,6.0>>/L<<201.0,6.0>--<1851.0,416.0>> = 13.954509173136843
    -
    -* uni0939_uni0930_uni094D.vatu: L<<823.0,370.0>--<566.0,370.0>>/L<<566.0,370.0>--<1542.0,615.0>> = 14.091481608935501
    -
    -* uni0944 (U+0944): L<<14.0,-841.0>--<-764.0,-947.0>>/L<<-764.0,-947.0>--<-764.0,-947.0>> = 7.758593140226185
    -
    -* uni0959_uni0930_uni094D.vatu: L<<190.0,0.0>--<1679.0,370.0>>/L<<1679.0,370.0>--<457.0,370.0>> = 13.95472881922188
    -
    -* uni0959_uni0930_uni094D.vatu: L<<447.0,0.0>--<190.0,0.0>>/L<<190.0,0.0>--<1679.0,370.0>> = 13.95472881922188
    -
    -* uni095A_uni0930_uni094D.vatu: L<<453.0,0.0>--<196.0,0.0>>/L<<196.0,0.0>--<1846.0,410.0>> = 13.954509173136843
    -
    -* uni095B_uni0930_uni094D.vatu: L<<448.0,0.0>--<191.0,0.0>>/L<<191.0,0.0>--<1857.0,414.0>> = 13.95529441255671
    -
    -* uni095E_uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1452.0,334.0>> = 14.137867659892134
    -
    -* uni095F_uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1863.0,323.0>> = 10.533993557738619
    -
    -* uni0968 (U+0968): L<<221.0,486.0>--<239.0,488.0>>/L<<239.0,488.0>--<224.0,488.0>> = 6.340191745909908
    -
    - [code: found-jaggy-segments] - - - -
    -
    - -
    - ⚠️ WARN Do outlines contain any semi-vertical or semi-horizontal lines? -
    - - - - - - - -* ⚠️ **WARN**

    The following glyphs have semi-vertical/semi-horizontal lines:

    -
    * braceright (U+007D): L<<1040.0,1544.0>--<1039.0,838.0>>
    -
    -* eight (U+0038): L<<1993.0,-3.0>--<56.0,0.0>>
    -
    -* exclamdown (U+00A1): L<<1050.0,1035.0>--<1054.0,17.0>>
    -
    - [code: found-semi-vertical] - - - -
    -
    - -
    - ⚠️ WARN Ensure fonts have ScriptLangTags declared on the 'meta' table. -
    - - - - - - - -* ⚠️ **WARN**

    This font file does not have a 'meta' table.

    - [code: lacks-meta-table] - - - -
    -
    - -
    - ⚠️ WARN Checking OS/2 achVendID. -
    - - - - - - - -* ⚠️ **WARN**

    OS/2 VendorID value 'anir' is not yet recognized. If you registered it recently, then it's safe to ignore this warning message. Otherwise, you should set it to your own unique 4 character code, and register it with Microsoft at https://www.microsoft.com/typography/links/vendorlist.aspx

    - [code: unknown] - - - -
    -
    -
    -
    - -
    [21] Samaano-Bold-Slanted.ttf -
    -
    - 🔥 FAIL Checking correctness of monospaced metadata. -
    - - - - - - - -* 🔥 **FAIL**

    On monospaced fonts, the value of post.isFixedPitch must be set to a non-zero value (meaning 'fixed width monospaced'), but got 0 instead.

    - [code: mono-bad-post-isFixedPitch] - - - -* ⚠️ **WARN**

    The OpenType spec recommends at https://learn.microsoft.com/en-us/typography/opentype/spec/recom#hhea-table that hhea.numberOfHMetrics be set to 3 but this font has 435 instead. -Please read https://github.com/fonttools/fonttools/issues/3014 to decide whether this makes sense for your font.

    - [code: bad-numberOfHMetrics] - - - -
    -
    - -
    - 🔥 FAIL Checking head.macStyle value. -
    - - - - - - - -* 🔥 **FAIL**

    head macStyle BOLD bit should be set.

    - [code: bad-BOLD] - - - - - -
    -
    - -
    - 🔥 FAIL Checking OS/2 fsSelection value. -
    - - - - - - - -* 🔥 **FAIL**

    OS/2 fsSelection REGULAR bit should be unset.

    - [code: bad-REGULAR] - - - -* 🔥 **FAIL**

    OS/2 fsSelection BOLD bit should be set.

    - [code: bad-BOLD] - - - - - -
    -
    - -
    - 🔥 FAIL Checking OS/2 usWinAscent & usWinDescent. -
    - - - - - - - -* 🔥 **FAIL**

    OS/2.usWinDescent value should be equal or greater than 978, but got 958 instead

    - [code: descent] - - - -
    -
    - -
    - 🔥 FAIL Shapes languages in all GF glyphsets. -
    - - - - - - - -* 🔥 **FAIL**

    GF_Latin_Core glyphset:

    - - - - - - - - - - - - - -
    LanguageFAIL messages
    nl_Latn (Dutch)Shaper didn't attach acutecomb to j
    - [code: failed-language-shaping] - - - -
    -
    - -
    - 🔥 FAIL Check family name for GF Guide compliance. -
    - - - - - - - -* 🔥 **FAIL**

    "Samaano Bold-Slanted" contains the following characters which are not allowed: "-".

    - [code: forbidden-characters] - - - -
    -
    - -
    - 🔥 FAIL Checking file is named canonically. -
    - - - - - - - -* 🔥 **FAIL**

    Expected "SamaanoBold-Slanted-Regular.ttf. Got Samaano-Bold-Slanted.ttf.

    - [code: bad-filename] - - - -
    -
    - -
    - ⚠️ WARN Check glyphs in mark glyph class are non-spacing. -
    - - - - - - - -* ⚠️ **WARN**

    The following spacing glyphs may be in the GDEF mark glyph class by mistake: -glyph094D (unencoded), uni0930_uni094D.blwf (unencoded), uni0930_uni094D.rphf (unencoded), uni093A (U+093A), uni093C (U+093C), uni0945 (U+0945), uni0946 (U+0946), uni0947 (U+0947), uni0948 (U+0948), uni0951 (U+0951), uni0952 (U+0952), uni0953 (U+0953), uni0954 (U+0954), uni0955 (U+0955), uni0956 (U+0956), uni0957 (U+0957), uni0962 (U+0962) and uni0963 (U+0963)

    - [code: spacing-mark-glyphs] - - - -
    -
    - -
    - ⚠️ WARN Check mark characters are in GDEF mark glyph class. -
    - - - - - - - -* ⚠️ **WARN**

    The following mark characters could be in the GDEF mark glyph class: -hookabovecomb (U+0309) and uni0305 (U+0305)

    - [code: mark-chars] - - - -
    -
    - -
    - ⚠️ WARN Does GPOS table have kerning information? This check skips monospaced fonts as defined by post.isFixedPitch value -
    - - - - - - - -* ⚠️ **WARN**

    GPOS table lacks kerning information.

    - [code: lacks-kern-info] - - - -
    -
    - -
    - ⚠️ WARN Check accent of Lcaron, dcaron, lcaron, tcaron -
    - - - - - - - - - -* ⚠️ **WARN**

    dcaron is decomposed and therefore could not be checked. Please check manually.

    - [code: decomposed-outline] - - - -* ⚠️ **WARN**

    Lcaron is decomposed and therefore could not be checked. Please check manually.

    - [code: decomposed-outline] - - - -* ⚠️ **WARN**

    lcaron is decomposed and therefore could not be checked. Please check manually.

    - [code: decomposed-outline] - - - -* ⚠️ **WARN**

    tcaron is decomposed and therefore could not be checked. Please check manually.

    - [code: decomposed-outline] - - - -
    -
    - -
    - ⚠️ WARN Check if each glyph has the recommended amount of contours. -
    - - - - - - - -* ⚠️ **WARN**

    This check inspects the glyph outlines and detects the total number of contours in each of them. The expected values are infered from the typical ammounts of contours observed in a large collection of reference font families. The divergences listed below may simply indicate a significantly different design on some of your glyphs. On the other hand, some of these may flag actual bugs in the font such as glyphs mapped to an incorrect codepoint. Please consider reviewing the design and codepoint assignment of these to make sure they are correct.

    -

    The following glyphs do not have the recommended number of contours:

    -
    - Glyph name: parenleft	Contours detected: 2	Expected: 1
    -
    -- Glyph name: B	Contours detected: 1	Expected: 2 or 3
    -
    -- Glyph name: D	Contours detected: 1	Expected: 2
    -
    -- Glyph name: Z	Contours detected: 2	Expected: 1
    -
    -- Glyph name: braceleft	Contours detected: 2	Expected: 1
    -
    -- Glyph name: mu	Contours detected: 2	Expected: 1
    -
    -- Glyph name: Eth	Contours detected: 1	Expected: 2
    -
    -- Glyph name: germandbls	Contours detected: 3	Expected: 1
    -
    -- Glyph name: aogonek	Contours detected: 3	Expected: 2
    -
    -- Glyph name: Dcaron	Contours detected: 2	Expected: 3
    -
    -- Glyph name: Dcroat	Contours detected: 1	Expected: 2
    -
    -- Glyph name: eogonek	Contours detected: 3	Expected: 2
    -
    -- Glyph name: Uogonek	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uogonek	Contours detected: 2	Expected: 1
    -
    -- Glyph name: Zacute	Contours detected: 3	Expected: 2
    -
    -- Glyph name: Zdotaccent	Contours detected: 3	Expected: 2
    -
    -- Glyph name: Zcaron	Contours detected: 3	Expected: 2
    -
    -- Glyph name: uni01C5	Contours detected: 3	Expected: 4
    -
    -- Glyph name: uni090B	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0916	Contours detected: 2	Expected: 1 or 3
    -
    -- Glyph name: uni091B	Contours detected: 1	Expected: 2
    -
    -- Glyph name: uni092D	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni092E	Contours detected: 3	Expected: 2
    -
    -- Glyph name: uni093D	Contours detected: 3	Expected: 1
    -
    -- Glyph name: uni0945	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0955	Contours detected: 3	Expected: 2
    -
    -- Glyph name: uni0956	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0957	Contours detected: 3	Expected: 2
    -
    -- Glyph name: uni0959	Contours detected: 3	Expected: 2 or 4
    -
    -- Glyph name: uni0960	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0962	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0963	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0967	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0970	Contours detected: 1	Expected: 2
    -
    -- Glyph name: uni097F	Contours detected: 2	Expected: 3
    -
    -- Glyph name: uni1E0C	Contours detected: 2	Expected: 3
    -
    -- Glyph name: uni1E9E	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni25CC	Contours detected: 8	Expected: 16 or 12
    -
    -- Glyph name: B	Contours detected: 1	Expected: 2 or 3
    -
    -- Glyph name: D	Contours detected: 1	Expected: 2
    -
    -- Glyph name: Dcaron	Contours detected: 2	Expected: 3
    -
    -- Glyph name: Dcroat	Contours detected: 1	Expected: 2
    -
    -- Glyph name: Eth	Contours detected: 1	Expected: 2
    -
    -- Glyph name: Uogonek	Contours detected: 2	Expected: 1
    -
    -- Glyph name: Z	Contours detected: 2	Expected: 1
    -
    -- Glyph name: Zacute	Contours detected: 3	Expected: 2
    -
    -- Glyph name: Zcaron	Contours detected: 3	Expected: 2
    -
    -- Glyph name: Zdotaccent	Contours detected: 3	Expected: 2
    -
    -- Glyph name: aogonek	Contours detected: 3	Expected: 2
    -
    -- Glyph name: braceleft	Contours detected: 2	Expected: 1
    -
    -- Glyph name: eogonek	Contours detected: 3	Expected: 2
    -
    -- Glyph name: germandbls	Contours detected: 3	Expected: 1
    -
    -- Glyph name: parenleft	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni01C5	Contours detected: 3	Expected: 4
    -
    -- Glyph name: uni090B	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0916	Contours detected: 2	Expected: 1 or 3
    -
    -- Glyph name: uni091B	Contours detected: 1	Expected: 2
    -
    -- Glyph name: uni092D	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni092E	Contours detected: 3	Expected: 2
    -
    -- Glyph name: uni093D	Contours detected: 3	Expected: 1
    -
    -- Glyph name: uni0945	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0955	Contours detected: 3	Expected: 2
    -
    -- Glyph name: uni0956	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0957	Contours detected: 3	Expected: 2
    -
    -- Glyph name: uni0959	Contours detected: 3	Expected: 2 or 4
    -
    -- Glyph name: uni0960	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0962	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0963	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0967	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0970	Contours detected: 1	Expected: 2
    -
    -- Glyph name: uni097F	Contours detected: 2	Expected: 3
    -
    -- Glyph name: uni1E0C	Contours detected: 2	Expected: 3
    -
    -- Glyph name: uni1E9E	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni25CC	Contours detected: 8	Expected: 16 or 12
    -
    -- Glyph name: uogonek	Contours detected: 2	Expected: 1
    -
    - [code: contour-count] - - - -
    -
    - -
    - ⚠️ WARN Check font contains no unreachable glyphs -
    - - - - - - - -* ⚠️ **WARN**

    The following glyphs could not be reached by codepoint or substitution rules:

    -
    - glyph094D
    -
    -- uni0930_uni094D.abvs
    -
    -- uni0930_uni094D.vatu
    -
    - [code: unreachable-glyphs] - - - -
    -
    - -
    - ⚠️ WARN Validate size, and resolution of article images, and ensure article page has minimum length and includes visual assets. -
    - - - - - - - -* ⚠️ **WARN**

    Family metadata at fonts/ttf does not have an article.

    - [code: lacks-article] - - - -
    -
    - -
    - ⚠️ WARN Check for codepoints not covered by METADATA subsets. -
    - - - - - - - -* ⚠️ **WARN**

    The following codepoints supported by the font are not covered by -any subsets defined in the font's metadata file, and will never -be served. You can solve this by either manually adding additional -subset declarations to METADATA.pb, or by editing the glyphset -definitions.

    -
      -
    • U+02D8 BREVE: try adding one of: canadian-aboriginal, yi
    • -
    • U+02D9 DOT ABOVE: try adding one of: canadian-aboriginal, yi
    • -
    • U+02DB OGONEK: try adding one of: canadian-aboriginal, yi
    • -
    • U+0302 COMBINING CIRCUMFLEX ACCENT: try adding one of: math, tifinagh, coptic, cherokee
    • -
    • U+0305 COMBINING OVERLINE: try adding one of: coptic, glagolitic, gothic, elbasan, math
    • -
    • U+0306 COMBINING BREVE: try adding one of: old-permic, tifinagh
    • -
    • U+0307 COMBINING DOT ABOVE: try adding one of: duployan, malayalam, hebrew, old-permic, todhri, tai-le, coptic, tifinagh, math, syriac, canadian-aboriginal
    • -
    • U+030A COMBINING RING ABOVE: try adding one of: duployan, syriac
    • -
    • U+030B COMBINING DOUBLE ACUTE ACCENT: try adding one of: cherokee, osage
    • -
    • U+030C COMBINING CARON: try adding one of: tai-le, cherokee
    • -
    • U+0326 COMBINING COMMA BELOW: try adding math
    • -
    • U+0327 COMBINING CEDILLA: try adding math
    • -
    • U+0328 COMBINING OGONEK: not included in any glyphset definition
    • -
    • U+0331 COMBINING MACRON BELOW: try adding one of: gothic, thai, tifinagh, caucasian-albanian, syriac, sunuwar, cherokee
    • -
    • U+2021 DOUBLE DAGGER: try adding adlam
    • -
    • U+2030 PER MILLE SIGN: try adding adlam
    • -
    • U+FB01 LATIN SMALL LIGATURE FI: not included in any glyphset definition
    • -
    • U+FB02 LATIN SMALL LIGATURE FL: not included in any glyphset definition
    • -
    -

    Or you can add the above codepoints to one of the subsets supported by the font: devanagari, latin, latin-ext

    - [code: unreachable-subsetting] - - - -
    -
    - -
    - ⚠️ WARN Ensure soft_dotted characters lose their dot when combined with marks that replace the dot. -
    - - - - - - - -* ⚠️ **WARN**

    The dot of soft dotted characters used in orthographies must disappear in the following strings: i̊ i̋ j̀ j́ j̃ j̄ j̈ į̀ į́ į̂ į̃ į̄ į̌

    -

    The dot of soft dotted characters should disappear in other cases, for example: i̅ i̇ ỉ ǐ ị̅ ị̇ ị̉ ị̊ ị̋ ị̌ i̦̅ i̦̇ ỉ̦ i̦̊ i̦̋ ǐ̦ i̧̅ i̧̇ ỉ̧ i̧̊

    -

    Your font fully covers the following languages that require the soft-dotted feature: Lithuanian (Latn, 2,357,094 speakers).

    -

    Your font does not cover the following languages that require the soft-dotted feature: Nzakara (Latn, 50,000 speakers), Bete-Bendi (Latn, 100,000 speakers), Makaa (Latn, 221,000 speakers), Ejagham (Latn, 120,000 speakers), Igbo (Latn, 27,823,640 speakers), Zapotec (Latn, 490,000 speakers), Aghem (Latn, 38,843 speakers), Yala (Latn, 200,000 speakers), Ukrainian (Cyrl, 29,273,587 speakers), Sar (Latn, 500,000 speakers), Koonzime (Latn, 40,000 speakers), Mundani (Latn, 34,000 speakers), Dutch (Latn, 31,709,104 speakers), Ngbaka (Latn, 1,020,000 speakers), Ekpeye (Latn, 226,000 speakers), Avokaya (Latn, 100,000 speakers), Mango (Latn, 77,000 speakers), Southern Kisi (Latn, 360,000 speakers), Gulay (Latn, 250,478 speakers), Cicipu (Latn, 44,000 speakers), Basaa (Latn, 332,940 speakers), Dii (Latn, 71,000 speakers), South Central Banda (Latn, 244,000 speakers), Lugbara (Latn, 2,200,000 speakers), Navajo (Latn, 166,319 speakers), Nateni (Latn, 100,000 speakers), Kom (Latn, 360,685 speakers), Belarusian (Cyrl, 10,064,517 speakers), Ma’di (Latn, 584,000 speakers), Ebira (Latn, 2,200,000 speakers), Mfumte (Latn, 79,000 speakers), Bafut (Latn, 158,146 speakers), Vute (Latn, 21,000 speakers), Kpelle, Guinea (Latn, 622,000 speakers), Fur (Latn, 1,230,163 speakers), Ijo, Southeast (Latn, 2,471,000 speakers), Dan (Latn, 1,099,244 speakers).

    - [code: soft-dotted] - - - -
    -
    - -
    - ⚠️ WARN Are there any misaligned on-curve points? -
    - - - - - - - -* ⚠️ **WARN**

    The following glyphs have on-curve points which have potentially incorrect y coordinates:

    -
    * N (U+004E): X=444.0,Y=2.0 (should be at baseline 0?)
    -
    -* Ntilde (U+00D1): X=405.0,Y=2.0 (should be at baseline 0?)
    -
    -* Nacute (U+0143): X=444.0,Y=2.0 (should be at baseline 0?)
    -
    -* uni0145 (U+0145): X=444.0,Y=2.0 (should be at baseline 0?)
    -
    -* Ncaron (U+0147): X=444.0,Y=2.0 (should be at baseline 0?)
    -
    -* Eng (U+014A): X=395.0,Y=1550.0 (should be at cap-height 1548?)
    -
    -* Eng (U+014A): X=1194.0,Y=1550.0 (should be at cap-height 1548?)
    -
    -* uni1E44 (U+1E44): X=444.0,Y=2.0 (should be at baseline 0?)
    -
    -* uni1E46 (U+1E46): X=444.0,Y=2.0 (should be at baseline 0?)
    -
    -* uni1E48 (U+1E48): X=444.0,Y=2.0 (should be at baseline 0?)
    -
    -* uni1E4D (U+1E4D): X=662.0,Y=1550.0 (should be at cap-height 1548?)
    -
    - [code: found-misalignments] - - - -
    -
    - -
    - ⚠️ WARN Do outlines contain any jaggy segments? -
    - - - - - - - -* ⚠️ **WARN**

    The following glyphs have jaggy segments:

    -
    * glyph094D: L<<630.0,-22.0>--<629.0,-23.0>>/L<<629.0,-23.0>--<632.0,-21.0>> = 11.309932474020227
    -
    -* uni01C4 (U+01C4): L<<336.0,767.0>--<337.0,771.0>>/L<<337.0,771.0>--<336.0,769.0>> = 12.528807709151492
    -
    -* uni01C4 (U+01C4): L<<336.0,769.0>--<-320.0,0.0>>/L<<-320.0,0.0>--<-210.0,201.0>> = 11.775746289963823
    -
    -* uni01C5 (U+01C5): L<<553.0,769.0>--<-102.0,0.0>>/L<<-102.0,0.0>--<7.0,201.0>> = 11.952410103730198
    -
    -* uni0915_uni094D.haln: L<<370.0,-22.0>--<369.0,-23.0>>/L<<369.0,-23.0>--<372.0,-21.0>> = 11.309932474020227
    -
    -* uni0915_uni094D_uni0937_uni094D: L<<1363.0,-22.0>--<1362.0,-23.0>>/L<<1362.0,-23.0>--<1365.0,-21.0>> = 11.309932474020227
    -
    -* uni0916_uni094D.haln: L<<285.0,-22.0>--<284.0,-23.0>>/L<<284.0,-23.0>--<287.0,-21.0>> = 11.309932474020227
    -
    -* uni091A_uni094D.haln: L<<447.0,-22.0>--<446.0,-23.0>>/L<<446.0,-23.0>--<449.0,-21.0>> = 11.309932474020227
    -
    -* uni091B_uni094D.haln: L<<98.0,-13.0>--<97.0,-14.0>>/L<<97.0,-14.0>--<100.0,-12.0>> = 11.309932474020227
    -
    -* uni091C_uni094D.haln: L<<264.0,-22.0>--<263.0,-23.0>>/L<<263.0,-23.0>--<266.0,-21.0>> = 11.309932474020227
    -
    -* uni091C_uni094D_uni091E_uni094D: L<<1294.0,-22.0>--<1293.0,-23.0>>/L<<1293.0,-23.0>--<1296.0,-21.0>> = 11.309932474020227
    -
    -* uni0926_uni094D.half: L<<359.0,-22.0>--<358.0,-23.0>>/L<<358.0,-23.0>--<361.0,-21.0>> = 11.309932474020227
    -
    -* uni0926_uni094D.haln: L<<241.0,-22.0>--<240.0,-23.0>>/L<<240.0,-23.0>--<243.0,-21.0>> = 11.309932474020227
    -
    -* uni0929_uni094D.haln: L<<511.0,-22.0>--<510.0,-23.0>>/L<<510.0,-23.0>--<513.0,-21.0>> = 11.309932474020227
    -
    -* uni092A_uni094D.haln: L<<397.0,-22.0>--<396.0,-23.0>>/L<<396.0,-23.0>--<399.0,-21.0>> = 11.309932474020227
    -
    -* uni092B_uni094D.haln: L<<485.0,-22.0>--<484.0,-23.0>>/L<<484.0,-23.0>--<487.0,-21.0>> = 11.309932474020227
    -
    -* uni0937_uni094D.haln: L<<396.0,-22.0>--<395.0,-23.0>>/L<<395.0,-23.0>--<398.0,-21.0>> = 11.309932474020227
    -
    -* uni0938_uni094D.haln: L<<504.0,-22.0>--<503.0,-23.0>>/L<<503.0,-23.0>--<506.0,-21.0>> = 11.309932474020227
    -
    -* uni0959_uni094D.haln: L<<286.0,-22.0>--<285.0,-23.0>>/L<<285.0,-23.0>--<288.0,-21.0>> = 11.309932474020227
    -
    - [code: found-jaggy-segments] - - - -
    -
    - -
    - ⚠️ WARN Do outlines contain any semi-vertical or semi-horizontal lines? -
    - - - - - - - -* ⚠️ **WARN**

    The following glyphs have semi-vertical/semi-horizontal lines:

    -
    * questiondown (U+00BF): L<<930.0,1273.0>--<680.0,1272.0>>
    -
    -* uni091C_uni094D_uni091E_uni094D: L<<-114.0,367.0>--<-112.0,75.0>>
    -
    -* uni0930_uni0942.blws: L<<1113.0,1348.0>--<541.0,1347.0>>
    -
    -* uni093D (U+093D): L<<626.0,1079.0>--<624.0,269.0>>
    -
    -* uni0943 (U+0943): L<<-289.0,-250.0>--<-288.0,-385.0>>
    -
    -* uni0943 (U+0943): L<<-500.0,-611.0>--<-501.0,-495.0>>
    -
    -* uni0943 (U+0943): L<<-503.0,-270.0>--<-504.0,-133.0>>
    -
    -* uni0943 (U+0943): L<<-70.0,9.0>--<-69.0,-178.0>>
    -
    - [code: found-semi-vertical] - - - -
    -
    - -
    - ⚠️ WARN Ensure fonts have ScriptLangTags declared on the 'meta' table. -
    - - - - - - - -* ⚠️ **WARN**

    This font file does not have a 'meta' table.

    - [code: lacks-meta-table] - - - -
    -
    - -
    - ⚠️ WARN Checking OS/2 achVendID. -
    - - - - - - - -* ⚠️ **WARN**

    OS/2 VendorID value 'anir' is not yet recognized. If you registered it recently, then it's safe to ignore this warning message. Otherwise, you should set it to your own unique 4 character code, and register it with Microsoft at https://www.microsoft.com/typography/links/vendorlist.aspx

    - [code: unknown] - - - -
    -
    -
    -
    - -
    [19] Samaano-Thin-Slanted.ttf -
    -
    - 🔥 FAIL Checking OS/2 usWinAscent & usWinDescent. -
    - - - - - - - -* 🔥 **FAIL**

    OS/2.usWinDescent value should be equal or greater than 978, but got 958 instead

    - [code: descent] - - - -
    -
    - -
    - 🔥 FAIL Shapes languages in all GF glyphsets. -
    - - - - - - - -* 🔥 **FAIL**

    GF_Latin_Core glyphset:

    - - - - - - - - - - - - - -
    LanguageFAIL messages
    nl_Latn (Dutch)Shaper didn't attach acutecomb to j
    - [code: failed-language-shaping] - - - -
    -
    - -
    - 🔥 FAIL Check family name for GF Guide compliance. -
    - - - - - - - -* 🔥 **FAIL**

    "Samaano Thin-Slanted" contains the following characters which are not allowed: "-".

    - [code: forbidden-characters] - - - -
    -
    - -
    - 🔥 FAIL Checking file is named canonically. -
    - - - - - - - -* 🔥 **FAIL**

    Expected "SamaanoThin-Slanted-Regular.ttf. Got Samaano-Thin-Slanted.ttf.

    - [code: bad-filename] - - - -
    -
    - -
    - 🔥 FAIL Font has all mandatory 'name' table entries? -
    - - - - - - - -* 🔥 **FAIL**

    Font lacks entry with nameId=16 (TYPOGRAPHIC_FAMILY_NAME)

    - [code: missing-entry] - - - -* 🔥 **FAIL**

    Font lacks entry with nameId=17 (TYPOGRAPHIC_SUBFAMILY_NAME)

    - [code: missing-entry] - - - -
    -
    - -
    - ⚠️ WARN Checking correctness of monospaced metadata. -
    - - - - - - - -* ⚠️ **WARN**

    The OpenType spec recommends at https://learn.microsoft.com/en-us/typography/opentype/spec/recom#hhea-table that hhea.numberOfHMetrics be set to 3 but this font has 425 instead. -Please read https://github.com/fonttools/fonttools/issues/3014 to decide whether this makes sense for your font.

    - [code: bad-numberOfHMetrics] - - - -* ⚠️ **WARN**

    Font is monospaced but 1 glyphs (0.14%) have a different width. You should check the widths of: ['ldot']

    - [code: mono-outliers] - - - -
    -
    - -
    - ⚠️ WARN Check glyphs in mark glyph class are non-spacing. -
    - - - - - - - -* ⚠️ **WARN**

    The following spacing glyphs may be in the GDEF mark glyph class by mistake: -acutecomb (U+0301), dotbelowcomb (U+0323), glyph094D (unencoded), tildecomb (U+0303), uni0302 (U+0302), uni0304 (U+0304), uni0306 (U+0306), uni0307 (U+0307), uni0308 (U+0308), uni030A (U+030A), uni030B (U+030B), uni0326 (U+0326), uni0327 (U+0327), uni0328 (U+0328), uni0331 (U+0331), uni0930_uni094D.blwf (unencoded), uni0930_uni094D.rphf (unencoded), uni093A (U+093A), uni093C (U+093C), uni0945 (U+0945), uni0946 (U+0946), uni0947 (U+0947), uni0948 (U+0948), uni094D (U+094D), uni0951 (U+0951), uni0952 (U+0952), uni0953 (U+0953), uni0954 (U+0954), uni0955 (U+0955), uni0956 (U+0956), uni0957 (U+0957), uni0962 (U+0962) and uni0963 (U+0963)

    - [code: spacing-mark-glyphs] - - - -
    -
    - -
    - ⚠️ WARN Check mark characters are in GDEF mark glyph class. -
    - - - - - - - -* ⚠️ **WARN**

    The following mark characters could be in the GDEF mark glyph class: -hookabovecomb (U+0309) and uni0305 (U+0305)

    - [code: mark-chars] - - - -
    -
    - -
    - ⚠️ WARN Does GPOS table have kerning information? This check skips monospaced fonts as defined by post.isFixedPitch value -
    - - - - - - - -* ⚠️ **WARN**

    GPOS table lacks kerning information.

    - [code: lacks-kern-info] - - - -
    -
    - -
    - ⚠️ WARN Check accent of Lcaron, dcaron, lcaron, tcaron -
    - - - - - - - - - -* ⚠️ **WARN**

    dcaron is decomposed and therefore could not be checked. Please check manually.

    - [code: decomposed-outline] - - - -* ⚠️ **WARN**

    Lcaron is decomposed and therefore could not be checked. Please check manually.

    - [code: decomposed-outline] - - - -* ⚠️ **WARN**

    lcaron is decomposed and therefore could not be checked. Please check manually.

    - [code: decomposed-outline] - - - -* ⚠️ **WARN**

    tcaron is decomposed and therefore could not be checked. Please check manually.

    - [code: decomposed-outline] - - - -
    -
    - -
    - ⚠️ WARN Check if each glyph has the recommended amount of contours. -
    - - - - - - - -* ⚠️ **WARN**

    This check inspects the glyph outlines and detects the total number of contours in each of them. The expected values are infered from the typical ammounts of contours observed in a large collection of reference font families. The divergences listed below may simply indicate a significantly different design on some of your glyphs. On the other hand, some of these may flag actual bugs in the font such as glyphs mapped to an incorrect codepoint. Please consider reviewing the design and codepoint assignment of these to make sure they are correct.

    -

    The following glyphs do not have the recommended number of contours:

    -
    - Glyph name: A	Contours detected: 1	Expected: 2
    -
    -- Glyph name: g	Contours detected: 1	Expected: 2 or 3
    -
    -- Glyph name: o	Contours detected: 1	Expected: 2
    -
    -- Glyph name: braceleft	Contours detected: 2	Expected: 1
    -
    -- Glyph name: Agrave	Contours detected: 2	Expected: 3
    -
    -- Glyph name: Aacute	Contours detected: 2	Expected: 3
    -
    -- Glyph name: Acircumflex	Contours detected: 2	Expected: 3
    -
    -- Glyph name: Atilde	Contours detected: 2	Expected: 3
    -
    -- Glyph name: Adieresis	Contours detected: 3	Expected: 4
    -
    -- Glyph name: ograve	Contours detected: 2	Expected: 3
    -
    -- Glyph name: oacute	Contours detected: 2	Expected: 3
    -
    -- Glyph name: ocircumflex	Contours detected: 2	Expected: 3
    -
    -- Glyph name: otilde	Contours detected: 2	Expected: 3
    -
    -- Glyph name: odieresis	Contours detected: 3	Expected: 4
    -
    -- Glyph name: Amacron	Contours detected: 2	Expected: 3
    -
    -- Glyph name: Abreve	Contours detected: 2	Expected: 3
    -
    -- Glyph name: aogonek	Contours detected: 3	Expected: 2
    -
    -- Glyph name: eogonek	Contours detected: 3	Expected: 2
    -
    -- Glyph name: gcircumflex	Contours detected: 2	Expected: 3 or 4
    -
    -- Glyph name: gbreve	Contours detected: 2	Expected: 3 or 4
    -
    -- Glyph name: gdotaccent	Contours detected: 2	Expected: 3 or 4
    -
    -- Glyph name: uni0123	Contours detected: 2	Expected: 3 or 4
    -
    -- Glyph name: Eng	Contours detected: 2	Expected: 1
    -
    -- Glyph name: omacron	Contours detected: 2	Expected: 3
    -
    -- Glyph name: obreve	Contours detected: 2	Expected: 3
    -
    -- Glyph name: ohungarumlaut	Contours detected: 3	Expected: 4
    -
    -- Glyph name: Uogonek	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uogonek	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0910	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni091B	Contours detected: 1	Expected: 2
    -
    -- Glyph name: uni092D	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni092E	Contours detected: 3	Expected: 2
    -
    -- Glyph name: uni093D	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0945	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0955	Contours detected: 3	Expected: 2
    -
    -- Glyph name: uni0956	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0957	Contours detected: 3	Expected: 2
    -
    -- Glyph name: uni0962	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0963	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0967	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0970	Contours detected: 1	Expected: 2
    -
    -- Glyph name: uni097F	Contours detected: 2	Expected: 3
    -
    -- Glyph name: uni1E4D	Contours detected: 3	Expected: 4
    -
    -- Glyph name: wacute	Contours detected: 1	Expected: 2
    -
    -- Glyph name: uni25CC	Contours detected: 8	Expected: 16 or 12
    -
    -- Glyph name: A	Contours detected: 1	Expected: 2
    -
    -- Glyph name: Aacute	Contours detected: 2	Expected: 3
    -
    -- Glyph name: Abreve	Contours detected: 2	Expected: 3
    -
    -- Glyph name: Acircumflex	Contours detected: 2	Expected: 3
    -
    -- Glyph name: Adieresis	Contours detected: 3	Expected: 4
    -
    -- Glyph name: Agrave	Contours detected: 2	Expected: 3
    -
    -- Glyph name: Amacron	Contours detected: 2	Expected: 3
    -
    -- Glyph name: Atilde	Contours detected: 2	Expected: 3
    -
    -- Glyph name: Eng	Contours detected: 2	Expected: 1
    -
    -- Glyph name: Uogonek	Contours detected: 2	Expected: 1
    -
    -- Glyph name: aogonek	Contours detected: 3	Expected: 2
    -
    -- Glyph name: braceleft	Contours detected: 2	Expected: 1
    -
    -- Glyph name: eogonek	Contours detected: 3	Expected: 2
    -
    -- Glyph name: g	Contours detected: 1	Expected: 2 or 3
    -
    -- Glyph name: gbreve	Contours detected: 2	Expected: 3 or 4
    -
    -- Glyph name: gcircumflex	Contours detected: 2	Expected: 3 or 4
    -
    -- Glyph name: gdotaccent	Contours detected: 2	Expected: 3 or 4
    -
    -- Glyph name: o	Contours detected: 1	Expected: 2
    -
    -- Glyph name: oacute	Contours detected: 2	Expected: 3
    -
    -- Glyph name: ocircumflex	Contours detected: 2	Expected: 3
    -
    -- Glyph name: odieresis	Contours detected: 3	Expected: 4
    -
    -- Glyph name: ograve	Contours detected: 2	Expected: 3
    -
    -- Glyph name: ohungarumlaut	Contours detected: 3	Expected: 4
    -
    -- Glyph name: omacron	Contours detected: 2	Expected: 3
    -
    -- Glyph name: otilde	Contours detected: 2	Expected: 3
    -
    -- Glyph name: uni0123	Contours detected: 2	Expected: 3 or 4
    -
    -- Glyph name: uni0910	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni091B	Contours detected: 1	Expected: 2
    -
    -- Glyph name: uni092D	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni092E	Contours detected: 3	Expected: 2
    -
    -- Glyph name: uni093D	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0945	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0955	Contours detected: 3	Expected: 2
    -
    -- Glyph name: uni0956	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0957	Contours detected: 3	Expected: 2
    -
    -- Glyph name: uni0962	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0963	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0967	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0970	Contours detected: 1	Expected: 2
    -
    -- Glyph name: uni097F	Contours detected: 2	Expected: 3
    -
    -- Glyph name: uni1E4D	Contours detected: 3	Expected: 4
    -
    -- Glyph name: uni25CC	Contours detected: 8	Expected: 16 or 12
    -
    -- Glyph name: uogonek	Contours detected: 2	Expected: 1
    -
    -- Glyph name: wacute	Contours detected: 1	Expected: 2
    -
    - [code: contour-count] - - - -
    -
    - -
    - ⚠️ WARN Check font contains no unreachable glyphs -
    - - - - - - - -* ⚠️ **WARN**

    The following glyphs could not be reached by codepoint or substitution rules:

    -
    - glyph094D
    -
    -- uni0930_uni094D.abvs
    -
    -- uni0930_uni094D.vatu
    -
    - [code: unreachable-glyphs] - - - -
    -
    - -
    - ⚠️ WARN Validate size, and resolution of article images, and ensure article page has minimum length and includes visual assets. -
    - - - - - - - -* ⚠️ **WARN**

    Family metadata at fonts/ttf does not have an article.

    - [code: lacks-article] - - - -
    -
    - -
    - ⚠️ WARN Check for codepoints not covered by METADATA subsets. -
    - - - - - - - -* ⚠️ **WARN**

    The following codepoints supported by the font are not covered by -any subsets defined in the font's metadata file, and will never -be served. You can solve this by either manually adding additional -subset declarations to METADATA.pb, or by editing the glyphset -definitions.

    -
      -
    • U+02D8 BREVE: try adding one of: canadian-aboriginal, yi
    • -
    • U+02D9 DOT ABOVE: try adding one of: canadian-aboriginal, yi
    • -
    • U+02DB OGONEK: try adding one of: canadian-aboriginal, yi
    • -
    • U+0302 COMBINING CIRCUMFLEX ACCENT: try adding one of: math, tifinagh, coptic, cherokee
    • -
    • U+0305 COMBINING OVERLINE: try adding one of: coptic, glagolitic, gothic, elbasan, math
    • -
    • U+0306 COMBINING BREVE: try adding one of: old-permic, tifinagh
    • -
    • U+0307 COMBINING DOT ABOVE: try adding one of: duployan, malayalam, hebrew, old-permic, todhri, tai-le, coptic, tifinagh, math, syriac, canadian-aboriginal
    • -
    • U+030A COMBINING RING ABOVE: try adding one of: duployan, syriac
    • -
    • U+030B COMBINING DOUBLE ACUTE ACCENT: try adding one of: cherokee, osage
    • -
    • U+030C COMBINING CARON: try adding one of: tai-le, cherokee
    • -
    • U+0326 COMBINING COMMA BELOW: try adding math
    • -
    • U+0327 COMBINING CEDILLA: try adding math
    • -
    • U+0328 COMBINING OGONEK: not included in any glyphset definition
    • -
    • U+0331 COMBINING MACRON BELOW: try adding one of: gothic, thai, tifinagh, caucasian-albanian, syriac, sunuwar, cherokee
    • -
    • U+2021 DOUBLE DAGGER: try adding adlam
    • -
    • U+2030 PER MILLE SIGN: try adding adlam
    • -
    • U+FB01 LATIN SMALL LIGATURE FI: not included in any glyphset definition
    • -
    • U+FB02 LATIN SMALL LIGATURE FL: not included in any glyphset definition
    • -
    -

    Or you can add the above codepoints to one of the subsets supported by the font: devanagari, latin, latin-ext

    - [code: unreachable-subsetting] - - - -
    -
    - -
    - ⚠️ WARN Ensure soft_dotted characters lose their dot when combined with marks that replace the dot. -
    - - - - - - - -* ⚠️ **WARN**

    The dot of soft dotted characters used in orthographies must disappear in the following strings: i̊ i̋ j̀ j́ j̃ j̄ j̈ į̀ į́ į̂ į̃ į̄ į̌

    -

    The dot of soft dotted characters should disappear in other cases, for example: i̅ i̇ ỉ ǐ ị̅ ị̇ ị̉ ị̊ ị̋ ị̌ i̦̅ i̦̇ ỉ̦ i̦̊ i̦̋ ǐ̦ i̧̅ i̧̇ ỉ̧ i̧̊

    -

    Your font fully covers the following languages that require the soft-dotted feature: Lithuanian (Latn, 2,357,094 speakers).

    -

    Your font does not cover the following languages that require the soft-dotted feature: Nzakara (Latn, 50,000 speakers), Bete-Bendi (Latn, 100,000 speakers), Makaa (Latn, 221,000 speakers), Ejagham (Latn, 120,000 speakers), Igbo (Latn, 27,823,640 speakers), Zapotec (Latn, 490,000 speakers), Aghem (Latn, 38,843 speakers), Yala (Latn, 200,000 speakers), Ukrainian (Cyrl, 29,273,587 speakers), Sar (Latn, 500,000 speakers), Koonzime (Latn, 40,000 speakers), Mundani (Latn, 34,000 speakers), Dutch (Latn, 31,709,104 speakers), Ngbaka (Latn, 1,020,000 speakers), Ekpeye (Latn, 226,000 speakers), Avokaya (Latn, 100,000 speakers), Mango (Latn, 77,000 speakers), Southern Kisi (Latn, 360,000 speakers), Gulay (Latn, 250,478 speakers), Cicipu (Latn, 44,000 speakers), Basaa (Latn, 332,940 speakers), Dii (Latn, 71,000 speakers), South Central Banda (Latn, 244,000 speakers), Lugbara (Latn, 2,200,000 speakers), Navajo (Latn, 166,319 speakers), Nateni (Latn, 100,000 speakers), Kom (Latn, 360,685 speakers), Belarusian (Cyrl, 10,064,517 speakers), Ma’di (Latn, 584,000 speakers), Ebira (Latn, 2,200,000 speakers), Mfumte (Latn, 79,000 speakers), Bafut (Latn, 158,146 speakers), Vute (Latn, 21,000 speakers), Kpelle, Guinea (Latn, 622,000 speakers), Fur (Latn, 1,230,163 speakers), Ijo, Southeast (Latn, 2,471,000 speakers), Dan (Latn, 1,099,244 speakers).

    - [code: soft-dotted] - - - -
    -
    - -
    - ⚠️ WARN Do outlines contain any jaggy segments? -
    - - - - - - - -* ⚠️ **WARN**

    The following glyphs have jaggy segments:

    -
    * uni0913 (U+0913): L<<1120.0,1550.0>--<1116.0,1549.0>>/L<<1116.0,1549.0>--<1298.0,1549.0>> = 14.036243467926484
    -
    -* uni093D (U+093D): L<<179.0,104.0>--<190.0,127.0>>/L<<190.0,127.0>--<179.0,107.0>> = 3.250828571149245
    -
    -* uni0944 (U+0944): L<<-130.0,-841.0>--<-527.0,-942.0>>/L<<-527.0,-942.0>--<-527.0,-942.0>> = 14.273702414211385
    -
    -* uni0944 (U+0944): L<<-527.0,-942.0>--<-527.0,-942.0>>/L<<-527.0,-942.0>--<-539.0,-945.0>> = 14.036243467926484
    -
    -* uni0944 (U+0944): L<<-539.0,-945.0>--<-547.0,-947.0>>/L<<-547.0,-947.0>--<-547.0,-947.0>> = 14.036243467926484
    -
    -* uni0944 (U+0944): L<<-547.0,-947.0>--<-547.0,-947.0>>/L<<-547.0,-947.0>--<-591.0,-958.0>> = 14.036243467926484
    -
    -* uni0968 (U+0968): L<<45.0,486.0>--<64.0,488.0>>/L<<64.0,488.0>--<48.0,488.0>> = 6.009005957494474
    -
    - [code: found-jaggy-segments] - - - -
    -
    - -
    - ⚠️ WARN Do outlines contain any semi-vertical or semi-horizontal lines? -
    - - - - - - - -* ⚠️ **WARN**

    The following glyphs have semi-vertical/semi-horizontal lines:

    -
    * a (U+0061): L<<353.0,1024.0>--<1001.0,1023.0>>
    -
    -* aacute (U+00E1): L<<353.0,1024.0>--<1001.0,1023.0>>
    -
    -* abreve (U+0103): L<<353.0,1024.0>--<1001.0,1023.0>>
    -
    -* acircumflex (U+00E2): L<<353.0,1024.0>--<1001.0,1023.0>>
    -
    -* adieresis (U+00E4): L<<353.0,1024.0>--<1001.0,1023.0>>
    -
    -* agrave (U+00E0): L<<353.0,1024.0>--<1001.0,1023.0>>
    -
    -* amacron (U+0101): L<<353.0,1024.0>--<1001.0,1023.0>>
    -
    -* aogonek (U+0105): L<<353.0,1024.0>--<1001.0,1023.0>>
    -
    -* aring (U+00E5): L<<353.0,1024.0>--<1001.0,1023.0>>
    -
    -* atilde (U+00E3): L<<353.0,1024.0>--<1001.0,1023.0>>
    -
    -* backslash (U+005C): L<<466.0,0.0>--<475.0,1550.0>>
    -
    -* trademark (U+2122): L<<699.0,905.0>--<700.0,1123.0>>
    -
    -* uni0938_uni094D.haln: L<<-182.0,659.0>--<-186.0,0.0>>
    -
    -* uni0943 (U+0943): L<<-431.0,-169.0>--<-428.0,-566.0>>
    -
    -* uni0943 (U+0943): L<<-501.0,-590.0>--<-504.0,-132.0>>
    -
    -* uni0947_uni0902.abvs: L<<126.0,1553.0>--<127.0,1724.0>>
    -
    -* uni0947_uni0902.abvs: L<<127.0,1738.0>--<128.0,1962.0>>
    -
    -* uni0947_uni0930_uni094D.abvs: L<<105.0,1553.0>--<107.0,1962.0>>
    -
    -* uni1E42 (U+1E42): L<<663.0,1033.0>--<665.0,1470.0>>
    -
    - [code: found-semi-vertical] - - - -
    -
    - -
    - ⚠️ WARN Ensure fonts have ScriptLangTags declared on the 'meta' table. -
    - - - - - - - -* ⚠️ **WARN**

    This font file does not have a 'meta' table.

    - [code: lacks-meta-table] - - - -
    -
    - -
    - ⚠️ WARN Checking OS/2 achVendID. -
    - - - - - - - -* ⚠️ **WARN**

    OS/2 VendorID value 'anir' is not yet recognized. If you registered it recently, then it's safe to ignore this warning message. Otherwise, you should set it to your own unique 4 character code, and register it with Microsoft at https://www.microsoft.com/typography/links/vendorlist.aspx

    - [code: unknown] - - - -
    -
    -
    -
    - -
    [22] Samaano-Wide-Bold-Slanted.ttf -
    -
    - 🔥 FAIL Checking correctness of monospaced metadata. -
    - - - - - - - -* 🔥 **FAIL**

    On monospaced fonts, the value of post.isFixedPitch must be set to a non-zero value (meaning 'fixed width monospaced'), but got 0 instead.

    - [code: mono-bad-post-isFixedPitch] - - - -* ⚠️ **WARN**

    The OpenType spec recommends at https://learn.microsoft.com/en-us/typography/opentype/spec/recom#hhea-table that hhea.numberOfHMetrics be set to 3 but this font has 445 instead. -Please read https://github.com/fonttools/fonttools/issues/3014 to decide whether this makes sense for your font.

    - [code: bad-numberOfHMetrics] - - - -
    -
    - -
    - 🔥 FAIL Ensure the font supports case swapping for all its glyphs. -
    - - - - - - - -* 🔥 **FAIL**

    The following glyphs lack their case-swapping counterparts:

    - - - - - - - - - - - - - -
    Glyph present in the fontMissing case-swapping counterpart
    U+0189: LATIN CAPITAL LETTER AFRICAN DU+0256: LATIN SMALL LETTER D WITH TAIL
    - [code: missing-case-counterparts] - - - -
    -
    - -
    - 🔥 FAIL Check if each glyph has the recommended amount of contours. -
    - - - - - - - -* 🔥 **FAIL**

    The following glyphs have no contours even though they were expected to have some:

    -
    - Glyph name: kgreenlandic	Expected: 1 or 2
    -
    -- Glyph name: Tbar	Expected: 1
    -
    -- Glyph name: tbar	Expected: 1
    -
    -- Glyph name: Tbar	Expected: 1
    -
    -- Glyph name: kgreenlandic	Expected: 1 or 2
    -
    -- Glyph name: tbar	Expected: 1
    -
    - [code: no-contour] - - - -* ⚠️ **WARN**

    This check inspects the glyph outlines and detects the total number of contours in each of them. The expected values are infered from the typical ammounts of contours observed in a large collection of reference font families. The divergences listed below may simply indicate a significantly different design on some of your glyphs. On the other hand, some of these may flag actual bugs in the font such as glyphs mapped to an incorrect codepoint. Please consider reviewing the design and codepoint assignment of these to make sure they are correct.

    -

    The following glyphs do not have the recommended number of contours:

    -
    - Glyph name: parenleft	Contours detected: 2	Expected: 1
    -
    -- Glyph name: D	Contours detected: 1	Expected: 2
    -
    -- Glyph name: Z	Contours detected: 2	Expected: 1
    -
    -- Glyph name: braceleft	Contours detected: 2	Expected: 1
    -
    -- Glyph name: mu	Contours detected: 2	Expected: 1
    -
    -- Glyph name: germandbls	Contours detected: 3	Expected: 1
    -
    -- Glyph name: aogonek	Contours detected: 3	Expected: 2
    -
    -- Glyph name: Dcaron	Contours detected: 2	Expected: 3
    -
    -- Glyph name: Dcroat	Contours detected: 1	Expected: 2
    -
    -- Glyph name: eogonek	Contours detected: 3	Expected: 2
    -
    -- Glyph name: Uogonek	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uogonek	Contours detected: 2	Expected: 1
    -
    -- Glyph name: Zacute	Contours detected: 3	Expected: 2
    -
    -- Glyph name: Zdotaccent	Contours detected: 3	Expected: 2
    -
    -- Glyph name: Zcaron	Contours detected: 3	Expected: 2
    -
    -- Glyph name: Eth	Contours detected: 1	Expected: 2
    -
    -- Glyph name: uni01C5	Contours detected: 3	Expected: 4
    -
    -- Glyph name: uni090B	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0916	Contours detected: 2	Expected: 1 or 3
    -
    -- Glyph name: uni091B	Contours detected: 1	Expected: 2
    -
    -- Glyph name: uni092D	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni092E	Contours detected: 3	Expected: 2
    -
    -- Glyph name: uni093D	Contours detected: 3	Expected: 1
    -
    -- Glyph name: uni0945	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0955	Contours detected: 3	Expected: 2
    -
    -- Glyph name: uni0956	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0957	Contours detected: 3	Expected: 2
    -
    -- Glyph name: uni0959	Contours detected: 3	Expected: 2 or 4
    -
    -- Glyph name: uni0960	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0962	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0963	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0967	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0970	Contours detected: 1	Expected: 2
    -
    -- Glyph name: uni097F	Contours detected: 2	Expected: 3
    -
    -- Glyph name: uni1E0C	Contours detected: 2	Expected: 3
    -
    -- Glyph name: uni1E9E	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni25CC	Contours detected: 8	Expected: 16 or 12
    -
    -- Glyph name: D	Contours detected: 1	Expected: 2
    -
    -- Glyph name: Dcaron	Contours detected: 2	Expected: 3
    -
    -- Glyph name: Dcroat	Contours detected: 1	Expected: 2
    -
    -- Glyph name: Eth	Contours detected: 1	Expected: 2
    -
    -- Glyph name: Uogonek	Contours detected: 2	Expected: 1
    -
    -- Glyph name: Z	Contours detected: 2	Expected: 1
    -
    -- Glyph name: Zacute	Contours detected: 3	Expected: 2
    -
    -- Glyph name: Zcaron	Contours detected: 3	Expected: 2
    -
    -- Glyph name: Zdotaccent	Contours detected: 3	Expected: 2
    -
    -- Glyph name: aogonek	Contours detected: 3	Expected: 2
    -
    -- Glyph name: braceleft	Contours detected: 2	Expected: 1
    -
    -- Glyph name: eogonek	Contours detected: 3	Expected: 2
    -
    -- Glyph name: germandbls	Contours detected: 3	Expected: 1
    -
    -- Glyph name: parenleft	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni01C5	Contours detected: 3	Expected: 4
    -
    -- Glyph name: uni090B	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0916	Contours detected: 2	Expected: 1 or 3
    -
    -- Glyph name: uni091B	Contours detected: 1	Expected: 2
    -
    -- Glyph name: uni092D	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni092E	Contours detected: 3	Expected: 2
    -
    -- Glyph name: uni093D	Contours detected: 3	Expected: 1
    -
    -- Glyph name: uni0945	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0955	Contours detected: 3	Expected: 2
    -
    -- Glyph name: uni0956	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0957	Contours detected: 3	Expected: 2
    -
    -- Glyph name: uni0959	Contours detected: 3	Expected: 2 or 4
    -
    -- Glyph name: uni0960	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0962	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0963	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0967	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0970	Contours detected: 1	Expected: 2
    -
    -- Glyph name: uni097F	Contours detected: 2	Expected: 3
    -
    -- Glyph name: uni1E0C	Contours detected: 2	Expected: 3
    -
    -- Glyph name: uni1E9E	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni25CC	Contours detected: 8	Expected: 16 or 12
    -
    -- Glyph name: uogonek	Contours detected: 2	Expected: 1
    -
    - [code: contour-count] - - - -
    -
    - -
    - 🔥 FAIL Checking OS/2 usWinAscent & usWinDescent. -
    - - - - - - - -* 🔥 **FAIL**

    OS/2.usWinDescent value should be equal or greater than 978, but got 958 instead

    - [code: descent] - - - -
    -
    - -
    - 🔥 FAIL Shapes languages in all GF glyphsets. -
    - - - - - - - -* 🔥 **FAIL**

    GF_Latin_Core glyphset:

    - - - - - - - - - - - - - -
    LanguageFAIL messages
    nl_Latn (Dutch)Shaper didn't attach acutecomb to j
    - [code: failed-language-shaping] - - - -
    -
    - -
    - 🔥 FAIL Check family name for GF Guide compliance. -
    - - - - - - - -* 🔥 **FAIL**

    "Samaano Wide-Bold-Slanted" contains the following characters which are not allowed: "-".

    - [code: forbidden-characters] - - - -
    -
    - -
    - 🔥 FAIL Checking file is named canonically. -
    - - - - - - - -* 🔥 **FAIL**

    Expected "SamaanoWide-Bold-Slanted-Regular.ttf. Got Samaano-Wide-Bold-Slanted.ttf.

    - [code: bad-filename] - - - -
    -
    - -
    - ⚠️ WARN Check glyphs in mark glyph class are non-spacing. -
    - - - - - - - -* ⚠️ **WARN**

    The following spacing glyphs may be in the GDEF mark glyph class by mistake: -glyph094D (unencoded), uni0331 (U+0331), uni0930_uni094D.blwf (unencoded), uni0930_uni094D.rphf (unencoded), uni093A (U+093A), uni093C (U+093C), uni0945 (U+0945), uni0946 (U+0946), uni0947 (U+0947), uni0948 (U+0948), uni0955 (U+0955), uni0956 (U+0956), uni0957 (U+0957), uni0962 (U+0962) and uni0963 (U+0963)

    - [code: spacing-mark-glyphs] - - - -
    -
    - -
    - ⚠️ WARN Check mark characters are in GDEF mark glyph class. -
    - - - - - - - -* ⚠️ **WARN**

    The following mark characters could be in the GDEF mark glyph class: -hookabovecomb (U+0309) and uni0305 (U+0305)

    - [code: mark-chars] - - - -
    -
    - -
    - ⚠️ WARN Does GPOS table have kerning information? This check skips monospaced fonts as defined by post.isFixedPitch value -
    - - - - - - - -* ⚠️ **WARN**

    GPOS table lacks kerning information.

    - [code: lacks-kern-info] - - - -
    -
    - -
    - ⚠️ WARN Check accent of Lcaron, dcaron, lcaron, tcaron -
    - - - - - - - - - -* ⚠️ **WARN**

    dcaron is decomposed and therefore could not be checked. Please check manually.

    - [code: decomposed-outline] - - - -* ⚠️ **WARN**

    Lcaron is decomposed and therefore could not be checked. Please check manually.

    - [code: decomposed-outline] - - - -* ⚠️ **WARN**

    lcaron is decomposed and therefore could not be checked. Please check manually.

    - [code: decomposed-outline] - - - -* ⚠️ **WARN**

    tcaron is decomposed and therefore could not be checked. Please check manually.

    - [code: decomposed-outline] - - - -
    -
    - -
    - ⚠️ WARN Check font contains no unreachable glyphs -
    - - - - - - - -* ⚠️ **WARN**

    The following glyphs could not be reached by codepoint or substitution rules:

    -
    - glyph094D
    -
    -- uni0930_uni094D.abvs
    -
    -- uni0930_uni094D.vatu
    -
    - [code: unreachable-glyphs] - - - -
    -
    - -
    - ⚠️ WARN Validate size, and resolution of article images, and ensure article page has minimum length and includes visual assets. -
    - - - - - - - -* ⚠️ **WARN**

    Family metadata at fonts/ttf does not have an article.

    - [code: lacks-article] - - - -
    -
    - -
    - ⚠️ WARN Check for codepoints not covered by METADATA subsets. -
    - - - - - - - -* ⚠️ **WARN**

    The following codepoints supported by the font are not covered by -any subsets defined in the font's metadata file, and will never -be served. You can solve this by either manually adding additional -subset declarations to METADATA.pb, or by editing the glyphset -definitions.

    -
      -
    • U+02D8 BREVE: try adding one of: canadian-aboriginal, yi
    • -
    • U+02D9 DOT ABOVE: try adding one of: canadian-aboriginal, yi
    • -
    • U+02DB OGONEK: try adding one of: canadian-aboriginal, yi
    • -
    • U+0302 COMBINING CIRCUMFLEX ACCENT: try adding one of: math, tifinagh, coptic, cherokee
    • -
    • U+0305 COMBINING OVERLINE: try adding one of: coptic, glagolitic, gothic, elbasan, math
    • -
    • U+0306 COMBINING BREVE: try adding one of: old-permic, tifinagh
    • -
    • U+0307 COMBINING DOT ABOVE: try adding one of: duployan, malayalam, hebrew, old-permic, todhri, tai-le, coptic, tifinagh, math, syriac, canadian-aboriginal
    • -
    • U+030A COMBINING RING ABOVE: try adding one of: duployan, syriac
    • -
    • U+030B COMBINING DOUBLE ACUTE ACCENT: try adding one of: cherokee, osage
    • -
    • U+030C COMBINING CARON: try adding one of: tai-le, cherokee
    • -
    • U+0326 COMBINING COMMA BELOW: try adding math
    • -
    • U+0327 COMBINING CEDILLA: try adding math
    • -
    • U+0328 COMBINING OGONEK: not included in any glyphset definition
    • -
    • U+0331 COMBINING MACRON BELOW: try adding one of: gothic, thai, tifinagh, caucasian-albanian, syriac, sunuwar, cherokee
    • -
    • U+2021 DOUBLE DAGGER: try adding adlam
    • -
    • U+2030 PER MILLE SIGN: try adding adlam
    • -
    • U+FB01 LATIN SMALL LIGATURE FI: not included in any glyphset definition
    • -
    • U+FB02 LATIN SMALL LIGATURE FL: not included in any glyphset definition
    • -
    -

    Or you can add the above codepoints to one of the subsets supported by the font: devanagari, latin, latin-ext

    - [code: unreachable-subsetting] - - - -
    -
    - -
    - ⚠️ WARN Combined length of family and style must not exceed 32 characters. -
    - - - - - - - -* ⚠️ **WARN**

    Name ID 6 'SamaanoWide-Bold-Slanted-Regular' exceeds 27 characters. This has been found to cause problems with PostScript printers, especially on Mac platforms.

    - [code: nameid6-too-long] - - - -
    -
    - -
    - ⚠️ WARN Ensure soft_dotted characters lose their dot when combined with marks that replace the dot. -
    - - - - - - - -* ⚠️ **WARN**

    The dot of soft dotted characters used in orthographies must disappear in the following strings: i̊ i̋ j̀ j́ j̃ j̄ j̈ į̀ į́ į̂ į̃ į̄ į̌

    -

    The dot of soft dotted characters should disappear in other cases, for example: i̅ i̇ ỉ ǐ ị̅ ị̇ ị̉ ị̊ ị̋ ị̌ i̦̅ i̦̇ ỉ̦ i̦̊ i̦̋ ǐ̦ i̧̅ i̧̇ ỉ̧ i̧̊

    -

    Your font fully covers the following languages that require the soft-dotted feature: Lithuanian (Latn, 2,357,094 speakers).

    -

    Your font does not cover the following languages that require the soft-dotted feature: Nzakara (Latn, 50,000 speakers), Bete-Bendi (Latn, 100,000 speakers), Makaa (Latn, 221,000 speakers), Ejagham (Latn, 120,000 speakers), Igbo (Latn, 27,823,640 speakers), Zapotec (Latn, 490,000 speakers), Aghem (Latn, 38,843 speakers), Yala (Latn, 200,000 speakers), Ukrainian (Cyrl, 29,273,587 speakers), Sar (Latn, 500,000 speakers), Koonzime (Latn, 40,000 speakers), Mundani (Latn, 34,000 speakers), Dutch (Latn, 31,709,104 speakers), Ngbaka (Latn, 1,020,000 speakers), Ekpeye (Latn, 226,000 speakers), Avokaya (Latn, 100,000 speakers), Mango (Latn, 77,000 speakers), Southern Kisi (Latn, 360,000 speakers), Gulay (Latn, 250,478 speakers), Cicipu (Latn, 44,000 speakers), Basaa (Latn, 332,940 speakers), Dii (Latn, 71,000 speakers), South Central Banda (Latn, 244,000 speakers), Lugbara (Latn, 2,200,000 speakers), Navajo (Latn, 166,319 speakers), Nateni (Latn, 100,000 speakers), Kom (Latn, 360,685 speakers), Belarusian (Cyrl, 10,064,517 speakers), Ma’di (Latn, 584,000 speakers), Ebira (Latn, 2,200,000 speakers), Mfumte (Latn, 79,000 speakers), Bafut (Latn, 158,146 speakers), Vute (Latn, 21,000 speakers), Kpelle, Guinea (Latn, 622,000 speakers), Fur (Latn, 1,230,163 speakers), Ijo, Southeast (Latn, 2,471,000 speakers), Dan (Latn, 1,099,244 speakers).

    - [code: soft-dotted] - - - -
    -
    - -
    - ⚠️ WARN Are there any misaligned on-curve points? -
    - - - - - - - -* ⚠️ **WARN**

    The following glyphs have on-curve points which have potentially incorrect y coordinates:

    -
    * N (U+004E): X=1913.0,Y=2.0 (should be at baseline 0?)
    -
    -* N (U+004E): X=1711.0,Y=2.0 (should be at baseline 0?)
    -
    -* v (U+0076): X=1129.0,Y=1.0 (should be at baseline 0?)
    -
    -* v (U+0076): X=922.0,Y=1.0 (should be at baseline 0?)
    -
    -* Ntilde (U+00D1): X=1913.0,Y=2.0 (should be at baseline 0?)
    -
    -* Ntilde (U+00D1): X=1711.0,Y=2.0 (should be at baseline 0?)
    -
    -* Nacute (U+0143): X=1913.0,Y=2.0 (should be at baseline 0?)
    -
    -* Nacute (U+0143): X=1711.0,Y=2.0 (should be at baseline 0?)
    -
    -* uni0145 (U+0145): X=1913.0,Y=2.0 (should be at baseline 0?)
    -
    -* uni0145 (U+0145): X=1711.0,Y=2.0 (should be at baseline 0?)
    -
    -* Ncaron (U+0147): X=1913.0,Y=2.0 (should be at baseline 0?)
    -
    -* Ncaron (U+0147): X=1711.0,Y=2.0 (should be at baseline 0?)
    -
    -* Eng (U+014A): X=675.0,Y=1547.0 (should be at cap-height 1548?)
    -
    -* Eng (U+014A): X=876.0,Y=1547.0 (should be at cap-height 1548?)
    -
    -* uni1E44 (U+1E44): X=1913.0,Y=2.0 (should be at baseline 0?)
    -
    -* uni1E44 (U+1E44): X=1711.0,Y=2.0 (should be at baseline 0?)
    -
    -* uni1E46 (U+1E46): X=1913.0,Y=2.0 (should be at baseline 0?)
    -
    -* uni1E46 (U+1E46): X=1711.0,Y=2.0 (should be at baseline 0?)
    -
    -* uni1E48 (U+1E48): X=1913.0,Y=2.0 (should be at baseline 0?)
    -
    -* uni1E48 (U+1E48): X=1711.0,Y=2.0 (should be at baseline 0?)
    -
    -* uni094A_uni0930_uni094D.abvs: X=2505.0,Y=1549.0 (should be at cap-height 1548?)
    -
    -* uni094A_uni0930_uni094D.abvs: X=2703.0,Y=1549.0 (should be at cap-height 1548?)
    -
    -* uni095C_uni0930_uni094D.vatu: X=282.0,Y=1.0 (should be at baseline 0?)
    -
    -* uni095C_uni0930_uni094D.vatu: X=548.0,Y=1.0 (should be at baseline 0?)
    -
    - [code: found-misalignments] - - - -
    -
    - -
    - ⚠️ WARN Do any segments have colinear vectors? -
    - - - - - - - -* ⚠️ **WARN**

    The following glyphs have colinear vectors:

    -
    * G (U+0047): L<<1995.0,202.0>--<1964.0,118.0>> -> L<<1964.0,118.0>--<1928.0,18.0>>
    -
    -* Gbreve (U+011E): L<<1995.0,202.0>--<1964.0,118.0>> -> L<<1964.0,118.0>--<1928.0,18.0>>
    -
    -* Gcircumflex (U+011C): L<<1995.0,202.0>--<1964.0,118.0>> -> L<<1964.0,118.0>--<1928.0,18.0>>
    -
    -* Gdotaccent (U+0120): L<<1995.0,202.0>--<1964.0,118.0>> -> L<<1964.0,118.0>--<1928.0,18.0>>
    -
    -* S (U+0053): L<<512.0,1028.0>--<661.0,1438.0>> -> L<<661.0,1438.0>--<697.0,1537.0>>
    -
    -* Sacute (U+015A): L<<512.0,1028.0>--<661.0,1438.0>> -> L<<661.0,1438.0>--<697.0,1537.0>>
    -
    -* Scaron (U+0160): L<<512.0,1028.0>--<661.0,1438.0>> -> L<<661.0,1438.0>--<697.0,1537.0>>
    -
    -* Scedilla (U+015E): L<<512.0,1028.0>--<661.0,1438.0>> -> L<<661.0,1438.0>--<697.0,1537.0>>
    -
    -* Scircumflex (U+015C): L<<512.0,1028.0>--<661.0,1438.0>> -> L<<661.0,1438.0>--<697.0,1537.0>>
    -
    -* Z (U+005A): L<<185.0,211.0>--<185.0,211.0>> -> L<<185.0,211.0>--<185.0,211.0>>
    -
    -* Zacute (U+0179): L<<185.0,211.0>--<185.0,211.0>> -> L<<185.0,211.0>--<185.0,211.0>>
    -
    -* Zcaron (U+017D): L<<185.0,211.0>--<185.0,211.0>> -> L<<185.0,211.0>--<185.0,211.0>>
    -
    -* Zdotaccent (U+017B): L<<185.0,211.0>--<185.0,211.0>> -> L<<185.0,211.0>--<185.0,211.0>>
    -
    -* ampersand (U+0026): L<<1842.0,1446.0>--<1653.0,926.0>> -> L<<1653.0,926.0>--<1623.0,843.0>>
    -
    -* cedilla (U+00B8): L<<1250.0,5.0>--<1127.0,-333.0>> -> L<<1127.0,-333.0>--<1100.0,-406.0>>
    -
    -* nine (U+0039): L<<333.0,759.0>--<616.0,1537.0>> -> L<<616.0,1537.0>--<623.0,1554.0>>
    -
    -* six (U+0036): L<<41.0,0.0>--<114.0,201.0>> -> L<<114.0,201.0>--<604.0,1548.0>>
    -
    -* uni0122 (U+0122): L<<1995.0,202.0>--<1964.0,118.0>> -> L<<1964.0,118.0>--<1928.0,18.0>>
    -
    -* uni01C4 (U+01C4): L<<973.0,211.0>--<973.0,211.0>> -> L<<973.0,211.0>--<973.0,211.0>>
    -
    -* uni0218 (U+0218): L<<886.0,1028.0>--<1185.0,1439.0>> -> L<<1185.0,1439.0>--<1257.0,1537.0>>
    -
    -* uni0907 (U+0907): L<<1703.0,1205.0>--<1694.0,1181.0>> -> L<<1694.0,1181.0>--<1668.0,1110.0>>
    -
    -* uni0907 (U+0907): L<<419.0,681.0>--<473.0,831.0>> -> L<<473.0,831.0>--<536.0,1004.0>>
    -
    -* uni0907 (U+0907): L<<536.0,1004.0>--<593.0,1160.0>> -> L<<593.0,1160.0>--<601.0,1181.0>>
    -
    -* uni0908 (U+0908): L<<419.0,681.0>--<473.0,831.0>> -> L<<473.0,831.0>--<536.0,1004.0>>
    -
    -* uni0908 (U+0908): L<<536.0,1004.0>--<593.0,1160.0>> -> L<<593.0,1160.0>--<601.0,1181.0>>
    -
    -* uni090C (U+090C): L<<265.0,590.0>--<309.0,713.0>> -> L<<309.0,713.0>--<333.0,777.0>>
    -
    -* uni090D (U+090D): L<<1254.0,358.0>--<1242.0,325.0>> -> L<<1242.0,325.0>--<1232.0,297.0>>
    -
    -* uni090E (U+090E): L<<2647.0,1858.0>--<2614.0,1765.0>> -> L<<2614.0,1765.0>--<2578.0,1667.0>>
    -
    -* uni0915_uni094D_uni0937.akhn: L<<2337.0,1078.0>--<2299.0,972.0>> -> L<<2299.0,972.0>--<1945.0,0.0>>
    -
    -* uni0919 (U+0919): L<<114.0,0.0>--<161.0,130.0>> -> L<<161.0,130.0>--<268.0,423.0>>
    -
    -* uni0919 (U+0919): L<<453.0,620.0>--<499.0,747.0>> -> L<<499.0,747.0>--<621.0,1083.0>>
    -
    -* uni0919_uni0930_uni094D.vatu: L<<226.0,308.0>--<275.0,443.0>> -> L<<275.0,443.0>--<296.0,501.0>>
    -
    -* uni0919_uni0930_uni094D.vatu: L<<529.0,829.0>--<598.0,1020.0>> -> L<<598.0,1020.0>--<599.0,1023.0>>
    -
    -* uni0919_uni094D.half: L<<153.0,108.0>--<202.0,243.0>> -> L<<202.0,243.0>--<224.0,301.0>>
    -
    -* uni0919_uni094D.haln: L<<114.0,0.0>--<209.0,130.0>> -> L<<209.0,130.0>--<422.0,423.0>>
    -
    -* uni091B (U+091B): L<<1816.0,808.0>--<1560.0,104.0>> -> L<<1560.0,104.0>--<1522.0,0.0>>
    -
    -* uni091B_uni0930_uni094D.vatu: L<<1851.0,905.0>--<1639.0,321.0>> -> L<<1639.0,321.0>--<1620.0,270.0>>
    -
    -* uni091B_uni094D.haln: L<<2110.0,808.0>--<1610.0,121.0>> -> L<<1610.0,121.0>--<1522.0,0.0>>
    -
    -* uni091E (U+091E): L<<1293.0,460.0>--<1258.0,364.0>> -> L<<1258.0,364.0>--<1241.0,316.0>>
    -
    -* uni091E_uni094D.half: L<<1553.0,460.0>--<1518.0,364.0>> -> L<<1518.0,364.0>--<1501.0,316.0>>
    -
    -* uni091F_uni0930_uni094D.vatu: L<<196.0,305.0>--<236.0,414.0>> -> L<<236.0,414.0>--<267.0,501.0>>
    -
    -* uni0921 (U+0921): L<<616.0,638.0>--<635.0,690.0>> -> L<<635.0,690.0>--<656.0,746.0>>
    -
    -* uni0921_uni0930_uni094D.vatu: L<<1886.0,837.0>--<1870.0,794.0>> -> L<<1870.0,794.0>--<1642.0,164.0>>
    -
    -* uni0922_uni0930_uni094D.vatu: L<<210.0,305.0>--<254.0,425.0>> -> L<<254.0,425.0>--<281.0,501.0>>
    -
    -* uni0925 (U+0925): L<<316.0,810.0>--<339.0,873.0>> -> L<<339.0,873.0>--<365.0,946.0>>
    -
    -* uni0925_uni0930_uni094D.vatu: L<<316.0,810.0>--<338.0,870.0>> -> L<<338.0,870.0>--<365.0,946.0>>
    -
    -* uni0925_uni094D.half: L<<316.0,810.0>--<339.0,873.0>> -> L<<339.0,873.0>--<365.0,946.0>>
    -
    -* uni0925_uni094D.haln: L<<611.0,810.0>--<656.0,873.0>> -> L<<656.0,873.0>--<710.0,946.0>>
    -
    -* uni092A_uni094D.haln: L<<710.0,825.0>--<725.0,846.0>> -> L<<725.0,846.0>--<1091.0,1349.0>>
    -
    -* uni092B_uni094D.haln: L<<709.0,824.0>--<784.0,927.0>> -> L<<784.0,927.0>--<1091.0,1349.0>>
    -
    -* uni0932_uni094D.haln: L<<462.0,582.0>--<514.0,654.0>> -> L<<514.0,654.0>--<550.0,703.0>>
    -
    -* uni0933_uni094D.haln: L<<462.0,582.0>--<514.0,654.0>> -> L<<514.0,654.0>--<550.0,703.0>>
    -
    -* uni0934_uni094D.haln: L<<467.0,582.0>--<519.0,654.0>> -> L<<519.0,654.0>--<555.0,703.0>>
    -
    -* uni0936_uni094D.haln: L<<941.0,1224.0>--<1118.0,1467.0>> -> L<<1118.0,1467.0>--<1177.0,1548.0>>
    -
    -* uni0937 (U+0937): L<<2273.0,981.0>--<2273.0,981.0>> -> L<<2273.0,981.0>--<2273.0,981.0>>
    -
    -* uni0937 (U+0937): L<<394.0,824.0>--<455.0,992.0>> -> L<<455.0,992.0>--<585.0,1350.0>>
    -
    -* uni0937_uni0930_uni094D.vatu: L<<2273.0,981.0>--<2273.0,981.0>> -> L<<2273.0,981.0>--<2273.0,981.0>>
    -
    -* uni0937_uni0930_uni094D.vatu: L<<394.0,824.0>--<455.0,992.0>> -> L<<455.0,992.0>--<585.0,1350.0>>
    -
    -* uni0937_uni094D.half: L<<594.0,824.0>--<655.0,992.0>> -> L<<655.0,992.0>--<785.0,1350.0>>
    -
    -* uni0937_uni094D.haln: L<<2630.0,981.0>--<2630.0,981.0>> -> L<<2630.0,981.0>--<2630.0,981.0>>
    -
    -* uni0937_uni094D.haln: L<<694.0,824.0>--<816.0,992.0>> -> L<<816.0,992.0>--<1077.0,1350.0>>
    -
    -* uni0938 (U+0938): L<<419.0,729.0>--<450.0,814.0>> -> L<<450.0,814.0>--<466.0,858.0>>
    -
    -* uni0938_uni0930_uni094D.vatu: L<<423.0,729.0>--<454.0,814.0>> -> L<<454.0,814.0>--<470.0,858.0>>
    -
    -* uni0938_uni094D.half: L<<619.0,729.0>--<650.0,814.0>> -> L<<650.0,814.0>--<666.0,858.0>>
    -
    -* uni0938_uni094D.haln: L<<685.0,729.0>--<764.0,838.0>> -> L<<764.0,838.0>--<779.0,858.0>>
    -
    -* uni0939 (U+0939): L<<1689.0,789.0>--<1656.0,698.0>> -> L<<1656.0,698.0>--<1636.0,643.0>>
    -
    -* uni0939_uni0930_uni094D.vatu: L<<1989.0,789.0>--<1946.0,671.0>> -> L<<1946.0,671.0>--<1936.0,643.0>>
    -
    -* uni0940_uni0930_uni094D.abvs: L<<2763.0,1869.0>--<2764.0,1870.0>> -> L<<2764.0,1870.0>--<2765.0,1871.0>>
    -
    -* uni0943 (U+0943): L<<-834.0,-611.0>--<-835.0,-495.0>> -> L<<-835.0,-495.0>--<-836.0,-455.0>>
    -
    -* uni0943 (U+0943): L<<-836.0,-455.0>--<-837.0,-270.0>> -> L<<-837.0,-270.0>--<-838.0,-133.0>>
    -
    -* uni0943 (U+0943): L<<-838.0,-132.0>--<-775.0,-122.0>> -> L<<-775.0,-122.0>--<-5.0,9.0>>
    -
    -* uni0945_uni0930_uni094D.abvs: L<<1888.0,1869.0>--<1889.0,1870.0>> -> L<<1889.0,1870.0>--<1890.0,1871.0>>
    -
    -* uni0946 (U+0946): L<<874.0,1858.0>--<870.0,1846.0>> -> L<<870.0,1846.0>--<840.0,1763.0>>
    -
    -* uni0946_uni0902.abvs: L<<1551.0,1858.0>--<1521.0,1817.0>> -> L<<1521.0,1817.0>--<1481.0,1763.0>>
    -
    -* uni0946_uni0930_uni094D.abvs: L<<1551.0,1858.0>--<1521.0,1817.0>> -> L<<1521.0,1817.0>--<1481.0,1763.0>>
    -
    -* uni0946_uni0930_uni094D.abvs: L<<1809.0,1861.0>--<1810.0,1862.0>> -> L<<1810.0,1862.0>--<1811.0,1863.0>>
    -
    -* uni0947_uni0930_uni094D.abvs: L<<1785.0,1861.0>--<1786.0,1862.0>> -> L<<1786.0,1862.0>--<1787.0,1863.0>>
    -
    -* uni0949_uni0930_uni094D.abvs: L<<3315.0,1875.0>--<3316.0,1876.0>> -> L<<3316.0,1876.0>--<3317.0,1877.0>>
    -
    -* uni094B_uni0930_uni094D.abvs: L<<2511.0,1880.0>--<2512.0,1881.0>> -> L<<2512.0,1881.0>--<2513.0,1882.0>>
    -
    -* uni094F (U+094F): L<<1109.0,1866.0>--<1048.0,1697.0>> -> L<<1048.0,1697.0>--<996.0,1555.0>>
    -
    -* uni095C (U+095C): L<<616.0,638.0>--<635.0,690.0>> -> L<<635.0,690.0>--<656.0,746.0>>
    -
    -* uni095C_uni0930_uni094D.vatu: L<<1886.0,837.0>--<1870.0,794.0>> -> L<<1870.0,794.0>--<1642.0,164.0>>
    -
    -* uni095D_uni0930_uni094D.vatu: L<<210.0,305.0>--<254.0,425.0>> -> L<<254.0,425.0>--<281.0,501.0>>
    -
    -* uni095E_uni094D.haln: L<<724.0,824.0>--<799.0,927.0>> -> L<<799.0,927.0>--<1106.0,1349.0>>
    -
    -* uni0961 (U+0961): L<<257.0,590.0>--<301.0,713.0>> -> L<<301.0,713.0>--<325.0,777.0>>
    -
    -* uni096A (U+096A): L<<193.0,95.0>--<201.0,118.0>> -> L<<201.0,118.0>--<242.0,230.0>>
    -
    -* uni096A (U+096A): L<<2056.0,317.0>--<1984.0,118.0>> -> L<<1984.0,118.0>--<1951.0,28.0>>
    -
    -* uni1E62 (U+1E62): L<<886.0,1028.0>--<1185.0,1439.0>> -> L<<1185.0,1439.0>--<1257.0,1537.0>>
    -
    - [code: found-colinear-vectors] - - - -
    -
    - -
    - ⚠️ WARN Do outlines contain any jaggy segments? -
    - - - - - - - -* ⚠️ **WARN**

    The following glyphs have jaggy segments:

    -
    * uni01C4 (U+01C4): L<<935.0,875.0>--<824.0,1350.0>>/L<<824.0,1350.0>--<824.0,1349.0>> = 13.153086583164342
    -
    -* uni01C5 (U+01C5): L<<1008.0,767.0>--<1007.0,772.0>>/L<<1007.0,772.0>--<1007.0,769.0>> = 11.309932474020227
    -
    -* uni0915_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1213.0,289.0>> = 13.978169517093123
    -
    -* uni0916_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1722.0,370.0>> = 12.49247557736108
    -
    -* uni0916_uni0930_uni094D.vatu: L<<52.0,0.0>--<1722.0,370.0>>/L<<1722.0,370.0>--<452.0,370.0>> = 12.49247557736108
    -
    -* uni0917_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1863.0,401.0>> = 12.485252069704043
    -
    -* uni0918_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1873.0,403.0>> = 12.478825942667704
    -
    -* uni091A_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1803.0,388.0>> = 12.494156501091224
    -
    -* uni091B_uni0930_uni094D.vatu: L<<960.0,0.0>--<536.0,0.0>>/L<<536.0,0.0>--<1399.0,215.0>> = 13.989369374610066
    -
    -* uni091C_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1865.0,402.0>> = 12.50203554615018
    -
    -* uni091E_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1905.0,411.0>> = 12.50588808887614
    -
    -* uni0923_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1888.0,407.0>> = 12.499065987539916
    -
    -* uni0924_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1521.0,325.0>> = 12.475109712208948
    -
    -* uni0925_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1550.0,332.0>> = 12.496405179302853
    -
    -* uni0925_uni0930_uni094D.vatu: L<<52.0,0.0>--<1550.0,332.0>>/L<<1550.0,332.0>--<142.0,332.0>> = 12.496405179302853
    -
    -* uni0926_uni094D.half: L<<1617.0,178.0>--<1616.0,177.0>>/L<<1616.0,177.0>--<1619.0,179.0>> = 11.309932474020227
    -
    -* uni0927_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1523.0,326.0>> = 12.495810359397797
    -
    -* uni0927_uni0930_uni094D.vatu: L<<52.0,0.0>--<1523.0,326.0>>/L<<1523.0,326.0>--<209.0,326.0>> = 12.495810359397797
    -
    -* uni0928_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1877.0,404.0>> = 12.482260924684706
    -
    -* uni0929_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1874.0,404.0>> = 12.502167804288424
    -
    -* uni092A_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1870.0,403.0>> = 12.498771480797592
    -
    -* uni092C_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1827.0,393.0>> = 12.484368535813914
    -
    -* uni092D_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1901.0,410.0>> = 12.502556852726771
    -
    -* uni092E_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1921.0,414.0>> = 12.489850870338772
    -
    -* uni092F_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1310.0,279.0>> = 12.504693325258396
    -
    -* uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1929.0,416.0>> = 12.496482872235207
    -
    -* uni0932_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1875.0,404.0>> = 12.495525238591755
    -
    -* uni0935_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1827.0,393.0>> = 12.484368535813914
    -
    -* uni0936_uni0930_uni094D.vatu: L<<2036.0,658.0>--<1363.0,922.0>>/L<<1363.0,922.0>--<1510.0,861.0>> = 1.1180310216747913
    -
    -* uni0937_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1862.0,401.0>> = 12.491933528971943
    -
    -* uni0948 (U+0948): L<<541.0,1548.0>--<631.0,1548.0>>/L<<631.0,1548.0>--<-175.0,1750.0>> = 14.069691087894096
    -
    -* uni0959_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1722.0,370.0>> = 12.49247557736108
    -
    -* uni0959_uni0930_uni094D.vatu: L<<52.0,0.0>--<1722.0,370.0>>/L<<1722.0,370.0>--<452.0,370.0>> = 12.49247557736108
    -
    -* uni095A_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1863.0,401.0>> = 12.485252069704043
    -
    -* uni095B_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1865.0,402.0>> = 12.50203554615018
    -
    -* uni095F_uni0930_uni094D.vatu: L<<476.0,0.0>--<52.0,0.0>>/L<<52.0,0.0>--<1310.0,279.0>> = 12.504693325258396
    -
    - [code: found-jaggy-segments] - - - -
    -
    - -
    - ⚠️ WARN Do outlines contain any semi-vertical or semi-horizontal lines? -
    - - - - - - - -* ⚠️ **WARN**

    The following glyphs have semi-vertical/semi-horizontal lines:

    -
    * questiondown (U+00BF): L<<1631.0,1273.0>--<1381.0,1272.0>>
    -
    -* uni093D (U+093D): L<<1451.0,1079.0>--<1449.0,269.0>>
    -
    -* uni0943 (U+0943): L<<-5.0,9.0>--<-4.0,-178.0>>
    -
    -* uni0943 (U+0943): L<<-637.0,-286.0>--<-636.0,-418.0>>
    -
    -* uni0943 (U+0943): L<<-834.0,-611.0>--<-835.0,-495.0>>
    -
    -* uni0943 (U+0943): L<<-836.0,-455.0>--<-837.0,-270.0>>
    -
    -* uni0943 (U+0943): L<<-837.0,-270.0>--<-838.0,-133.0>>
    -
    - [code: found-semi-vertical] - - - -
    -
    - -
    - ⚠️ WARN Ensure fonts have ScriptLangTags declared on the 'meta' table. -
    - - - - - - - -* ⚠️ **WARN**

    This font file does not have a 'meta' table.

    - [code: lacks-meta-table] - - - -
    -
    - -
    - ⚠️ WARN Checking OS/2 achVendID. -
    - - - - - - - -* ⚠️ **WARN**

    OS/2 VendorID value 'anir' is not yet recognized. If you registered it recently, then it's safe to ignore this warning message. Otherwise, you should set it to your own unique 4 character code, and register it with Microsoft at https://www.microsoft.com/typography/links/vendorlist.aspx

    - [code: unknown] - - - -
    -
    -
    -
    - -
    [20] Samaano-Wide-Thin-Slanted.ttf -
    -
    - 🔥 FAIL Ensure the font supports case swapping for all its glyphs. -
    - - - - - - - -* 🔥 **FAIL**

    The following glyphs lack their case-swapping counterparts:

    - - - - - - - - - - - - - -
    Glyph present in the fontMissing case-swapping counterpart
    U+0189: LATIN CAPITAL LETTER AFRICAN DU+0256: LATIN SMALL LETTER D WITH TAIL
    - [code: missing-case-counterparts] - - - -
    -
    - -
    - 🔥 FAIL Checking OS/2 usWinAscent & usWinDescent. -
    - - - - - - - -* 🔥 **FAIL**

    OS/2.usWinDescent value should be equal or greater than 978, but got 958 instead

    - [code: descent] - - - -
    -
    - -
    - 🔥 FAIL Shapes languages in all GF glyphsets. -
    - - - - - - - -* 🔥 **FAIL**

    GF_Latin_Core glyphset:

    - - - - - - - - - - - - - -
    LanguageFAIL messages
    nl_Latn (Dutch)Shaper didn't attach acutecomb to j
    - [code: failed-language-shaping] - - - -
    -
    - -
    - 🔥 FAIL Check family name for GF Guide compliance. -
    - - - - - - - -* 🔥 **FAIL**

    "Samaano Wide-Thin-Slanted" contains the following characters which are not allowed: "-".

    - [code: forbidden-characters] - - - -
    -
    - -
    - 🔥 FAIL Checking file is named canonically. -
    - - - - - - - -* 🔥 **FAIL**

    Expected "SamaanoWide-Thin-Slanted-Regular.ttf. Got Samaano-Wide-Thin-Slanted.ttf.

    - [code: bad-filename] - - - -
    -
    - -
    - ⚠️ WARN Checking correctness of monospaced metadata. -
    - - - - - - - -* ⚠️ **WARN**

    The OpenType spec recommends at https://learn.microsoft.com/en-us/typography/opentype/spec/recom#hhea-table that hhea.numberOfHMetrics be set to 3 but this font has 434 instead. -Please read https://github.com/fonttools/fonttools/issues/3014 to decide whether this makes sense for your font.

    - [code: bad-numberOfHMetrics] - - - -* ⚠️ **WARN**

    Font is monospaced but 2 glyphs (0.28%) have a different width. You should check the widths of: ['Eng', 'eng']

    - [code: mono-outliers] - - - -
    -
    - -
    - ⚠️ WARN Check glyphs in mark glyph class are non-spacing. -
    - - - - - - - -* ⚠️ **WARN**

    The following spacing glyphs may be in the GDEF mark glyph class by mistake: -glyph094D (unencoded), uni0331 (U+0331), uni0930_uni094D.blwf (unencoded), uni0930_uni094D.rphf (unencoded), uni093A (U+093A), uni093C (U+093C), uni0945 (U+0945), uni0946 (U+0946), uni0947 (U+0947), uni0948 (U+0948), uni0951 (U+0951), uni0952 (U+0952), uni0953 (U+0953), uni0954 (U+0954), uni0955 (U+0955), uni0956 (U+0956), uni0957 (U+0957), uni0962 (U+0962) and uni0963 (U+0963)

    - [code: spacing-mark-glyphs] - - - -
    -
    - -
    - ⚠️ WARN Check mark characters are in GDEF mark glyph class. -
    - - - - - - - -* ⚠️ **WARN**

    The following mark characters could be in the GDEF mark glyph class: -hookabovecomb (U+0309) and uni0305 (U+0305)

    - [code: mark-chars] - - - -
    -
    - -
    - ⚠️ WARN Does GPOS table have kerning information? This check skips monospaced fonts as defined by post.isFixedPitch value -
    - - - - - - - -* ⚠️ **WARN**

    GPOS table lacks kerning information.

    - [code: lacks-kern-info] - - - -
    -
    - -
    - ⚠️ WARN Check accent of Lcaron, dcaron, lcaron, tcaron -
    - - - - - - - - - -* ⚠️ **WARN**

    dcaron is decomposed and therefore could not be checked. Please check manually.

    - [code: decomposed-outline] - - - -* ⚠️ **WARN**

    Lcaron is decomposed and therefore could not be checked. Please check manually.

    - [code: decomposed-outline] - - - -* ⚠️ **WARN**

    lcaron is decomposed and therefore could not be checked. Please check manually.

    - [code: decomposed-outline] - - - -* ⚠️ **WARN**

    tcaron is decomposed and therefore could not be checked. Please check manually.

    - [code: decomposed-outline] - - - -
    -
    - -
    - ⚠️ WARN Check if each glyph has the recommended amount of contours. -
    - - - - - - - -* ⚠️ **WARN**

    This check inspects the glyph outlines and detects the total number of contours in each of them. The expected values are infered from the typical ammounts of contours observed in a large collection of reference font families. The divergences listed below may simply indicate a significantly different design on some of your glyphs. On the other hand, some of these may flag actual bugs in the font such as glyphs mapped to an incorrect codepoint. Please consider reviewing the design and codepoint assignment of these to make sure they are correct.

    -

    The following glyphs do not have the recommended number of contours:

    -
    - Glyph name: A	Contours detected: 1	Expected: 2
    -
    -- Glyph name: g	Contours detected: 1	Expected: 2 or 3
    -
    -- Glyph name: braceleft	Contours detected: 3	Expected: 1
    -
    -- Glyph name: Agrave	Contours detected: 2	Expected: 3
    -
    -- Glyph name: Aacute	Contours detected: 2	Expected: 3
    -
    -- Glyph name: Acircumflex	Contours detected: 2	Expected: 3
    -
    -- Glyph name: Atilde	Contours detected: 2	Expected: 3
    -
    -- Glyph name: Adieresis	Contours detected: 3	Expected: 4
    -
    -- Glyph name: Icircumflex	Contours detected: 1	Expected: 2
    -
    -- Glyph name: Amacron	Contours detected: 2	Expected: 3
    -
    -- Glyph name: Abreve	Contours detected: 2	Expected: 3
    -
    -- Glyph name: Aogonek	Contours detected: 1	Expected: 2 or 3
    -
    -- Glyph name: eogonek	Contours detected: 3	Expected: 2
    -
    -- Glyph name: gcircumflex	Contours detected: 2	Expected: 3 or 4
    -
    -- Glyph name: gbreve	Contours detected: 2	Expected: 3 or 4
    -
    -- Glyph name: gdotaccent	Contours detected: 2	Expected: 3 or 4
    -
    -- Glyph name: uni0123	Contours detected: 2	Expected: 3 or 4
    -
    -- Glyph name: Jcircumflex	Contours detected: 1	Expected: 2
    -
    -- Glyph name: uni091B	Contours detected: 1	Expected: 2
    -
    -- Glyph name: uni092D	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni092E	Contours detected: 3	Expected: 2
    -
    -- Glyph name: uni093D	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0945	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0955	Contours detected: 3	Expected: 2
    -
    -- Glyph name: uni0956	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0957	Contours detected: 3	Expected: 2
    -
    -- Glyph name: uni0962	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0963	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0967	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0970	Contours detected: 1	Expected: 2
    -
    -- Glyph name: uni097F	Contours detected: 2	Expected: 3
    -
    -- Glyph name: uni25CC	Contours detected: 8	Expected: 16 or 12
    -
    -- Glyph name: A	Contours detected: 1	Expected: 2
    -
    -- Glyph name: Aacute	Contours detected: 2	Expected: 3
    -
    -- Glyph name: Abreve	Contours detected: 2	Expected: 3
    -
    -- Glyph name: Acircumflex	Contours detected: 2	Expected: 3
    -
    -- Glyph name: Adieresis	Contours detected: 3	Expected: 4
    -
    -- Glyph name: Agrave	Contours detected: 2	Expected: 3
    -
    -- Glyph name: Amacron	Contours detected: 2	Expected: 3
    -
    -- Glyph name: Aogonek	Contours detected: 1	Expected: 2 or 3
    -
    -- Glyph name: Atilde	Contours detected: 2	Expected: 3
    -
    -- Glyph name: Icircumflex	Contours detected: 1	Expected: 2
    -
    -- Glyph name: Jcircumflex	Contours detected: 1	Expected: 2
    -
    -- Glyph name: braceleft	Contours detected: 3	Expected: 1
    -
    -- Glyph name: eogonek	Contours detected: 3	Expected: 2
    -
    -- Glyph name: g	Contours detected: 1	Expected: 2 or 3
    -
    -- Glyph name: gbreve	Contours detected: 2	Expected: 3 or 4
    -
    -- Glyph name: gcircumflex	Contours detected: 2	Expected: 3 or 4
    -
    -- Glyph name: gdotaccent	Contours detected: 2	Expected: 3 or 4
    -
    -- Glyph name: uni0123	Contours detected: 2	Expected: 3 or 4
    -
    -- Glyph name: uni091B	Contours detected: 1	Expected: 2
    -
    -- Glyph name: uni092D	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni092E	Contours detected: 3	Expected: 2
    -
    -- Glyph name: uni093D	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0945	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0955	Contours detected: 3	Expected: 2
    -
    -- Glyph name: uni0956	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0957	Contours detected: 3	Expected: 2
    -
    -- Glyph name: uni0962	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0963	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0967	Contours detected: 2	Expected: 1
    -
    -- Glyph name: uni0970	Contours detected: 1	Expected: 2
    -
    -- Glyph name: uni097F	Contours detected: 2	Expected: 3
    -
    -- Glyph name: uni25CC	Contours detected: 8	Expected: 16 or 12
    -
    - [code: contour-count] - - - -
    -
    - -
    - ⚠️ WARN Check font contains no unreachable glyphs -
    - - - - - - - -* ⚠️ **WARN**

    The following glyphs could not be reached by codepoint or substitution rules:

    -
    - glyph094D
    -
    -- uni0930_uni094D.abvs
    -
    -- uni0930_uni094D.vatu
    -
    - [code: unreachable-glyphs] - - - -
    -
    - -
    - ⚠️ WARN Validate size, and resolution of article images, and ensure article page has minimum length and includes visual assets. -
    - - - - - - - -* ⚠️ **WARN**

    Family metadata at fonts/ttf does not have an article.

    - [code: lacks-article] - - - -
    -
    - -
    - ⚠️ WARN Check for codepoints not covered by METADATA subsets. -
    - - - - - - - -* ⚠️ **WARN**

    The following codepoints supported by the font are not covered by -any subsets defined in the font's metadata file, and will never -be served. You can solve this by either manually adding additional -subset declarations to METADATA.pb, or by editing the glyphset -definitions.

    -
      -
    • U+02D8 BREVE: try adding one of: canadian-aboriginal, yi
    • -
    • U+02D9 DOT ABOVE: try adding one of: canadian-aboriginal, yi
    • -
    • U+02DB OGONEK: try adding one of: canadian-aboriginal, yi
    • -
    • U+0302 COMBINING CIRCUMFLEX ACCENT: try adding one of: math, tifinagh, coptic, cherokee
    • -
    • U+0305 COMBINING OVERLINE: try adding one of: coptic, glagolitic, gothic, elbasan, math
    • -
    • U+0306 COMBINING BREVE: try adding one of: old-permic, tifinagh
    • -
    • U+0307 COMBINING DOT ABOVE: try adding one of: duployan, malayalam, hebrew, old-permic, todhri, tai-le, coptic, tifinagh, math, syriac, canadian-aboriginal
    • -
    • U+030A COMBINING RING ABOVE: try adding one of: duployan, syriac
    • -
    • U+030B COMBINING DOUBLE ACUTE ACCENT: try adding one of: cherokee, osage
    • -
    • U+030C COMBINING CARON: try adding one of: tai-le, cherokee
    • -
    • U+0326 COMBINING COMMA BELOW: try adding math
    • -
    • U+0327 COMBINING CEDILLA: try adding math
    • -
    • U+0328 COMBINING OGONEK: not included in any glyphset definition
    • -
    • U+0331 COMBINING MACRON BELOW: try adding one of: gothic, thai, tifinagh, caucasian-albanian, syriac, sunuwar, cherokee
    • -
    • U+2021 DOUBLE DAGGER: try adding adlam
    • -
    • U+2030 PER MILLE SIGN: try adding adlam
    • -
    • U+FB01 LATIN SMALL LIGATURE FI: not included in any glyphset definition
    • -
    • U+FB02 LATIN SMALL LIGATURE FL: not included in any glyphset definition
    • -
    -

    Or you can add the above codepoints to one of the subsets supported by the font: devanagari, latin, latin-ext

    - [code: unreachable-subsetting] - - - -
    -
    - -
    - ⚠️ WARN Combined length of family and style must not exceed 32 characters. -
    - - - - - - - -* ⚠️ **WARN**

    Name ID 6 'SamaanoWide-Thin-Slanted-Regular' exceeds 27 characters. This has been found to cause problems with PostScript printers, especially on Mac platforms.

    - [code: nameid6-too-long] - - - -
    -
    - -
    - ⚠️ WARN Ensure soft_dotted characters lose their dot when combined with marks that replace the dot. -
    - - - - - - - -* ⚠️ **WARN**

    The dot of soft dotted characters used in orthographies must disappear in the following strings: i̊ i̋ j̀ j́ j̃ j̄ j̈ į̀ į́ į̂ į̃ į̄ į̌

    -

    The dot of soft dotted characters should disappear in other cases, for example: i̅ i̇ ỉ ǐ ị̅ ị̇ ị̉ ị̊ ị̋ ị̌ i̦̅ i̦̇ ỉ̦ i̦̊ i̦̋ ǐ̦ i̧̅ i̧̇ ỉ̧ i̧̊

    -

    Your font fully covers the following languages that require the soft-dotted feature: Lithuanian (Latn, 2,357,094 speakers).

    -

    Your font does not cover the following languages that require the soft-dotted feature: Nzakara (Latn, 50,000 speakers), Bete-Bendi (Latn, 100,000 speakers), Makaa (Latn, 221,000 speakers), Ejagham (Latn, 120,000 speakers), Igbo (Latn, 27,823,640 speakers), Zapotec (Latn, 490,000 speakers), Aghem (Latn, 38,843 speakers), Yala (Latn, 200,000 speakers), Ukrainian (Cyrl, 29,273,587 speakers), Sar (Latn, 500,000 speakers), Koonzime (Latn, 40,000 speakers), Mundani (Latn, 34,000 speakers), Dutch (Latn, 31,709,104 speakers), Ngbaka (Latn, 1,020,000 speakers), Ekpeye (Latn, 226,000 speakers), Avokaya (Latn, 100,000 speakers), Mango (Latn, 77,000 speakers), Southern Kisi (Latn, 360,000 speakers), Gulay (Latn, 250,478 speakers), Cicipu (Latn, 44,000 speakers), Basaa (Latn, 332,940 speakers), Dii (Latn, 71,000 speakers), South Central Banda (Latn, 244,000 speakers), Lugbara (Latn, 2,200,000 speakers), Navajo (Latn, 166,319 speakers), Nateni (Latn, 100,000 speakers), Kom (Latn, 360,685 speakers), Belarusian (Cyrl, 10,064,517 speakers), Ma’di (Latn, 584,000 speakers), Ebira (Latn, 2,200,000 speakers), Mfumte (Latn, 79,000 speakers), Bafut (Latn, 158,146 speakers), Vute (Latn, 21,000 speakers), Kpelle, Guinea (Latn, 622,000 speakers), Fur (Latn, 1,230,163 speakers), Ijo, Southeast (Latn, 2,471,000 speakers), Dan (Latn, 1,099,244 speakers).

    - [code: soft-dotted] - - - -
    -
    - -
    - ⚠️ WARN Do outlines contain any jaggy segments? -
    - - - - - - - -* ⚠️ **WARN**

    The following glyphs have jaggy segments:

    -
    * B (U+0042): L<<1413.0,907.0>--<1407.0,890.0>>/L<<1407.0,890.0>--<1413.0,908.0>> = 1.0050860052537793
    -
    -* Dcroat (U+0110): L<<2362.0,1020.0>--<2364.0,1023.0>>/L<<2364.0,1023.0>--<2325.0,915.0>> = 13.834853156658712
    -
    -* uni01C5 (U+01C5): L<<966.0,1020.0>--<967.0,1023.0>>/L<<967.0,1023.0>--<956.0,960.0>> = 8.530765609948096
    -
    -* uni0913 (U+0913): L<<2546.0,1550.0>--<2542.0,1549.0>>/L<<2542.0,1549.0>--<2612.0,1549.0>> = 14.036243467926484
    -
    -* uni0916_uni0930_uni094D.vatu: L<<190.0,0.0>--<1814.0,370.0>>/L<<1814.0,370.0>--<592.0,370.0>> = 12.834760383293624
    -
    -* uni0916_uni0930_uni094D.vatu: L<<447.0,0.0>--<190.0,0.0>>/L<<190.0,0.0>--<1814.0,370.0>> = 12.834760383293624
    -
    -* uni0917_uni0930_uni094D.vatu: L<<453.0,0.0>--<196.0,0.0>>/L<<196.0,0.0>--<1995.0,410.0>> = 12.838675460780657
    -
    -* uni0918_uni0930_uni094D.vatu: L<<201.0,-49.0>--<1847.0,326.0>>/L<<1847.0,326.0>--<299.0,326.0>> = 12.83435285303413
    -
    -* uni0918_uni0930_uni094D.vatu: L<<458.0,-49.0>--<201.0,-49.0>>/L<<201.0,-49.0>--<1847.0,326.0>> = 12.83435285303413
    -
    -* uni091A_uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1951.0,416.0>> = 12.840898455437413
    -
    -* uni091B_uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1603.0,333.0>> = 12.705303928524263
    -
    -* uni091C_uni0930_uni094D.vatu: L<<448.0,0.0>--<191.0,0.0>>/L<<191.0,0.0>--<2008.0,414.0>> = 12.835609486401424
    -
    -* uni091E_uni0930_uni094D.vatu: L<<505.0,0.0>--<248.0,0.0>>/L<<248.0,0.0>--<2048.0,410.0>> = 12.831779042530089
    -
    -* uni0923_uni0930_uni094D.vatu: L<<481.0,0.0>--<224.0,0.0>>/L<<224.0,0.0>--<2033.0,412.0>> = 12.830273512751555
    -
    -* uni0925_uni0930_uni094D.vatu: L<<523.0,0.0>--<266.0,0.0>>/L<<266.0,0.0>--<2073.0,412.0>> = 12.844003410182452
    -
    -* uni0926_uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1358.0,264.0>> = 12.094757077012089
    -
    -* uni0927_uni0930_uni094D.vatu: L<<476.0,0.0>--<219.0,0.0>>/L<<219.0,0.0>--<2030.0,413.0>> = 12.84664964895844
    -
    -* uni0928_uni0930_uni094D.vatu: L<<470.0,0.0>--<213.0,0.0>>/L<<213.0,0.0>--<2018.0,411.0>> = 12.827587702972119
    -
    -* uni0929_uni0930_uni094D.vatu: L<<456.0,0.0>--<199.0,0.0>>/L<<199.0,0.0>--<2016.0,414.0>> = 12.835609486401424
    -
    -* uni092A_uni0930_uni094D.vatu: L<<446.0,0.0>--<189.0,0.0>>/L<<189.0,0.0>--<2001.0,413.0>> = 12.839794937341944
    -
    -* uni092B_uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1573.0,334.0>> = 12.997508619477422
    -
    -* uni092C_uni0930_uni094D.vatu: L<<406.0,0.0>--<149.0,0.0>>/L<<149.0,0.0>--<1974.0,416.0>> = 12.840898455437413
    -
    -* uni092D_uni0930_uni094D.vatu: L<<495.0,0.0>--<238.0,0.0>>/L<<238.0,0.0>--<2042.0,411.0>> = 12.834462913442819
    -
    -* uni092E_uni0930_uni094D.vatu: L<<507.0,0.0>--<250.0,0.0>>/L<<250.0,0.0>--<2060.0,413.0>> = 12.85351156020271
    -
    -* uni092F_uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1980.0,323.0>> = 9.882760671675692
    -
    -* uni0930_uni0930_uni094D.vatu: L<<1172.0,186.0>--<1172.0,186.0>>/L<<1172.0,186.0>--<383.0,0.0>> = 13.264802931115398
    -
    -* uni0930_uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1128.0,230.0>> = 12.927780100724538
    -
    -* uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1951.0,416.0>> = 12.840898455437413
    -
    -* uni0931_uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1158.0,202.0>> = 11.07485226585879
    -
    -* uni0932_uni0930_uni094D.vatu: L<<493.0,0.0>--<236.0,0.0>>/L<<236.0,0.0>--<2015.0,404.0>> = 12.794521411690255
    -
    -* uni0935_uni0930_uni094D.vatu: L<<426.0,0.0>--<169.0,0.0>>/L<<169.0,0.0>--<1974.0,411.0>> = 12.827587702972119
    -
    -* uni0937_uni0930_uni094D.vatu: L<<460.0,6.0>--<203.0,6.0>>/L<<203.0,6.0>--<2002.0,416.0>> = 12.838675460780657
    -
    -* uni0939_uni0930_uni094D.vatu: L<<958.0,370.0>--<701.0,370.0>>/L<<701.0,370.0>--<1766.0,615.0>> = 12.955319281265771
    -
    -* uni0944 (U+0944): L<<-1109.0,-947.0>--<-1109.0,-947.0>>/L<<-1109.0,-947.0>--<-1153.0,-958.0>> = 14.036243467926484
    -
    -* uni0944 (U+0944): L<<-292.0,-841.0>--<-1109.0,-947.0>>/L<<-1109.0,-947.0>--<-1109.0,-947.0>> = 7.392429216723766
    -
    -* uni0958_uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1206.0,263.0>> = 13.686197239230474
    -
    -* uni0959_uni0930_uni094D.vatu: L<<190.0,0.0>--<1814.0,370.0>>/L<<1814.0,370.0>--<592.0,370.0>> = 12.834760383293624
    -
    -* uni0959_uni0930_uni094D.vatu: L<<447.0,0.0>--<190.0,0.0>>/L<<190.0,0.0>--<1814.0,370.0>> = 12.834760383293624
    -
    -* uni095A_uni0930_uni094D.vatu: L<<453.0,0.0>--<196.0,0.0>>/L<<196.0,0.0>--<1995.0,410.0>> = 12.838675460780657
    -
    -* uni095B_uni0930_uni094D.vatu: L<<448.0,0.0>--<191.0,0.0>>/L<<191.0,0.0>--<2008.0,414.0>> = 12.835609486401424
    -
    -* uni095E_uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1573.0,334.0>> = 12.997508619477422
    -
    -* uni095F_uni0930_uni094D.vatu: L<<383.0,0.0>--<126.0,0.0>>/L<<126.0,0.0>--<1980.0,323.0>> = 9.882760671675692
    -
    -* uni0968 (U+0968): L<<398.0,486.0>--<417.0,488.0>>/L<<417.0,488.0>--<402.0,488.0>> = 6.009005957494474
    -
    - [code: found-jaggy-segments] - - - -
    -
    - -
    - ⚠️ WARN Do outlines contain any semi-vertical or semi-horizontal lines? -
    - - - - - - - -* ⚠️ **WARN**

    The following glyphs have semi-vertical/semi-horizontal lines:

    -
    * backslash (U+005C): L<<1263.0,0.0>--<1271.0,1550.0>>
    -
    -* backslash (U+005C): L<<1354.0,1550.0>--<1341.0,0.0>>
    -
    -* eight (U+0038): L<<1992.0,-3.0>--<56.0,0.0>>
    -
    -* grave (U+0060): L<<1407.0,1057.0>--<1406.0,1286.0>>
    -
    -* uni0938_uni094D.haln: L<<701.0,659.0>--<697.0,0.0>>
    -
    -* uni0943 (U+0943): L<<-1061.0,-178.0>--<-1058.0,-577.0>>
    -
    -* uni0943 (U+0943): L<<-1131.0,-591.0>--<-1134.0,-132.0>>
    -
    - [code: found-semi-vertical] - - - -
    -
    - -
    - ⚠️ WARN Ensure fonts have ScriptLangTags declared on the 'meta' table. -
    - - - - - - - -* ⚠️ **WARN**

    This font file does not have a 'meta' table.

    - [code: lacks-meta-table] - - - -
    -
    - -
    - ⚠️ WARN Checking OS/2 achVendID. -
    - - - - - - - -* ⚠️ **WARN**

    OS/2 VendorID value 'anir' is not yet recognized. If you registered it recently, then it's safe to ignore this warning message. Otherwise, you should set it to your own unique 4 character code, and register it with Microsoft at https://www.microsoft.com/typography/links/vendorlist.aspx

    - [code: unknown] +* 🔥 **FAIL**

    Font Samaano-Italic[wdth,wght].ttf is missing an 'ital' axis.

    + [code: missing-ital-axis] @@ -5635,8 +1013,8 @@ definitions.

    | 💥 ERROR | ☠ FATAL | 🔥 FAIL | ⚠️ WARN | ⏩ SKIP | ℹ️ INFO | ✅ PASS | 🔎 DEBUG | | ---|---|---|---|---|---|---|---| -| 0 | 0 | 40 | 117 | 928 | 49 | 748 | 0 | -| 0% | 0% | 2% | 6% | 49% | 3% | 40% | 0% | +| 0 | 0 | 7 | 23 | 183 | 15 | 256 | 0 | +| 0% | 0% | 1% | 5% | 38% | 3% | 53% | 0% | diff --git a/sources/Samaano-Bold-Slanted.sfd b/sources/Samaano-Bold-Slanted.sfd index d1c508a04..ee4df08e2 100644 --- a/sources/Samaano-Bold-Slanted.sfd +++ b/sources/Samaano-Bold-Slanted.sfd @@ -23,7 +23,7 @@ OS2Version: 0 OS2_WeightWidthSlopeOnly: 1 OS2_UseTypoMetrics: 1 CreationTime: 1729163604 -ModificationTime: 1729412546 +ModificationTime: 1729490868 PfmFamily: 49 TTFWeight: 700 TTFWidth: 5 @@ -4379,7 +4379,7 @@ NameList: AGL For New Fonts DisplaySize: -96 AntiAlias: 1 FitToEm: 1 -WinInfo: 26 13 5 +WinInfo: 624 13 5 BeginPrivate: 0 EndPrivate Grid @@ -4393,7 +4393,7 @@ Grid 2048 935.2 l 1024 EndSplineSet AnchorClass2: "blwm" "'blwm' Below Base Mark in Devanagari2 lookup 2-1" "abvm" "'abvm' Above Base Mark in Devanagari2 lookup 1-1" "base" "markMarkPositioninglookup0 subtable" "top" "markMarkPositioninglookup0 subtable" "base""" "top""" -BeginChars: 65711 719 +BeginChars: 65711 717 StartChar: .notdef Encoding: 0 0 0 @@ -6826,17 +6826,17 @@ GlifName: acutecomb Width: 0 VWidth: 0 GlyphClass: 2 -Flags: W -AnchorPoint: "top" 466 1888 mark 0 -AnchorPoint: "top" 466 1888 mark 0 +Flags: HW +AnchorPoint: "top" 693.041 1888 mark 0 +AnchorPoint: "top" 693.041 1888 mark 0 LayerCount: 2 Fore SplineSet -586.9140625 2180 m 257 - 364.46484375 1926 l 257 - 435.72265625 1880 l 257 - 659.53515625 2135 l 257 - 586.9140625 2180 l 257 +813.955078125 2180 m 257 + 591.505859375 1926 l 257 + 662.763671875 1880 l 257 + 886.576171875 2135 l 257 + 813.955078125 2180 l 257 EndSplineSet EndChar @@ -8079,16 +8079,16 @@ VWidth: 0 GlyphClass: 2 Flags: HW HStem: -451 247 -AnchorPoint: "base" 498 -187 mark 0 -AnchorPoint: "base" 498 -187 mark 0 +AnchorPoint: "base" -133.2 -187 mark 0 +AnchorPoint: "base" -133.2 -187 mark 0 LayerCount: 2 Fore SplineSet -424.950195312 -204 m 257 - 335.049804688 -451 l 257 - 599.049804688 -451 l 257 - 688.950195312 -204 l 257 - 424.950195312 -204 l 257 +-206.25 -204 m 257 + -296.150390625 -451 l 257 + -32.150390625 -451 l 257 + 57.75 -204 l 257 + -206.25 -204 l 257 EndSplineSet EndChar @@ -8763,17 +8763,17 @@ GlifName: gravecomb Width: 0 VWidth: 0 GlyphClass: 2 -Flags: W -AnchorPoint: "top" 592 1881 mark 0 -AnchorPoint: "top" 592 1881 mark 0 +Flags: HW +AnchorPoint: "top" 812.309 1881 mark 0 +AnchorPoint: "top" 812.309 1881 mark 0 LayerCount: 2 Fore SplineSet -441.078125 2107 m 257 - 475.1796875 1871 l 257 - 582.921875 1917 l 257 - 550.18359375 2154 l 257 - 441.078125 2107 l 257 +661.38671875 2107 m 257 + 695.48828125 1871 l 257 + 803.23046875 1917 l 257 + 770.4921875 2154 l 257 + 661.38671875 2107 l 257 EndSplineSet EndChar @@ -8998,26 +8998,26 @@ Flags: HW LayerCount: 2 Fore SplineSet -344.279296875 1774 m 257 - 280.583984375 1599 l 257 - 735.583984375 1599 l 257 - 799.279296875 1774 l 257 - 344.279296875 1774 l 257 -597.279296875 1774 m 257 - 472.80078125 1432 l 257 - 679.80078125 1432 l 257 - 804.279296875 1774 l 257 - 597.279296875 1774 l 257 -315.444335938 1453 m 257 - 255.389648438 1288 l 257 - 626.389648438 1288 l 257 - 686.444335938 1453 l 257 - 315.444335938 1453 l 257 -315.444335938 1453 m 257 - 219.720703125 1190 l 257 - 400.720703125 1190 l 257 - 496.444335938 1453 l 257 - 315.444335938 1453 l 257 +415.68359375 1774 m 257 + 351.98828125 1599 l 257 + 806.98828125 1599 l 257 + 870.68359375 1774 l 257 + 415.68359375 1774 l 257 +668.68359375 1774 m 257 + 544.205078125 1432 l 257 + 751.205078125 1432 l 257 + 875.68359375 1774 l 257 + 668.68359375 1774 l 257 +386.848632812 1453 m 257 + 326.793945312 1288 l 257 + 697.793945312 1288 l 257 + 757.848632812 1453 l 257 + 386.848632812 1453 l 257 +386.848632812 1453 m 257 + 291.125 1190 l 257 + 472.125 1190 l 257 + 567.848632812 1453 l 257 + 386.848632812 1453 l 257 EndSplineSet EndChar @@ -11433,27 +11433,27 @@ GlifName: tildecomb Width: 0 VWidth: 0 GlyphClass: 2 -Flags: W -AnchorPoint: "top" 492 1855 mark 0 -AnchorPoint: "top" 492 1855 mark 0 +Flags: HW +AnchorPoint: "top" 694.523 1855 mark 0 +AnchorPoint: "top" 694.523 1855 mark 0 LayerCount: 2 Fore SplineSet -384.376953125 2015 m 257 - 348.34375 1916 l 257 - 676.141601562 1855 l 257 - 712.174804688 1954 l 257 - 384.376953125 2015 l 257 -125.266601562 1957 m 257 - 104.59765625 1859 l 257 - 348.34375 1916 l 257 - 384.376953125 2015 l 257 - 125.266601562 1957 l 257 -712.174804688 1954 m 257 - 676.141601562 1855 l 257 - 908.4609375 1996 l 257 - 919.40234375 2092 l 257 - 712.174804688 1954 l 257 +586.900390625 2015 m 257 + 550.8671875 1916 l 257 + 878.665039062 1855 l 257 + 914.698242188 1954 l 257 + 586.900390625 2015 l 257 +327.790039062 1957 m 257 + 307.12109375 1859 l 257 + 550.8671875 1916 l 257 + 586.900390625 2015 l 257 + 327.790039062 1957 l 257 +914.698242188 1954 m 257 + 878.665039062 1855 l 257 + 1110.984375 1996 l 257 + 1121.92578125 2092 l 257 + 914.698242188 1954 l 257 EndSplineSet EndChar @@ -11961,7 +11961,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 715 382 N 0.5 0 0.36397 1 300.943 0 2 +Refer: 713 382 N 0.5 0 0.36397 1 300.943 0 2 Refer: 19 68 N 0.5 0 0.36397 1 -230.061 0 2 EndChar @@ -11974,7 +11974,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 715 382 N 0.5 0 0.36397 1 249.372 0 2 +Refer: 713 382 N 0.5 0 0.36397 1 249.372 0 2 Refer: 160 100 N 0.5 0 0.36397 1 -144.632 0 2 EndChar @@ -12156,23 +12156,23 @@ GlifName: uni0302 Width: 0 VWidth: 0 GlyphClass: 2 -Flags: W -VStem: 579 68<1471.36 1599.97> -AnchorPoint: "top" 506 1427 mark 0 -AnchorPoint: "top" 511 1406 mark 0 +Flags: HW +VStem: 604.766 68<1471.36 1599.97> +AnchorPoint: "top" 531.766 1427 mark 0 +AnchorPoint: "top" 536.766 1406 mark 0 LayerCount: 2 Fore SplineSet -633 1726 m 257 - 573 1726 l 257 - 377 1479 l 257 - 428 1454 l 257 - 633 1726 l 257 -557 1678 m 257 - 579 1454 l 257 - 647 1476 l 257 - 633 1726 l 257 - 557 1678 l 257 +658.765625 1726 m 257 + 598.765625 1726 l 257 + 402.765625 1479 l 257 + 453.765625 1454 l 257 + 658.765625 1726 l 257 +582.765625 1678 m 257 + 604.765625 1454 l 257 + 672.765625 1476 l 257 + 658.765625 1726 l 257 + 582.765625 1678 l 257 EndSplineSet EndChar @@ -12182,18 +12182,18 @@ GlifName: uni0304 Width: 0 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW HStem: 1548 82 -AnchorPoint: "top" 488 1532 mark 0 -AnchorPoint: "top" 488 1532 mark 0 +AnchorPoint: "top" 554.349 1532 mark 0 +AnchorPoint: "top" 554.349 1532 mark 0 LayerCount: 2 Fore SplineSet -246.922851562 1630 m 257 - 217.077148438 1548 l 257 - 777.077148438 1548 l 257 - 806.922851562 1630 l 257 - 246.922851562 1630 l 257 +313.271484375 1630 m 257 + 283.42578125 1548 l 257 + 843.42578125 1548 l 257 + 873.271484375 1630 l 257 + 313.271484375 1630 l 257 EndSplineSet EndChar @@ -12204,15 +12204,15 @@ Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "top" 550 1485 mark 0 +AnchorPoint: "top" 610.161 1485 mark 0 LayerCount: 2 Fore SplineSet -145.918945312 1602 m 257 - 124.081054688 1542 l 257 - 878.081054688 1542 l 257 - 899.918945312 1602 l 257 - 145.918945312 1602 l 257 +206.080078125 1602 m 257 + 184.2421875 1542 l 257 + 938.2421875 1542 l 257 + 960.080078125 1602 l 257 + 206.080078125 1602 l 257 EndSplineSet EndChar @@ -12222,27 +12222,27 @@ GlifName: uni0306 Width: 0 VWidth: 0 GlyphClass: 2 -Flags: W -AnchorPoint: "top" 496 1440 mark 0 -AnchorPoint: "top" 496 1440 mark 0 +Flags: HW +AnchorPoint: "top" 565.078 1440 mark 0 +AnchorPoint: "top" 565.078 1440 mark 0 LayerCount: 2 Fore SplineSet -659.34765625 1548 m 257 - 634.59765625 1480 l 257 - 824.34765625 1548 l 257 - 859.65234375 1645 l 257 - 659.34765625 1548 l 257 -335.34765625 1548 m 257 - 310.59765625 1480 l 257 - 634.59765625 1480 l 257 - 659.34765625 1548 l 257 - 335.34765625 1548 l 257 -194.193359375 1630 m 257 - 164.34765625 1548 l 257 - 310.59765625 1480 l 257 - 335.34765625 1548 l 257 - 194.193359375 1630 l 257 +728.42578125 1548 m 257 + 703.67578125 1480 l 257 + 893.42578125 1548 l 257 + 928.73046875 1645 l 257 + 728.42578125 1548 l 257 +404.42578125 1548 m 257 + 379.67578125 1480 l 257 + 703.67578125 1480 l 257 + 728.42578125 1548 l 257 + 404.42578125 1548 l 257 +263.271484375 1630 m 257 + 233.42578125 1548 l 257 + 379.67578125 1480 l 257 + 404.42578125 1548 l 257 + 263.271484375 1630 l 257 EndSplineSet EndChar @@ -12252,18 +12252,18 @@ GlifName: uni0307 Width: 0 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW HStem: 1586 202 -AnchorPoint: "top" 508 1542 mark 0 -AnchorPoint: "top" 508 1542 mark 0 +AnchorPoint: "top" 610.018 1542 mark 0 +AnchorPoint: "top" 610.018 1542 mark 0 LayerCount: 2 Fore SplineSet -436.760742188 1788 m 257 - 363.239257812 1586 l 257 - 587.239257812 1586 l 257 - 660.760742188 1788 l 257 - 436.760742188 1788 l 257 +538.778320312 1788 m 257 + 465.256835938 1586 l 257 + 689.256835938 1586 l 257 + 762.778320312 1788 l 257 + 538.778320312 1788 l 257 EndSplineSet EndChar @@ -12273,23 +12273,23 @@ GlifName: uni0308 Width: 0 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW HStem: 1637 101 -AnchorPoint: "top" 516 1592 mark 0 -AnchorPoint: "top" 516 1592 mark 0 +AnchorPoint: "top" 618.199 1592 mark 0 +AnchorPoint: "top" 618.199 1592 mark 0 LayerCount: 2 Fore SplineSet -353.380859375 1738 m 257 - 316.619140625 1637 l 257 - 428.619140625 1637 l 257 - 465.380859375 1738 l 257 - 353.380859375 1738 l 257 -595.380859375 1738 m 257 - 558.619140625 1637 l 257 - 670.619140625 1637 l 257 - 707.380859375 1738 l 257 - 595.380859375 1738 l 257 +455.580078125 1738 m 257 + 418.818359375 1637 l 257 + 530.818359375 1637 l 257 + 567.580078125 1738 l 257 + 455.580078125 1738 l 257 +697.580078125 1738 m 257 + 660.818359375 1637 l 257 + 772.818359375 1637 l 257 + 809.580078125 1738 l 257 + 697.580078125 1738 l 257 EndSplineSet EndChar @@ -12299,23 +12299,23 @@ GlifName: uni030A_ Width: 0 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW HStem: 1537 310 -AnchorPoint: "top" 541 1536 mark 0 -AnchorPoint: "top" 541 1536 mark 0 +AnchorPoint: "top" 644.838 1536 mark 0 +AnchorPoint: "top" 644.838 1536 mark 0 LayerCount: 2 Fore SplineSet -460.294921875 1756 m 257 - 608.294921875 1756 l 257 - 560.978515625 1626 l 257 - 412.978515625 1626 l 257 - 460.294921875 1756 l 257 -388.416015625 1847 m 257 - 275.583984375 1537 l 257 - 635.583984375 1537 l 257 - 748.416015625 1847 l 257 - 388.416015625 1847 l 257 +564.1328125 1756 m 257 + 712.1328125 1756 l 257 + 664.81640625 1626 l 257 + 516.81640625 1626 l 257 + 564.1328125 1756 l 257 +492.25390625 1847 m 257 + 379.421875 1537 l 257 + 739.421875 1537 l 257 + 852.25390625 1847 l 257 + 492.25390625 1847 l 257 EndSplineSet EndChar @@ -12325,12 +12325,12 @@ GlifName: uni030B_ Width: 0 VWidth: 0 GlyphClass: 2 -Flags: W -AnchorPoint: "top" 493 1280 mark 0 -AnchorPoint: "top" 493 1280 mark 0 +Flags: HW +AnchorPoint: "top" 508.758 1280 mark 0 +AnchorPoint: "top" 508.758 1280 mark 0 LayerCount: 2 Fore -Refer: 274 34 N 1 0 0.36397 1 -527.757 0 2 +Refer: 274 34 N 1 0 0.36397 1 -512 0 2 EndChar StartChar: uni030C @@ -12339,23 +12339,23 @@ GlifName: uni030C_ Width: 0 VWidth: 0 GlyphClass: 2 -Flags: W -VStem: 375.954 69.0996<1376.06 1601.19> -AnchorPoint: "top" 504 1315 mark 0 -AnchorPoint: "top" 504 1315 mark 0 +Flags: HW +VStem: 445.396 69.0996<1376.06 1601.19> +AnchorPoint: "top" 573.442 1315 mark 0 +AnchorPoint: "top" 573.442 1315 mark 0 LayerCount: 2 Fore SplineSet -452.053710938 1349 m 257 - 445.053710938 1621 l 257 - 375.954101562 1596 l 257 - 392.053710938 1349 l 257 - 452.053710938 1349 l 257 -411.524414062 1397 m 257 - 452.053710938 1349 l 257 - 648.045898438 1599 l 257 - 596.053710938 1621 l 257 - 411.524414062 1397 l 257 +521.49609375 1349 m 257 + 514.49609375 1621 l 257 + 445.396484375 1596 l 257 + 461.49609375 1349 l 257 + 521.49609375 1349 l 257 +480.966796875 1397 m 257 + 521.49609375 1349 l 257 + 717.48828125 1599 l 257 + 665.49609375 1621 l 257 + 480.966796875 1397 l 257 EndSplineSet EndChar @@ -12366,21 +12366,21 @@ Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "base" 534 -5 mark 0 -AnchorPoint: "base" 534 -5 mark 0 +AnchorPoint: "base" -47.8828 -5 mark 0 +AnchorPoint: "base" -47.8828 -5 mark 0 LayerCount: 2 Fore SplineSet -467.3828125 0 m 257 - 383.669921875 -230 l 257 - 631.669921875 -230 l 257 - 715.3828125 0 l 257 - 467.3828125 0 l 257 -528.892578125 -103 m 257 - 308.6171875 -384 l 257 - 429.779296875 -444 l 257 - 628.212890625 -234 l 257 - 528.892578125 -103 l 257 +-114.5 0 m 257 + -198.212890625 -230 l 257 + 49.787109375 -230 l 257 + 133.5 0 l 257 + -114.5 0 l 257 +-52.990234375 -103 m 257 + -273.265625 -384 l 257 + -152.103515625 -444 l 257 + 46.330078125 -234 l 257 + -52.990234375 -103 l 257 EndSplineSet EndChar @@ -12391,31 +12391,31 @@ Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "base" 654 191 mark 0 -AnchorPoint: "base" 654 191 mark 0 +AnchorPoint: "base" 68.6143 191 mark 0 +AnchorPoint: "base" 68.6143 191 mark 0 LayerCount: 2 Fore SplineSet -427.400390625 180 m 257 - 309.473632812 -144 l 257 - 465.473632812 -144 l 257 - 583.400390625 180 l 257 - 427.400390625 180 l 257 -258.0625 -288 m 257 - 215.114257812 -406 l 257 - 661.114257812 -406 l 257 - 704.0625 -288 l 257 - 258.0625 -288 l 257 -656.885742188 0 m 257 - 521.489257812 -372 l 257 - 673.489257812 -372 l 257 - 808.885742188 0 l 257 - 656.885742188 0 l 257 -362.885742188 0 m 257 - 306.106445312 -156 l 257 - 752.106445312 -156 l 257 - 808.885742188 0 l 257 - 362.885742188 0 l 257 +-157.985351562 180 m 257 + -275.912109375 -144 l 257 + -119.912109375 -144 l 257 + -1.9853515625 180 l 257 + -157.985351562 180 l 257 +-327.323242188 -288 m 257 + -370.271484375 -406 l 257 + 75.728515625 -406 l 257 + 118.676757812 -288 l 257 + -327.323242188 -288 l 257 +71.5 0 m 257 + -63.896484375 -372 l 257 + 88.103515625 -372 l 257 + 223.5 0 l 257 + 71.5 0 l 257 +-222.5 0 m 257 + -279.279296875 -156 l 257 + 166.720703125 -156 l 257 + 223.5 0 l 257 + -222.5 0 l 257 EndSplineSet EndChar @@ -12426,26 +12426,26 @@ Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "base" 990 23 mark 0 -AnchorPoint: "base" 990 23 mark 0 +AnchorPoint: "base" 404.114 23 mark 0 +AnchorPoint: "base" 404.114 23 mark 0 LayerCount: 2 Fore SplineSet -210.0625 -288 m 257 - 167.114257812 -406 l 257 - 709.114257812 -406 l 257 - 752.0625 -288 l 257 - 210.0625 -288 l 257 -314.885742188 0 m 257 - 167.114257812 -406 l 257 - 285.114257812 -406 l 257 - 432.885742188 0 l 257 - 314.885742188 0 l 257 -314.885742188 0 m 257 - 270.845703125 -121 l 257 - 812.845703125 -121 l 257 - 856.885742188 0 l 257 - 314.885742188 0 l 257 +-375.823242188 -288 m 257 + -418.771484375 -406 l 257 + 123.228515625 -406 l 257 + 166.176757812 -288 l 257 + -375.823242188 -288 l 257 +-271 0 m 257 + -418.771484375 -406 l 257 + -300.771484375 -406 l 257 + -153 0 l 257 + -271 0 l 257 +-271 0 m 257 + -315.040039062 -121 l 257 + 226.959960938 -121 l 257 + 271 0 l 257 + -271 0 l 257 EndSplineSet EndChar @@ -12456,16 +12456,16 @@ Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "base" 510 -163 mark 0 -AnchorPoint: "base" 510 -163 mark 0 +AnchorPoint: "base" -78.0703 -163 mark 0 +AnchorPoint: "base" -78.0703 -163 mark 0 LayerCount: 2 Fore SplineSet -246.1953125 -170 m 257 - 217.8046875 -248 l 257 - 777.8046875 -248 l 257 - 806.1953125 -170 l 257 - 246.1953125 -170 l 257 +-341.875 -170 m 257 + -370.265625 -248 l 257 + 189.734375 -248 l 257 + 218.125 -170 l 257 + -341.875 -170 l 257 EndSplineSet EndChar @@ -12476,30 +12476,30 @@ Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "abvm" 520 1622 mark 0 +AnchorPoint: "abvm" 585.398 1622 mark 0 LayerCount: 2 Fore SplineSet -305.674804688 2124 m 257 - 129.1484375 1639 l 257 - 328.1484375 1639 l 257 - 504.674804688 2124 l 257 - 305.674804688 2124 l 257 -352.40234375 2126 m 257 - 279.244140625 1925 l 257 - 913.244140625 1925 l 257 - 986.40234375 2126 l 257 - 352.40234375 2126 l 257 -523.40625 1865 m 257 - 450.612304688 1665 l 257 - 650.612304688 1665 l 257 - 723.40625 1865 l 257 - 523.40625 1865 l 257 -910.766601562 2127 m 257 - 732.056640625 1636 l 257 - 932.056640625 1636 l 257 - 1110.76660156 2127 l 257 - 910.766601562 2127 l 257 +371.073242188 2124 m 257 + 194.546875 1639 l 257 + 393.546875 1639 l 257 + 570.073242188 2124 l 257 + 371.073242188 2124 l 257 +417.80078125 2126 m 257 + 344.642578125 1925 l 257 + 978.642578125 1925 l 257 + 1051.80078125 2126 l 257 + 417.80078125 2126 l 257 +588.8046875 1865 m 257 + 516.010742188 1665 l 257 + 716.010742188 1665 l 257 + 788.8046875 1865 l 257 + 588.8046875 1865 l 257 +976.165039062 2127 m 257 + 797.455078125 1636 l 257 + 997.455078125 1636 l 257 + 1176.16503906 2127 l 257 + 976.165039062 2127 l 257 EndSplineSet EndChar @@ -12510,30 +12510,30 @@ Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "abvm" 540 1617 mark 0 +AnchorPoint: "abvm" 584.809 1617 mark 0 LayerCount: 2 Fore SplineSet -326.265625 2124 m 257 - 149.73828125 1639 l 257 - 348.73828125 1639 l 257 - 525.265625 2124 l 257 - 326.265625 2124 l 257 -269.625 1842 m 257 - 196.466796875 1641 l 257 - 830.466796875 1641 l 257 - 903.625 1842 l 257 - 269.625 1842 l 257 -617.708984375 2095 m 257 - 544.916015625 1895 l 257 - 744.916015625 1895 l 257 - 817.708984375 2095 l 257 - 617.708984375 2095 l 257 -933.17578125 2132 m 257 - 754.466796875 1641 l 257 - 954.466796875 1641 l 257 - 1133.17578125 2132 l 257 - 933.17578125 2132 l 257 +371.07421875 2124 m 257 + 194.546875 1639 l 257 + 393.546875 1639 l 257 + 570.07421875 2124 l 257 + 371.07421875 2124 l 257 +314.43359375 1842 m 257 + 241.275390625 1641 l 257 + 875.275390625 1641 l 257 + 948.43359375 1842 l 257 + 314.43359375 1842 l 257 +662.517578125 2095 m 257 + 589.724609375 1895 l 257 + 789.724609375 1895 l 257 + 862.517578125 2095 l 257 + 662.517578125 2095 l 257 +977.984375 2132 m 257 + 799.275390625 1641 l 257 + 999.275390625 1641 l 257 + 1177.984375 2132 l 257 + 977.984375 2132 l 257 EndSplineSet EndChar @@ -12544,15 +12544,15 @@ Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "abvm" 165 1541.8 mark 0 +AnchorPoint: "abvm" 543.529 1541.8 mark 0 LayerCount: 2 Fore SplineSet -190.8125 1839 m 257 - 118.017578125 1639 l 257 - 318.017578125 1639 l 257 - 390.8125 1839 l 257 - 190.8125 1839 l 257 +569.341796875 1839 m 257 + 496.546875 1639 l 257 + 696.546875 1639 l 257 + 769.341796875 1839 l 257 + 569.341796875 1839 l 257 EndSplineSet EndChar @@ -19239,36 +19239,8 @@ EndSplineSet Ligature2: "blwsBelowBaseSubstitutionsinDevanagarilookup12 subtable" uni0930 uni0942 EndChar -StartChar: uni0930_uni094D.abvs -Encoding: 65628 -1 501 -GlifName: uni0930_uni094D_.abvs -Width: 1024 -VWidth: 0 -GlyphClass: 2 -Flags: HW -LayerCount: 2 -Fore -SplineSet -109.900390625 1548 m 257 - 307.900390625 1548 l 257 - 425.462890625 1871 l 257 - 227.462890625 1871 l 257 - 109.900390625 1548 l 257 -586.099609375 2142 m 257 - 513.3046875 1942 l 257 - 841.3046875 1942 l 257 - 914.099609375 2142 l 257 - 586.099609375 2142 l 257 -586.099609375 2142 m 257 - 225.736328125 1869 l 257 - 423.736328125 1869 l 257 - 513.3046875 1942 l 257 - 586.099609375 2142 l 257 -EndSplineSet -EndChar - StartChar: uni0930_uni094D.blwf -Encoding: 65629 -1 502 +Encoding: 65629 -1 501 GlifName: uni0930_uni094D_.blwf Width: 1024 VWidth: 0 @@ -19297,7 +19269,7 @@ Ligature2: "blwfBelowBaseFormsinDevanagarilookup0 subtable" uni094D uni0930 EndChar StartChar: uni0930_uni094D.half -Encoding: 65630 -1 503 +Encoding: 65630 -1 502 GlifName: uni0930_uni094D_.half Width: 1024 VWidth: 0 @@ -19332,7 +19304,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0930 uni094D EndChar StartChar: uni0930_uni094D.haln -Encoding: 65631 -1 504 +Encoding: 65631 -1 503 GlifName: uni0930_uni094D_.haln Width: 1024 VWidth: 0 @@ -19376,7 +19348,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0930 uni094D EndChar StartChar: uni0930_uni094D.rphf -Encoding: 65632 -1 505 +Encoding: 65632 -1 504 GlifName: uni0930_uni094D_.rphf Width: 1024 VWidth: 0 @@ -19409,26 +19381,8 @@ EndSplineSet Ligature2: "rphfRephForminDevanagarilookup0 subtable" uni0930 uni094D EndChar -StartChar: uni0930_uni094D.vatu -Encoding: 65633 -1 506 -GlifName: uni0930_uni094D_.vatu -Width: 1024 -VWidth: 0 -GlyphClass: 2 -Flags: HW -LayerCount: 2 -Fore -SplineSet -137.794921875 0 m 257 - 394.794921875 0 l 257 - 813.048828125 215 l 257 - 886.205078125 416 l 257 - 137.794921875 0 l 257 -EndSplineSet -EndChar - StartChar: uni0931 -Encoding: 2353 2353 507 +Encoding: 2353 2353 505 GlifName: uni0931 Width: 1024 VWidth: 0 @@ -19467,7 +19421,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0930 uni093C EndChar StartChar: uni0931_uni0930_uni094D.vatu -Encoding: 65634 -1 508 +Encoding: 65634 -1 506 GlifName: uni0931_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -19511,7 +19465,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0931 uni0930_uni09 EndChar StartChar: uni0931_uni094D.haln -Encoding: 65635 -1 509 +Encoding: 65635 -1 507 GlifName: uni0931_uni094D_.haln Width: 1024 VWidth: 0 @@ -19560,7 +19514,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0931 uni094D EndChar StartChar: uni0932 -Encoding: 2354 2354 510 +Encoding: 2354 2354 508 GlifName: uni0932 Width: 1024 VWidth: 0 @@ -19598,7 +19552,7 @@ EndSplineSet EndChar StartChar: uni0932_uni0930_uni094D.vatu -Encoding: 65636 -1 511 +Encoding: 65636 -1 509 GlifName: uni0932_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -19642,7 +19596,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0932 uni0930_uni09 EndChar StartChar: uni0932_uni094D.half -Encoding: 65637 -1 512 +Encoding: 65637 -1 510 GlifName: uni0932_uni094D_.half Width: 1024 VWidth: 0 @@ -19676,7 +19630,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0932 uni094D EndChar StartChar: uni0932_uni094D.haln -Encoding: 65638 -1 513 +Encoding: 65638 -1 511 GlifName: uni0932_uni094D_.haln Width: 1024 VWidth: 0 @@ -19725,7 +19679,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0932 uni094D EndChar StartChar: uni0933 -Encoding: 2355 2355 514 +Encoding: 2355 2355 512 GlifName: uni0933 Width: 1024 VWidth: 0 @@ -19768,7 +19722,7 @@ EndSplineSet EndChar StartChar: uni0933_uni0930_uni094D.vatu -Encoding: 65639 -1 515 +Encoding: 65639 -1 513 GlifName: uni0933_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -19822,7 +19776,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0933 uni0930_uni09 EndChar StartChar: uni0933_uni094D.half -Encoding: 65640 -1 516 +Encoding: 65640 -1 514 GlifName: uni0933_uni094D_.half Width: 1024 VWidth: 0 @@ -19866,7 +19820,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0933 uni094D EndChar StartChar: uni0933_uni094D.haln -Encoding: 65641 -1 517 +Encoding: 65641 -1 515 GlifName: uni0933_uni094D_.haln Width: 1024 VWidth: 0 @@ -19920,7 +19874,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0933 uni094D EndChar StartChar: uni0934 -Encoding: 2356 2356 518 +Encoding: 2356 2356 516 GlifName: uni0934 Width: 1024 VWidth: 0 @@ -19969,7 +19923,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0933 uni093C EndChar StartChar: uni0934_uni0930_uni094D.vatu -Encoding: 65642 -1 519 +Encoding: 65642 -1 517 GlifName: uni0934_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -20028,7 +19982,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0934 uni0930_uni09 EndChar StartChar: uni0934_uni094D.half -Encoding: 65643 -1 520 +Encoding: 65643 -1 518 GlifName: uni0934_uni094D_.half Width: 1024 VWidth: 0 @@ -20077,7 +20031,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0934 uni094D EndChar StartChar: uni0934_uni094D.haln -Encoding: 65644 -1 521 +Encoding: 65644 -1 519 GlifName: uni0934_uni094D_.haln Width: 1024 VWidth: 0 @@ -20136,7 +20090,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0934 uni094D EndChar StartChar: uni0935 -Encoding: 2357 2357 522 +Encoding: 2357 2357 520 GlifName: uni0935 Width: 1024 VWidth: 0 @@ -20174,7 +20128,7 @@ EndSplineSet EndChar StartChar: uni0935_uni0930_uni094D.vatu -Encoding: 65645 -1 523 +Encoding: 65645 -1 521 GlifName: uni0935_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -20218,7 +20172,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0935 uni0930_uni09 EndChar StartChar: uni0935_uni094D.half -Encoding: 65646 -1 524 +Encoding: 65646 -1 522 GlifName: uni0935_uni094D_.half Width: 1024 VWidth: 0 @@ -20252,7 +20206,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0935 uni094D EndChar StartChar: uni0935_uni094D.haln -Encoding: 65647 -1 525 +Encoding: 65647 -1 523 GlifName: uni0935_uni094D_.haln Width: 1024 VWidth: 0 @@ -20301,7 +20255,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0935 uni094D EndChar StartChar: uni0936 -Encoding: 2358 2358 526 +Encoding: 2358 2358 524 GlifName: uni0936 Width: 1024 VWidth: 0 @@ -20349,7 +20303,7 @@ EndSplineSet EndChar StartChar: uni0936_uni0930_uni094D.vatu -Encoding: 65648 -1 527 +Encoding: 65648 -1 525 GlifName: uni0936_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -20403,7 +20357,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0936 uni0930_uni09 EndChar StartChar: uni0936_uni094D.half -Encoding: 65649 -1 528 +Encoding: 65649 -1 526 GlifName: uni0936_uni094D_.half Width: 1024 VWidth: 0 @@ -20442,7 +20396,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0936 uni094D EndChar StartChar: uni0936_uni094D.haln -Encoding: 65650 -1 529 +Encoding: 65650 -1 527 GlifName: uni0936_uni094D_.haln Width: 1024 VWidth: 0 @@ -20501,7 +20455,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0936 uni094D EndChar StartChar: uni0937 -Encoding: 2359 2359 530 +Encoding: 2359 2359 528 GlifName: uni0937 Width: 1024 VWidth: 0 @@ -20539,7 +20493,7 @@ EndSplineSet EndChar StartChar: uni0937_uni0930_uni094D.vatu -Encoding: 65651 -1 531 +Encoding: 65651 -1 529 GlifName: uni0937_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -20583,7 +20537,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0937 uni0930_uni09 EndChar StartChar: uni0937_uni094D.half -Encoding: 65652 -1 532 +Encoding: 65652 -1 530 GlifName: uni0937_uni094D_.half Width: 1024 VWidth: 0 @@ -20617,7 +20571,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0937 uni094D EndChar StartChar: uni0937_uni094D.haln -Encoding: 65653 -1 533 +Encoding: 65653 -1 531 GlifName: uni0937_uni094D_.haln Width: 1024 VWidth: 0 @@ -20666,7 +20620,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0937 uni094D EndChar StartChar: uni0938 -Encoding: 2360 2360 534 +Encoding: 2360 2360 532 GlifName: uni0938 Width: 1024 VWidth: 0 @@ -20704,7 +20658,7 @@ EndSplineSet EndChar StartChar: uni0938_uni0930_uni094D.vatu -Encoding: 65654 -1 535 +Encoding: 65654 -1 533 GlifName: uni0938_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -20748,7 +20702,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0938 uni0930_uni09 EndChar StartChar: uni0938_uni094D.half -Encoding: 65655 -1 536 +Encoding: 65655 -1 534 GlifName: uni0938_uni094D_.half Width: 1024 VWidth: 0 @@ -20782,7 +20736,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0938 uni094D EndChar StartChar: uni0938_uni094D.haln -Encoding: 65656 -1 537 +Encoding: 65656 -1 535 GlifName: uni0938_uni094D_.haln Width: 1024 VWidth: 0 @@ -20831,7 +20785,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0938 uni094D EndChar StartChar: uni0939 -Encoding: 2361 2361 538 +Encoding: 2361 2361 536 GlifName: uni0939 Width: 1024 VWidth: 0 @@ -20884,7 +20838,7 @@ EndSplineSet EndChar StartChar: uni0939_uni0930_uni094D.vatu -Encoding: 65657 -1 539 +Encoding: 65657 -1 537 GlifName: uni0939_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -20943,7 +20897,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0939 uni0930_uni09 EndChar StartChar: uni0939_uni0943.blws -Encoding: 65658 -1 540 +Encoding: 65658 -1 538 GlifName: uni0939_uni0943.blws Width: 1024 VWidth: 0 @@ -21002,7 +20956,7 @@ Ligature2: "blwsBelowBaseSubstitutionsinDevanagarilookup12 subtable" uni0939 uni EndChar StartChar: uni0939_uni094D.half -Encoding: 65659 -1 541 +Encoding: 65659 -1 539 GlifName: uni0939_uni094D_.half Width: 1024 VWidth: 0 @@ -21051,7 +21005,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0939 uni094D EndChar StartChar: uni0939_uni094D.haln -Encoding: 65660 -1 542 +Encoding: 65660 -1 540 GlifName: uni0939_uni094D_.haln Width: 1024 VWidth: 0 @@ -21115,7 +21069,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0939 uni094D EndChar StartChar: uni0939_uni094D_uni092E.pres -Encoding: 65661 -1 543 +Encoding: 65661 -1 541 GlifName: uni0939_uni094D__uni092E_.pres Width: 1024 VWidth: 0 @@ -21189,7 +21143,7 @@ Ligature2: "presPreBaseSubstitutionsinDevanagarilookup0 subtable" uni0939_uni094 EndChar StartChar: uni093A -Encoding: 2362 2362 544 +Encoding: 2362 2362 542 GlifName: uni093A_ Width: 1024 VWidth: 0 @@ -21207,7 +21161,7 @@ EndSplineSet EndChar StartChar: uni093B -Encoding: 2363 2363 545 +Encoding: 2363 2363 543 GlifName: uni093B_ Width: 1024 VWidth: 0 @@ -21230,7 +21184,7 @@ EndSplineSet EndChar StartChar: uni093C -Encoding: 2364 2364 546 +Encoding: 2364 2364 544 GlifName: uni093C_ Width: 1024 VWidth: 0 @@ -21248,7 +21202,7 @@ EndSplineSet EndChar StartChar: uni093D -Encoding: 2365 2365 547 +Encoding: 2365 2365 545 GlifName: uni093D_ Width: 1024 VWidth: 0 @@ -21281,7 +21235,7 @@ EndSplineSet EndChar StartChar: uni093E -Encoding: 2366 2366 548 +Encoding: 2366 2366 546 GlifName: uni093E_ Width: 1024 VWidth: 0 @@ -21304,7 +21258,7 @@ EndSplineSet EndChar StartChar: uni093E_uni0930_uni094D.abvs -Encoding: 65662 -1 549 +Encoding: 65662 -1 547 GlifName: uni093E__uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -21343,7 +21297,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni093E uni0 EndChar StartChar: uni093F -Encoding: 2367 2367 550 +Encoding: 2367 2367 548 GlifName: uni093F_ Width: 1024 VWidth: 0 @@ -21376,7 +21330,7 @@ EndSplineSet EndChar StartChar: uni0940 -Encoding: 2368 2368 551 +Encoding: 2368 2368 549 GlifName: uni0940 Width: 1024 VWidth: 0 @@ -21409,7 +21363,7 @@ EndSplineSet EndChar StartChar: uni0940_uni0902.abvs -Encoding: 65663 -1 552 +Encoding: 65663 -1 550 GlifName: uni0940_uni0902.abvs Width: 1024 VWidth: 0 @@ -21448,7 +21402,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0940 uni0 EndChar StartChar: uni0940_uni0930_uni094D.abvs -Encoding: 65664 -1 553 +Encoding: 65664 -1 551 GlifName: uni0940_uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -21497,7 +21451,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0940 uni0 EndChar StartChar: uni0941 -Encoding: 2369 2369 554 +Encoding: 2369 2369 552 GlifName: uni0941 Width: 0 VWidth: 0 @@ -21531,7 +21485,7 @@ EndSplineSet EndChar StartChar: uni0942 -Encoding: 2370 2370 555 +Encoding: 2370 2370 553 GlifName: uni0942 Width: 0 VWidth: 0 @@ -21565,7 +21519,7 @@ EndSplineSet EndChar StartChar: uni0943 -Encoding: 2371 2371 556 +Encoding: 2371 2371 554 GlifName: uni0943 Width: 0 VWidth: 0 @@ -21594,7 +21548,7 @@ EndSplineSet EndChar StartChar: uni0944 -Encoding: 2372 2372 557 +Encoding: 2372 2372 555 GlifName: uni0944 Width: 0 VWidth: 0 @@ -21628,7 +21582,7 @@ EndSplineSet EndChar StartChar: uni0945 -Encoding: 2373 2373 558 +Encoding: 2373 2373 556 GlifName: uni0945 Width: 1024 VWidth: 0 @@ -21661,7 +21615,7 @@ EndSplineSet EndChar StartChar: uni0945_uni0902.abvs -Encoding: 65673 -1 559 +Encoding: 65673 -1 557 GlifName: uni0945_uni0902.abvs Width: 1024 VWidth: 0 @@ -21700,7 +21654,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0945 uni0 EndChar StartChar: uni0945_uni0930_uni094D.abvs -Encoding: 65674 -1 560 +Encoding: 65674 -1 558 GlifName: uni0945_uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -21749,7 +21703,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0945 uni0 EndChar StartChar: uni0946 -Encoding: 2374 2374 561 +Encoding: 2374 2374 559 GlifName: uni0946 Width: 1024 VWidth: 0 @@ -21782,7 +21736,7 @@ EndSplineSet EndChar StartChar: uni0946_uni0902.abvs -Encoding: 65675 -1 562 +Encoding: 65675 -1 560 GlifName: uni0946_uni0902.abvs Width: 1024 VWidth: 0 @@ -21821,7 +21775,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0946 uni0 EndChar StartChar: uni0946_uni0930_uni094D.abvs -Encoding: 65676 -1 563 +Encoding: 65676 -1 561 GlifName: uni0946_uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -21870,7 +21824,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0946 uni0 EndChar StartChar: uni0947 -Encoding: 2375 2375 564 +Encoding: 2375 2375 562 GlifName: uni0947 Width: 1024 VWidth: 0 @@ -21893,7 +21847,7 @@ EndSplineSet EndChar StartChar: uni0947_uni0902.abvs -Encoding: 65677 -1 565 +Encoding: 65677 -1 563 GlifName: uni0947_uni0902.abvs Width: 1024 VWidth: 0 @@ -21922,7 +21876,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0947 uni0 EndChar StartChar: uni0947_uni0930_uni094D.abvs -Encoding: 65678 -1 566 +Encoding: 65678 -1 564 GlifName: uni0947_uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -21961,7 +21915,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0947 uni0 EndChar StartChar: uni0948 -Encoding: 2376 2376 567 +Encoding: 2376 2376 565 GlifName: uni0948 Width: 1024 VWidth: 0 @@ -21989,7 +21943,7 @@ EndSplineSet EndChar StartChar: uni0948_uni0902.abvs -Encoding: 65679 -1 568 +Encoding: 65679 -1 566 GlifName: uni0948_uni0902.abvs Width: 1024 VWidth: 0 @@ -22023,7 +21977,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0948 uni0 EndChar StartChar: uni0948_uni0930_uni094D.abvs -Encoding: 65680 -1 569 +Encoding: 65680 -1 567 GlifName: uni0948_uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -22067,7 +22021,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0948 uni0 EndChar StartChar: uni0949 -Encoding: 2377 2377 570 +Encoding: 2377 2377 568 GlifName: uni0949 Width: 1024 VWidth: 0 @@ -22105,7 +22059,7 @@ EndSplineSet EndChar StartChar: uni0949_uni0902.abvs -Encoding: 65681 -1 571 +Encoding: 65681 -1 569 GlifName: uni0949_uni0902.abvs Width: 1024 VWidth: 0 @@ -22149,7 +22103,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0949 uni0 EndChar StartChar: uni0949_uni0930_uni094D.abvs -Encoding: 65682 -1 572 +Encoding: 65682 -1 570 GlifName: uni0949_uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -22203,7 +22157,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0949 uni0 EndChar StartChar: uni094A -Encoding: 2378 2378 573 +Encoding: 2378 2378 571 GlifName: uni094A_ Width: 1024 VWidth: 0 @@ -22241,7 +22195,7 @@ EndSplineSet EndChar StartChar: uni094A_uni0902.abvs -Encoding: 65683 -1 574 +Encoding: 65683 -1 572 GlifName: uni094A__uni0902.abvs Width: 1024 VWidth: 0 @@ -22285,7 +22239,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094A uni0 EndChar StartChar: uni094A_uni0930_uni094D.abvs -Encoding: 65684 -1 575 +Encoding: 65684 -1 573 GlifName: uni094A__uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -22339,7 +22293,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094A uni0 EndChar StartChar: uni094B -Encoding: 2379 2379 576 +Encoding: 2379 2379 574 GlifName: uni094B_ Width: 1024 VWidth: 0 @@ -22367,7 +22321,7 @@ EndSplineSet EndChar StartChar: uni094B_uni0902.abvs -Encoding: 65685 -1 577 +Encoding: 65685 -1 575 GlifName: uni094B__uni0902.abvs Width: 1024 VWidth: 0 @@ -22401,7 +22355,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094B uni0 EndChar StartChar: uni094B_uni0930_uni094D.abvs -Encoding: 65686 -1 578 +Encoding: 65686 -1 576 GlifName: uni094B__uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -22445,7 +22399,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094B uni0 EndChar StartChar: uni094C -Encoding: 2380 2380 579 +Encoding: 2380 2380 577 GlifName: uni094C_ Width: 1024 VWidth: 0 @@ -22478,7 +22432,7 @@ EndSplineSet EndChar StartChar: uni094C_uni0902.abvs -Encoding: 65687 -1 580 +Encoding: 65687 -1 578 GlifName: uni094C__uni0902.abvs Width: 1024 VWidth: 0 @@ -22517,7 +22471,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094C uni0 EndChar StartChar: uni094C_uni0930_uni094D.abvs -Encoding: 65688 -1 581 +Encoding: 65688 -1 579 GlifName: uni094C__uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -22566,7 +22520,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094C uni0 EndChar StartChar: uni094D -Encoding: 2381 2381 582 +Encoding: 2381 2381 580 GlifName: uni094D_ Width: 0 VWidth: 0 @@ -22590,7 +22544,7 @@ EndSplineSet EndChar StartChar: uni094E -Encoding: 2382 2382 583 +Encoding: 2382 2382 581 GlifName: uni094E_ Width: 1024 VWidth: 0 @@ -22613,7 +22567,7 @@ EndSplineSet EndChar StartChar: uni094F -Encoding: 2383 2383 584 +Encoding: 2383 2383 582 GlifName: uni094F_ Width: 1024 VWidth: 0 @@ -22666,7 +22620,7 @@ EndSplineSet EndChar StartChar: uni0950 -Encoding: 2384 2384 585 +Encoding: 2384 2384 583 GlifName: uni0950 Width: 1024 VWidth: 0 @@ -22724,7 +22678,7 @@ EndSplineSet EndChar StartChar: uni0951 -Encoding: 2385 2385 586 +Encoding: 2385 2385 584 GlifName: uni0951 Width: 1024 VWidth: 0 @@ -22742,7 +22696,7 @@ EndSplineSet EndChar StartChar: uni0952 -Encoding: 2386 2386 587 +Encoding: 2386 2386 585 GlifName: uni0952 Width: 1024 VWidth: 0 @@ -22761,7 +22715,7 @@ EndSplineSet EndChar StartChar: uni0953 -Encoding: 2387 2387 588 +Encoding: 2387 2387 586 GlifName: uni0953 Width: 1024 VWidth: 0 @@ -22779,7 +22733,7 @@ EndSplineSet EndChar StartChar: uni0954 -Encoding: 2388 2388 589 +Encoding: 2388 2388 587 GlifName: uni0954 Width: 1024 VWidth: 0 @@ -22797,7 +22751,7 @@ EndSplineSet EndChar StartChar: uni0955 -Encoding: 2389 2389 590 +Encoding: 2389 2389 588 GlifName: uni0955 Width: 1024 VWidth: 0 @@ -22835,7 +22789,7 @@ EndSplineSet EndChar StartChar: uni0956 -Encoding: 2390 2390 591 +Encoding: 2390 2390 589 GlifName: uni0956 Width: 1024 VWidth: 0 @@ -22868,7 +22822,7 @@ EndSplineSet EndChar StartChar: uni0957 -Encoding: 2391 2391 592 +Encoding: 2391 2391 590 GlifName: uni0957 Width: 1024 VWidth: 0 @@ -22916,7 +22870,7 @@ EndSplineSet EndChar StartChar: uni0958 -Encoding: 2392 2392 593 +Encoding: 2392 2392 591 GlifName: uni0958 Width: 1024 VWidth: 0 @@ -22970,7 +22924,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0915 uni093C EndChar StartChar: uni0958_uni0930_uni094D.vatu -Encoding: 65689 -1 594 +Encoding: 65689 -1 592 GlifName: uni0958_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -23029,7 +22983,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0958 uni0930_uni09 EndChar StartChar: uni0958_uni094D.half -Encoding: 65690 -1 595 +Encoding: 65690 -1 593 GlifName: uni0958_uni094D_.half Width: 1024 VWidth: 0 @@ -23078,7 +23032,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0958 uni094D EndChar StartChar: uni0958_uni094D.haln -Encoding: 65691 -1 596 +Encoding: 65691 -1 594 GlifName: uni0958_uni094D_.haln Width: 1024 VWidth: 0 @@ -23142,7 +23096,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0958 uni094D EndChar StartChar: uni0959 -Encoding: 2393 2393 597 +Encoding: 2393 2393 595 GlifName: uni0959 Width: 1024 VWidth: 0 @@ -23201,7 +23155,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0916 uni093C EndChar StartChar: uni0959_uni0930_uni094D.vatu -Encoding: 65692 -1 598 +Encoding: 65692 -1 596 GlifName: uni0959_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -23265,7 +23219,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0959 uni0930_uni09 EndChar StartChar: uni0959_uni094D.half -Encoding: 65693 -1 599 +Encoding: 65693 -1 597 GlifName: uni0959_uni094D_.half Width: 1024 VWidth: 0 @@ -23319,7 +23273,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0959 uni094D EndChar StartChar: uni0959_uni094D.haln -Encoding: 65694 -1 600 +Encoding: 65694 -1 598 GlifName: uni0959_uni094D_.haln Width: 1024 VWidth: 0 @@ -23388,7 +23342,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0959 uni094D EndChar StartChar: uni095A -Encoding: 2394 2394 601 +Encoding: 2394 2394 599 GlifName: uni095A_ Width: 1024 VWidth: 0 @@ -23432,7 +23386,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0917 uni093C EndChar StartChar: uni095A_uni0930_uni094D.vatu -Encoding: 65695 -1 602 +Encoding: 65695 -1 600 GlifName: uni095A__uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -23481,7 +23435,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095A uni0930_uni09 EndChar StartChar: uni095A_uni094D.half -Encoding: 65696 -1 603 +Encoding: 65696 -1 601 GlifName: uni095A__uni094D_.half Width: 1024 VWidth: 0 @@ -23520,7 +23474,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni095A uni094D EndChar StartChar: uni095A_uni094D.haln -Encoding: 65697 -1 604 +Encoding: 65697 -1 602 GlifName: uni095A__uni094D_.haln Width: 1024 VWidth: 0 @@ -23574,7 +23528,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095A uni094D EndChar StartChar: uni095B -Encoding: 2395 2395 605 +Encoding: 2395 2395 603 GlifName: uni095B_ Width: 1024 VWidth: 0 @@ -23623,7 +23577,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni091C uni093C EndChar StartChar: uni095B_uni0930_uni094D.vatu -Encoding: 65698 -1 606 +Encoding: 65698 -1 604 GlifName: uni095B__uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -23677,7 +23631,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095B uni0930_uni09 EndChar StartChar: uni095B_uni094D.half -Encoding: 65699 -1 607 +Encoding: 65699 -1 605 GlifName: uni095B__uni094D_.half Width: 1024 VWidth: 0 @@ -23721,7 +23675,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni095B uni094D EndChar StartChar: uni095B_uni094D.haln -Encoding: 65700 -1 608 +Encoding: 65700 -1 606 GlifName: uni095B__uni094D_.haln Width: 1024 VWidth: 0 @@ -23780,7 +23734,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095B uni094D EndChar StartChar: uni095C -Encoding: 2396 2396 609 +Encoding: 2396 2396 607 GlifName: uni095C_ Width: 1024 VWidth: 0 @@ -23839,7 +23793,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0921 uni093C EndChar StartChar: uni095C_uni0930_uni094D.vatu -Encoding: 65701 -1 610 +Encoding: 65701 -1 608 GlifName: uni095C__uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -23908,7 +23862,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095C uni0930_uni09 EndChar StartChar: uni095C_uni094D.haln -Encoding: 65702 -1 611 +Encoding: 65702 -1 609 GlifName: uni095C__uni094D_.haln Width: 1024 VWidth: 0 @@ -23977,7 +23931,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095C uni094D EndChar StartChar: uni095D -Encoding: 2397 2397 612 +Encoding: 2397 2397 610 GlifName: uni095D_ Width: 1024 VWidth: 0 @@ -24031,7 +23985,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0922 uni093C EndChar StartChar: uni095D_uni0930_uni094D.vatu -Encoding: 65703 -1 613 +Encoding: 65703 -1 611 GlifName: uni095D__uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -24095,7 +24049,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095D uni0930_uni09 EndChar StartChar: uni095D_uni094D.haln -Encoding: 65704 -1 614 +Encoding: 65704 -1 612 GlifName: uni095D__uni094D_.haln Width: 1024 VWidth: 0 @@ -24159,7 +24113,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095D uni094D EndChar StartChar: uni095E -Encoding: 2398 2398 615 +Encoding: 2398 2398 613 GlifName: uni095E_ Width: 1024 VWidth: 0 @@ -24203,7 +24157,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni092B uni093C EndChar StartChar: uni095E_uni0930_uni094D.vatu -Encoding: 65705 -1 616 +Encoding: 65705 -1 614 GlifName: uni095E__uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -24252,7 +24206,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095E uni0930_uni09 EndChar StartChar: uni095E_uni094D.half -Encoding: 65706 -1 617 +Encoding: 65706 -1 615 GlifName: uni095E__uni094D_.half Width: 1024 VWidth: 0 @@ -24291,7 +24245,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni095E uni094D EndChar StartChar: uni095E_uni094D.haln -Encoding: 65707 -1 618 +Encoding: 65707 -1 616 GlifName: uni095E__uni094D_.haln Width: 1024 VWidth: 0 @@ -24345,7 +24299,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095E uni094D EndChar StartChar: uni095F -Encoding: 2399 2399 619 +Encoding: 2399 2399 617 GlifName: uni095F_ Width: 1024 VWidth: 0 @@ -24389,7 +24343,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni092F uni093C EndChar StartChar: uni095F_uni0930_uni094D.vatu -Encoding: 65708 -1 620 +Encoding: 65708 -1 618 GlifName: uni095F__uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -24438,7 +24392,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095F uni0930_uni09 EndChar StartChar: uni095F_uni094D.half -Encoding: 65709 -1 621 +Encoding: 65709 -1 619 GlifName: uni095F__uni094D_.half Width: 1024 VWidth: 0 @@ -24492,7 +24446,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni095F uni094D EndChar StartChar: uni095F_uni094D.haln -Encoding: 65710 -1 622 +Encoding: 65710 -1 620 GlifName: uni095F__uni094D_.haln Width: 1024 VWidth: 0 @@ -24546,7 +24500,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095F uni094D EndChar StartChar: uni0960 -Encoding: 2400 2400 623 +Encoding: 2400 2400 621 GlifName: uni0960 Width: 1024 VWidth: 0 @@ -24604,7 +24558,7 @@ EndSplineSet EndChar StartChar: uni0961 -Encoding: 2401 2401 624 +Encoding: 2401 2401 622 GlifName: uni0961 Width: 1024 VWidth: 0 @@ -24657,7 +24611,7 @@ EndSplineSet EndChar StartChar: uni0962 -Encoding: 2402 2402 625 +Encoding: 2402 2402 623 GlifName: uni0962 Width: 1024 VWidth: 0 @@ -24700,7 +24654,7 @@ EndSplineSet EndChar StartChar: uni0963 -Encoding: 2403 2403 626 +Encoding: 2403 2403 624 GlifName: uni0963 Width: 1024 VWidth: 0 @@ -24748,7 +24702,7 @@ EndSplineSet EndChar StartChar: uni0964 -Encoding: 2404 2404 627 +Encoding: 2404 2404 625 GlifName: uni0964 Width: 1024 VWidth: 0 @@ -24766,7 +24720,7 @@ EndSplineSet EndChar StartChar: uni0965 -Encoding: 2405 2405 628 +Encoding: 2405 2405 626 GlifName: uni0965 Width: 1024 VWidth: 0 @@ -24789,7 +24743,7 @@ EndSplineSet EndChar StartChar: uni0966 -Encoding: 2406 2406 629 +Encoding: 2406 2406 627 GlifName: uni0966 Width: 1024 VWidth: 0 @@ -24822,7 +24776,7 @@ EndSplineSet EndChar StartChar: uni0967 -Encoding: 2407 2407 630 +Encoding: 2407 2407 628 GlifName: uni0967 Width: 1024 VWidth: 0 @@ -24855,7 +24809,7 @@ EndSplineSet EndChar StartChar: uni0968 -Encoding: 2408 2408 631 +Encoding: 2408 2408 629 GlifName: uni0968 Width: 1024 VWidth: 0 @@ -24893,7 +24847,7 @@ EndSplineSet EndChar StartChar: uni0969 -Encoding: 2409 2409 632 +Encoding: 2409 2409 630 GlifName: uni0969 Width: 1024 VWidth: 0 @@ -24931,7 +24885,7 @@ EndSplineSet EndChar StartChar: uni096A -Encoding: 2410 2410 633 +Encoding: 2410 2410 631 GlifName: uni096A_ Width: 1024 VWidth: 0 @@ -24979,7 +24933,7 @@ EndSplineSet EndChar StartChar: uni096B -Encoding: 2411 2411 634 +Encoding: 2411 2411 632 GlifName: uni096B_ Width: 1024 VWidth: 0 @@ -25012,7 +24966,7 @@ EndSplineSet EndChar StartChar: uni096C -Encoding: 2412 2412 635 +Encoding: 2412 2412 633 GlifName: uni096C_ Width: 1024 VWidth: 0 @@ -25050,7 +25004,7 @@ EndSplineSet EndChar StartChar: uni096D -Encoding: 2413 2413 636 +Encoding: 2413 2413 634 GlifName: uni096D_ Width: 1024 VWidth: 0 @@ -25088,7 +25042,7 @@ EndSplineSet EndChar StartChar: uni096E -Encoding: 2414 2414 637 +Encoding: 2414 2414 635 GlifName: uni096E_ Width: 1024 VWidth: 0 @@ -25116,7 +25070,7 @@ EndSplineSet EndChar StartChar: uni096F -Encoding: 2415 2415 638 +Encoding: 2415 2415 636 GlifName: uni096F_ Width: 1024 VWidth: 0 @@ -25154,7 +25108,7 @@ EndSplineSet EndChar StartChar: uni0970 -Encoding: 2416 2416 639 +Encoding: 2416 2416 637 GlifName: uni0970 Width: 1024 VWidth: 0 @@ -25172,7 +25126,7 @@ EndSplineSet EndChar StartChar: uni0971 -Encoding: 2417 2417 640 +Encoding: 2417 2417 638 GlifName: uni0971 Width: 1024 VWidth: 0 @@ -25190,7 +25144,7 @@ EndSplineSet EndChar StartChar: uni0972 -Encoding: 2418 2418 641 +Encoding: 2418 2418 639 GlifName: uni0972 Width: 1024 VWidth: 0 @@ -25248,7 +25202,7 @@ EndSplineSet EndChar StartChar: uni0973 -Encoding: 2419 2419 642 +Encoding: 2419 2419 640 GlifName: uni0973 Width: 1024 VWidth: 0 @@ -25296,7 +25250,7 @@ EndSplineSet EndChar StartChar: uni0974 -Encoding: 2420 2420 643 +Encoding: 2420 2420 641 GlifName: uni0974 Width: 1024 VWidth: 0 @@ -25344,7 +25298,7 @@ EndSplineSet EndChar StartChar: uni0975 -Encoding: 2421 2421 644 +Encoding: 2421 2421 642 GlifName: uni0975 Width: 1024 VWidth: 0 @@ -25417,7 +25371,7 @@ EndSplineSet EndChar StartChar: uni0976 -Encoding: 2422 2422 645 +Encoding: 2422 2422 643 GlifName: uni0976 Width: 1024 VWidth: 0 @@ -25475,7 +25429,7 @@ EndSplineSet EndChar StartChar: uni0977 -Encoding: 2423 2423 646 +Encoding: 2423 2423 644 GlifName: uni0977 Width: 1024 VWidth: 0 @@ -25548,7 +25502,7 @@ EndSplineSet EndChar StartChar: uni0978 -Encoding: 2424 2424 647 +Encoding: 2424 2424 645 GlifName: uni0978 Width: 1024 VWidth: 0 @@ -25581,7 +25535,7 @@ EndSplineSet EndChar StartChar: uni0979 -Encoding: 2425 2425 648 +Encoding: 2425 2425 646 GlifName: uni0979 Width: 1024 VWidth: 0 @@ -25639,7 +25593,7 @@ EndSplineSet EndChar StartChar: uni097A -Encoding: 2426 2426 649 +Encoding: 2426 2426 647 GlifName: uni097A_ Width: 1024 VWidth: 0 @@ -25682,7 +25636,7 @@ EndSplineSet EndChar StartChar: uni097B -Encoding: 2427 2427 650 +Encoding: 2427 2427 648 GlifName: uni097B_ Width: 1024 VWidth: 0 @@ -25725,7 +25679,7 @@ EndSplineSet EndChar StartChar: uni097C -Encoding: 2428 2428 651 +Encoding: 2428 2428 649 GlifName: uni097C_ Width: 1024 VWidth: 0 @@ -25773,7 +25727,7 @@ EndSplineSet EndChar StartChar: uni097D -Encoding: 2429 2429 652 +Encoding: 2429 2429 650 GlifName: uni097D_ Width: 1024 VWidth: 0 @@ -25806,7 +25760,7 @@ EndSplineSet EndChar StartChar: uni097E -Encoding: 2430 2430 653 +Encoding: 2430 2430 651 GlifName: uni097E_ Width: 1024 VWidth: 0 @@ -25854,7 +25808,7 @@ EndSplineSet EndChar StartChar: uni097F -Encoding: 2431 2431 654 +Encoding: 2431 2431 652 GlifName: uni097F_ Width: 1024 VWidth: 0 @@ -25902,7 +25856,7 @@ EndSplineSet EndChar StartChar: uni1E0C -Encoding: 7692 7692 655 +Encoding: 7692 7692 653 GlifName: uni1E_0C_ Width: 1024 VWidth: 0 @@ -25915,7 +25869,7 @@ Refer: 19 68 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E0D -Encoding: 7693 7693 656 +Encoding: 7693 7693 654 GlifName: uni1E_0D_ Width: 1024 VWidth: 0 @@ -25928,7 +25882,7 @@ Refer: 160 100 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E34 -Encoding: 7732 7732 657 +Encoding: 7732 7732 655 GlifName: uni1E_34 Width: 1024 VWidth: 0 @@ -25941,7 +25895,7 @@ Refer: 56 75 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E35 -Encoding: 7733 7733 658 +Encoding: 7733 7733 656 GlifName: uni1E_35 Width: 1024 VWidth: 0 @@ -25954,7 +25908,7 @@ Refer: 225 107 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E36 -Encoding: 7734 7734 659 +Encoding: 7734 7734 657 GlifName: uni1E_36 Width: 1024 VWidth: 0 @@ -25968,7 +25922,7 @@ Refer: 57 76 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E37 -Encoding: 7735 7735 660 +Encoding: 7735 7735 658 GlifName: uni1E_37 Width: 1024 VWidth: 0 @@ -25981,7 +25935,7 @@ Refer: 226 108 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E38 -Encoding: 7736 7736 661 +Encoding: 7736 7736 659 GlifName: uni1E_38 Width: 1024 VWidth: 0 @@ -25990,11 +25944,11 @@ Flags: HW LayerCount: 2 Fore Refer: 349 772 N 1 0 0 1 265.672 116 2 -Refer: 659 7734 N 1 0 0 1 0 0 3 +Refer: 657 7734 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E39 -Encoding: 7737 7737 662 +Encoding: 7737 7737 660 GlifName: uni1E_39 Width: 1024 VWidth: 0 @@ -26003,11 +25957,11 @@ Flags: HW LayerCount: 2 Fore Refer: 349 772 N 1 0 0 1 370.266 122 2 -Refer: 660 7735 N 1 0 0 1 0 0 3 +Refer: 658 7735 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E3A -Encoding: 7738 7738 663 +Encoding: 7738 7738 661 GlifName: uni1E_3A_ Width: 1024 VWidth: 0 @@ -26020,7 +25974,7 @@ Refer: 57 76 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E3B -Encoding: 7739 7739 664 +Encoding: 7739 7739 662 GlifName: uni1E_3B_ Width: 1024 VWidth: 0 @@ -26033,7 +25987,7 @@ Refer: 226 108 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E42 -Encoding: 7746 7746 665 +Encoding: 7746 7746 663 GlifName: uni1E_42 Width: 1024 VWidth: 0 @@ -26046,7 +26000,7 @@ Refer: 62 77 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E43 -Encoding: 7747 7747 666 +Encoding: 7747 7747 664 GlifName: uni1E_43 Width: 1024 VWidth: 0 @@ -26059,7 +26013,7 @@ Refer: 233 109 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E44 -Encoding: 7748 7748 667 +Encoding: 7748 7748 665 GlifName: uni1E_44 Width: 1024 VWidth: 0 @@ -26072,7 +26026,7 @@ Refer: 63 78 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E45 -Encoding: 7749 7749 668 +Encoding: 7749 7749 666 GlifName: uni1E_45 Width: 1024 VWidth: 0 @@ -26085,7 +26039,7 @@ Refer: 238 110 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E46 -Encoding: 7750 7750 669 +Encoding: 7750 7750 667 GlifName: uni1E_46 Width: 1024 VWidth: 0 @@ -26098,7 +26052,7 @@ Refer: 63 78 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E47 -Encoding: 7751 7751 670 +Encoding: 7751 7751 668 GlifName: uni1E_47 Width: 1024 VWidth: 0 @@ -26111,7 +26065,7 @@ Refer: 238 110 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E48 -Encoding: 7752 7752 671 +Encoding: 7752 7752 669 GlifName: uni1E_48 Width: 1024 VWidth: 0 @@ -26124,7 +26078,7 @@ Refer: 63 78 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E49 -Encoding: 7753 7753 672 +Encoding: 7753 7753 670 GlifName: uni1E_49 Width: 1024 VWidth: 0 @@ -26137,7 +26091,7 @@ Refer: 238 110 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E4C -Encoding: 7756 7756 673 +Encoding: 7756 7756 671 GlifName: uni1E_4C_ Width: 1024 VWidth: 0 @@ -26150,7 +26104,7 @@ Refer: 77 213 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E4D -Encoding: 7757 7757 674 +Encoding: 7757 7757 672 GlifName: uni1E_4D_ Width: 1024 VWidth: 0 @@ -26163,7 +26117,7 @@ Refer: 260 245 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E58 -Encoding: 7768 7768 675 +Encoding: 7768 7768 673 GlifName: uni1E_58 Width: 1024 VWidth: 0 @@ -26176,7 +26130,7 @@ Refer: 80 82 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E59 -Encoding: 7769 7769 676 +Encoding: 7769 7769 674 GlifName: uni1E_59 Width: 1024 VWidth: 0 @@ -26189,7 +26143,7 @@ Refer: 282 114 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E5A -Encoding: 7770 7770 677 +Encoding: 7770 7770 675 GlifName: uni1E_5A_ Width: 1024 VWidth: 0 @@ -26202,7 +26156,7 @@ Refer: 80 82 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E5B -Encoding: 7771 7771 678 +Encoding: 7771 7771 676 GlifName: uni1E_5B_ Width: 1024 VWidth: 0 @@ -26215,7 +26169,7 @@ Refer: 282 114 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E5C -Encoding: 7772 7772 679 +Encoding: 7772 7772 677 GlifName: uni1E_5C_ Width: 1024 VWidth: 0 @@ -26224,11 +26178,11 @@ Flags: HW LayerCount: 2 Fore Refer: 349 772 N 1 0 0 1 339.402 111 2 -Refer: 677 7770 N 1 0 0 1 0 0 3 +Refer: 675 7770 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E5D -Encoding: 7773 7773 680 +Encoding: 7773 7773 678 GlifName: uni1E_5D_ Width: 1024 VWidth: 0 @@ -26237,11 +26191,11 @@ Flags: HW LayerCount: 2 Fore Refer: 349 772 N 1 0 0 1 138.362 -403 2 -Refer: 678 7771 N 1 0 0 1 0 0 3 +Refer: 676 7771 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E5E -Encoding: 7774 7774 681 +Encoding: 7774 7774 679 GlifName: uni1E_5E_ Width: 1024 VWidth: 0 @@ -26254,7 +26208,7 @@ Refer: 80 82 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E5F -Encoding: 7775 7775 682 +Encoding: 7775 7775 680 GlifName: uni1E_5F_ Width: 1024 VWidth: 0 @@ -26267,7 +26221,7 @@ Refer: 282 114 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E62 -Encoding: 7778 7778 683 +Encoding: 7778 7778 681 GlifName: uni1E_62 Width: 1024 VWidth: 0 @@ -26280,7 +26234,7 @@ Refer: 83 83 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E63 -Encoding: 7779 7779 684 +Encoding: 7779 7779 682 GlifName: uni1E_63 Width: 1024 VWidth: 0 @@ -26293,7 +26247,7 @@ Refer: 287 115 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E6C -Encoding: 7788 7788 685 +Encoding: 7788 7788 683 GlifName: uni1E_6C_ Width: 1024 VWidth: 0 @@ -26306,7 +26260,7 @@ Refer: 88 84 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E6D -Encoding: 7789 7789 686 +Encoding: 7789 7789 684 GlifName: uni1E_6D_ Width: 1024 VWidth: 0 @@ -26319,7 +26273,7 @@ Refer: 299 116 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E8E -Encoding: 7822 7822 687 +Encoding: 7822 7822 685 GlifName: uni1E_8E_ Width: 1024 VWidth: 0 @@ -26332,7 +26286,7 @@ Refer: 109 89 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E8F -Encoding: 7823 7823 688 +Encoding: 7823 7823 686 GlifName: uni1E_8F_ Width: 1024 VWidth: 0 @@ -26341,11 +26295,11 @@ Flags: HW LayerCount: 2 Fore Refer: 352 775 N 1 0 0 1 341.586 -441 2 -Refer: 707 121 N 1 0 0 1 0 0 3 +Refer: 705 121 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E9E -Encoding: 7838 7838 689 +Encoding: 7838 7838 687 GlifName: uni1E_9E_ Width: 1024 VWidth: 0 @@ -26388,7 +26342,7 @@ EndSplineSet EndChar StartChar: uni200C -Encoding: 8204 8204 690 +Encoding: 8204 8204 688 GlifName: uni200C_ Width: 1024 VWidth: 0 @@ -26411,7 +26365,7 @@ EndSplineSet EndChar StartChar: uni200D -Encoding: 8205 8205 691 +Encoding: 8205 8205 689 GlifName: uni200D_ Width: 1024 VWidth: 0 @@ -26429,7 +26383,7 @@ EndSplineSet EndChar StartChar: uni2044 -Encoding: 8260 8260 692 +Encoding: 8260 8260 690 GlifName: uni2044 Width: 1024 VWidth: 0 @@ -26447,7 +26401,7 @@ EndSplineSet EndChar StartChar: uni20B9 -Encoding: 8377 8377 693 +Encoding: 8377 8377 691 GlifName: uni20B_9 Width: 1024 VWidth: 0 @@ -26485,7 +26439,7 @@ EndSplineSet EndChar StartChar: uni25CC -Encoding: 9676 9676 694 +Encoding: 9676 9676 692 GlifName: uni25C_C_ Width: 1024 VWidth: 0 @@ -26540,7 +26494,7 @@ EndSplineSet EndChar StartChar: uniFB01 -Encoding: 64257 64257 695 +Encoding: 64257 64257 693 GlifName: uniF_B_01 Width: 1024 VWidth: 0 @@ -26579,7 +26533,7 @@ Ligature2: "dligDiscretionaryLigatureslookup0 subtable" f i EndChar StartChar: uniFB02 -Encoding: 64258 64258 696 +Encoding: 64258 64258 694 GlifName: uniF_B_02 Width: 1024 VWidth: 0 @@ -26623,7 +26577,7 @@ Ligature2: "dligDiscretionaryLigatureslookup0 subtable" f l EndChar StartChar: uogonek -Encoding: 371 371 697 +Encoding: 371 371 695 GlifName: uogonek Width: 1024 VWidth: 0 @@ -26636,7 +26590,7 @@ Refer: 308 117 N 1 0 0 1 0 0 2 EndChar StartChar: uring -Encoding: 367 367 698 +Encoding: 367 367 696 GlifName: uring Width: 1024 VWidth: 0 @@ -26649,7 +26603,7 @@ Refer: 308 117 N 1 0 0 1 -10.7998 0 3 EndChar StartChar: utilde -Encoding: 361 361 699 +Encoding: 361 361 697 GlifName: utilde Width: 1024 VWidth: 0 @@ -26662,7 +26616,7 @@ Refer: 308 117 N 1 0 0 1 -87.7646 0 3 EndChar StartChar: v -Encoding: 118 118 700 +Encoding: 118 118 698 GlifName: v Width: 1024 VWidth: 0 @@ -26686,7 +26640,7 @@ EndSplineSet EndChar StartChar: w -Encoding: 119 119 701 +Encoding: 119 119 699 GlifName: w Width: 1024 VWidth: 0 @@ -26720,7 +26674,7 @@ EndSplineSet EndChar StartChar: wacute -Encoding: 7811 7811 702 +Encoding: 7811 7811 700 GlifName: wacute Width: 1024 VWidth: 0 @@ -26729,11 +26683,11 @@ Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 618.126 -730 2 -Refer: 701 119 N 1 0 0 1 0 0 3 +Refer: 699 119 N 1 0 0 1 0 0 3 EndChar StartChar: wcircumflex -Encoding: 373 373 703 +Encoding: 373 373 701 GlifName: wcircumflex Width: 1024 VWidth: 0 @@ -26742,11 +26696,11 @@ Flags: HW LayerCount: 2 Fore Refer: 348 770 N 1 0 0 1 606.991 -304 2 -Refer: 701 119 N 1 0 0 1 -44.4106 0 3 +Refer: 699 119 N 1 0 0 1 -44.4106 0 3 EndChar StartChar: wdieresis -Encoding: 7813 7813 704 +Encoding: 7813 7813 702 GlifName: wdieresis Width: 1024 VWidth: 0 @@ -26755,11 +26709,11 @@ Flags: HW LayerCount: 2 Fore Refer: 353 776 N 1 0 0 1 560.229 -487 2 -Refer: 701 119 N 1 0 0 1 0 0 3 +Refer: 699 119 N 1 0 0 1 0 0 3 EndChar StartChar: wgrave -Encoding: 7809 7809 705 +Encoding: 7809 7809 703 GlifName: wgrave Width: 1024 VWidth: 0 @@ -26768,11 +26722,11 @@ Flags: HW LayerCount: 2 Fore Refer: 201 768 N 1 0 0 1 578.669 -721 2 -Refer: 701 119 N 1 0 0 1 0 0 3 +Refer: 699 119 N 1 0 0 1 0 0 3 EndChar StartChar: x -Encoding: 120 120 706 +Encoding: 120 120 704 GlifName: x Width: 1024 VWidth: 0 @@ -26795,7 +26749,7 @@ EndSplineSet EndChar StartChar: y -Encoding: 121 121 707 +Encoding: 121 121 705 GlifName: y Width: 1024 VWidth: 0 @@ -26830,7 +26784,7 @@ EndSplineSet EndChar StartChar: yacute -Encoding: 253 253 708 +Encoding: 253 253 706 GlifName: yacute Width: 1024 VWidth: 0 @@ -26839,11 +26793,11 @@ Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 442.102 -735 2 -Refer: 707 121 N 1 0 0 1 0 0 3 +Refer: 705 121 N 1 0 0 1 0 0 3 EndChar StartChar: ycircumflex -Encoding: 375 375 709 +Encoding: 375 375 707 GlifName: ycircumflex Width: 1024 VWidth: 0 @@ -26852,11 +26806,11 @@ Flags: HW LayerCount: 2 Fore Refer: 348 770 N 1 0 0 1 414.378 -309 2 -Refer: 707 121 N 1 0 0 1 0 0 3 +Refer: 705 121 N 1 0 0 1 0 0 3 EndChar StartChar: ydieresis -Encoding: 255 255 710 +Encoding: 255 255 708 GlifName: ydieresis Width: 1024 VWidth: 0 @@ -26865,11 +26819,11 @@ Flags: HW LayerCount: 2 Fore Refer: 353 776 N 1 0 0 1 293.206 -492 2 -Refer: 707 121 N 1 0 0 1 0 0 3 +Refer: 705 121 N 1 0 0 1 0 0 3 EndChar StartChar: yen -Encoding: 165 165 711 +Encoding: 165 165 709 GlifName: yen Width: 1024 VWidth: 0 @@ -26912,7 +26866,7 @@ EndSplineSet EndChar StartChar: ygrave -Encoding: 7923 7923 712 +Encoding: 7923 7923 710 GlifName: ygrave Width: 1024 VWidth: 0 @@ -26921,11 +26875,11 @@ Flags: HW LayerCount: 2 Fore Refer: 201 768 N 1 0 0 1 341.645 -726 2 -Refer: 707 121 N 1 0 0 1 0 0 3 +Refer: 705 121 N 1 0 0 1 0 0 3 EndChar StartChar: z -Encoding: 122 122 713 +Encoding: 122 122 711 GlifName: z Width: 1024 VWidth: 0 @@ -26955,7 +26909,7 @@ EndSplineSet EndChar StartChar: zacute -Encoding: 378 378 714 +Encoding: 378 378 712 GlifName: zacute Width: 1024 VWidth: 0 @@ -26964,11 +26918,11 @@ Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 368.217 -735 2 -Refer: 713 122 N 1 0 0 1 0 0 3 +Refer: 711 122 N 1 0 0 1 0 0 3 EndChar StartChar: zcaron -Encoding: 382 382 715 +Encoding: 382 382 713 GlifName: zcaron Width: 1024 VWidth: 0 @@ -26977,11 +26931,11 @@ Flags: HW LayerCount: 2 Fore Refer: 356 780 N 1 0 0 1 437.386 -204 2 -Refer: 713 122 N 1 0 0 1 0 0 3 +Refer: 711 122 N 1 0 0 1 0 0 3 EndChar StartChar: zdotaccent -Encoding: 380 380 716 +Encoding: 380 380 714 GlifName: zdotaccent Width: 1024 VWidth: 0 @@ -26990,11 +26944,11 @@ Flags: HW LayerCount: 2 Fore Refer: 352 775 N 1 0 0 1 330.7 -441 2 -Refer: 713 122 N 1 0 0 1 0 0 3 +Refer: 711 122 N 1 0 0 1 0 0 3 EndChar StartChar: zero -Encoding: 48 48 717 +Encoding: 48 48 715 GlifName: zero Width: 1024 VWidth: 0 @@ -27022,7 +26976,7 @@ EndSplineSet EndChar StartChar: napostrophe -Encoding: 329 329 718 +Encoding: 329 329 716 Width: 1024 Flags: HW LayerCount: 2 diff --git a/sources/Samaano-Bold-Slanted.ufo/features.fea b/sources/Samaano-Bold-Slanted.ufo/features.fea index a10791b8f..a06e0c56e 100644 --- a/sources/Samaano-Bold-Slanted.ufo/features.fea +++ b/sources/Samaano-Bold-Slanted.ufo/features.fea @@ -235,7 +235,7 @@ feature half { script DFLT; language dflt ; lookup halfHalfFormsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup halfHalfFormsinDevanagarilookup0; } half; @@ -243,7 +243,7 @@ feature haln { script DFLT; language dflt ; lookup halnHalantFormsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup halnHalantFormsinDevanagarilookup0; } haln; @@ -251,7 +251,7 @@ feature vatu { script DFLT; language dflt ; lookup vatuVattuVariantsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup vatuVattuVariantsinDevanagarilookup0; } vatu; @@ -259,7 +259,7 @@ feature pres { script DFLT; language dflt ; lookup presPreBaseSubstitutionsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup presPreBaseSubstitutionsinDevanagarilookup0; } pres; @@ -267,7 +267,7 @@ feature abvs { script DFLT; language dflt ; lookup abvsAboveBaseSubstitutionsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup abvsAboveBaseSubstitutionsinDevanagarilookup0; } abvs; @@ -275,7 +275,7 @@ feature blws { script DFLT; language dflt ; lookup blwsBelowBaseSubstitutionsinDevanagarilookup12; - script dev2; + script deva; language dflt ; lookup blwsBelowBaseSubstitutionsinDevanagarilookup12; } blws; @@ -288,22 +288,22 @@ feature dlig { lookup dligDiscretionaryLigatureslookup0; } dlig;@CombiningTopAccents = [acutecomb oe tildecomb uni0302 uni0304 uni0306 uni0308 uni030A uni030B uni030C]; lookup markMarkPositioninglookup0 { - markClass gravecomb @top; - markClass acutecomb @top; - markClass uni0302 @top; - markClass tildecomb @top; - markClass uni0304 @top; - markClass uni0306 @top; - markClass uni0307 @top; - markClass uni0308 @top; - markClass uni030A @top; - markClass uni030B @top; - markClass uni030C @top; - markClass dotbelowcomb @base; - markClass uni0326 @base; - markClass uni0327 @base; - markClass uni0328 @base; - markClass uni0331 @base; + markClass gravecomb @top; + markClass acutecomb @top; + markClass uni0302 @top; + markClass tildecomb @top; + markClass uni0304 @top; + markClass uni0306 @top; + markClass uni0307 @top; + markClass uni0308 @top; + markClass uni030A @top; + markClass uni030B @top; + markClass uni030C @top; + markClass dotbelowcomb @base; + markClass uni0326 @base; + markClass uni0327 @base; + markClass uni0328 @base; + markClass uni0331 @base; pos base A mark @top; pos base C mark @top; pos base D mark @top; @@ -377,9 +377,9 @@ lookup markMarkPositioninglookup0 { pos base uni25CC mark @base; } markMarkPositioninglookup0; lookup abvmAboveBaseMarkinDevanagari2lookup1 { - markClass uni0900 @abvm; - markClass uni0901 @abvm; - markClass uni0902 @abvm; + markClass uni0900 @abvm; + markClass uni0901 @abvm; + markClass uni0902 @abvm; markClass uni0951 @abvm; markClass uni0953 @abvm; markClass uni0954 @abvm; @@ -415,9 +415,8 @@ feature blwm { script dev2; language dflt ; lookup blwmBelowBaseMarkinDevanagari2lookup2; -} blwm; -@GDEF_base = [A AE Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Emacron Eng Eogonek Eth Euro F G Gbreve Gcircumflex Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek Itilde J Jcircumflex K L Lacute Lcaron Ldot Lslash M N Nacute Ncaron Ntilde O OE Oacute Obreve Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Otilde P Q R Racute Rcaron S Sacute Scaron Scedilla Scircumflex T Tcaron Thorn U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ygrave Z Zacute Zcaron Zdotaccent a aacute abreve acircumflex acute adieresis ae agrave amacron ampersand aogonek aring asciicircum asciitilde asterisk at atilde b backslash bar braceleft braceright bracketleft bracketright breve brokenbar bullet c cacute caron ccaron ccedilla ccircumflex cdotaccent cedilla cent circumflex colon comma copyright currency d dagger daggerdbl dcaron dcroat degree dieresis divide dollar dotaccent dotlessi e eacute ebreve ecaron ecircumflex edieresis edotaccent egrave eight ellipsis emacron emdash endash eng eogonek equal eth exclam exclamdown f five four g gbreve gcircumflex gdotaccent germandbls grave greater guillemotleft guillemotright guilsinglleft guilsinglright h hbar hcircumflex hookabovecomb hungarumlaut hyphen i iacute ibreve icircumflex idieresis igrave ij imacron iogonek itilde j jcircumflex k l lacute lcaron ldot less logicalnot lslash m macron minus mu multiply n nacute ncaron nine ntilde numbersign o oacute obreve ocircumflex odieresis oe ogonek ograve ohungarumlaut omacron one onehalf onequarter ordfeminine ordmasculine oslash otilde p paragraph parenleft parenright percent period periodcentered perthousand plus plusminus q question questiondown quotedbl quotedblbase quotedblleft quotedblright quoteleft quoteright quotesinglbase quotesingle r racute rcaron registered ring s sacute scaron scedilla scircumflex section semicolon seven six slash space sterling t tcaron thorn three threequarters tilde trademark two u uacute ubreve ucircumflex udieresis ugrave uhungarumlaut umacron underscore uni00A0 uni00B2 uni00B3 uni00B9 uni0122 uni0123 uni0136 uni0137 uni013B uni013C uni0145 uni0146 uni0156 uni0157 uni0162 uni0163 uni0192 uni01C4 uni01C5 uni01C6 uni0218 uni0219 uni021A uni021B uni0237 uni02B9 uni02BA uni02BC uni02C9 uni02CA uni02CB uni0305 uni0903 uni0904 uni0905 uni0906 uni0907 uni0908 uni0909 uni090A uni090B uni090C uni090D uni090E uni090F uni0910 uni0911 uni0912 uni0913 uni0914 uni0915 uni0915_uni094D.half uni0915_uni094D_uni0937_uni094D uni0916 uni0916_uni094D.half uni0917 uni0918 uni0919 uni091A uni091A_uni0930_uni094D.vatu uni091B uni091C uni091C_uni0930_uni094D.vatu uni091C_uni094D_uni091E_uni094D uni091D uni091E uni091F uni0920 uni0921 uni0922 uni0922_uni0930_uni094D.vatu uni0923 uni0923_uni0930_uni094D.vatu uni0924 uni0925 uni0926 uni0927 uni0928 uni0929 uni092A uni092B uni092C uni092D uni092E uni092F uni0930 uni0930_uni094D.abvs uni0930_uni094D.haln uni0930_uni094D.vatu uni0931 uni0932 uni0933 uni0934 uni0935 uni0936 uni0936_uni094D.haln uni0937 uni0938 uni0938_uni0930_uni094D.vatu uni0938_uni094D.haln uni0939 uni0939_uni0930_uni094D.vatu uni093B uni093D uni093E uni093F uni0940 uni0940_uni0930_uni094D.abvs uni0945_uni0930_uni094D.abvs uni0946_uni0930_uni094D.abvs uni0947_uni0930_uni094D.abvs uni0948_uni0930_uni094D.abvs uni0949 uni0949_uni0930_uni094D.abvs uni094A uni094A_uni0930_uni094D.abvs uni094B uni094B_uni0930_uni094D.abvs uni094C uni094C_uni0930_uni094D.abvs uni094E uni094F uni0950 uni0958 uni0959 uni095A uni095A_uni094D.haln uni095B uni095C uni095D uni095E uni095E_uni0930_uni094D.vatu uni095F uni095F_uni0930_uni094D.vatu uni0960 uni0961 uni0964 uni0965 uni0966 uni0967 uni0968 uni0969 uni096A uni096B uni096C uni096D uni096E uni096F uni0970 uni0971 uni0972 uni0973 uni0974 uni0975 uni0976 uni0977 uni0978 uni0979 uni097A uni097B uni097C uni097D uni097E uni097F uni1E0C uni1E0D uni1E34 uni1E35 uni1E36 uni1E37 uni1E38 uni1E39 uni1E3A uni1E3B uni1E42 uni1E43 uni1E44 uni1E45 uni1E46 uni1E47 uni1E48 uni1E49 uni1E4C uni1E4D uni1E58 uni1E59 uni1E5A uni1E5B uni1E5C uni1E5D uni1E5E uni1E5F uni1E62 uni1E63 uni1E6C uni1E6D uni1E8E uni1E8F uni1E9E uni200C uni200D uni2044 uni20B9 uni25CC uogonek uring utilde v w wacute wcircumflex wdieresis wgrave x y yacute ycircumflex ydieresis yen ygrave z zacute zcaron zdotaccent zero]; -@GDEF_mark = [acutecomb dotbelowcomb glyph094D gravecomb tildecomb uni0302 uni0304 uni0306 uni0307 uni0308 uni030A uni030B uni030C uni0326 uni0327 uni0328 uni0331 uni0900 uni0901 uni0902 uni0930_uni094D.blwf uni0930_uni094D.rphf uni093A uni093C uni0941 uni0942 uni0943 uni0944 uni0945 uni0946 uni0947 uni0948 uni094D uni0951 uni0952 uni0953 uni0954 uni0955 uni0956 uni0957 uni0962 uni0963]; +} blwm;@GDEF_base = [A AE Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Emacron Eng Eogonek Eth Euro F G Gbreve Gcircumflex Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek Itilde J Jcircumflex K L Lacute Lcaron Ldot Lslash M N Nacute Ncaron Ntilde O OE Oacute Obreve Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Otilde P Q R Racute Rcaron S Sacute Scaron Scedilla Scircumflex T Tcaron Thorn U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ygrave Z Zacute Zcaron Zdotaccent a aacute abreve acircumflex acute adieresis ae agrave amacron ampersand aogonek aring asciicircum asciitilde asterisk at atilde b backslash bar braceleft braceright bracketleft bracketright breve brokenbar bullet c cacute caron ccaron ccedilla ccircumflex cdotaccent cedilla cent circumflex colon comma copyright currency d dagger daggerdbl dcaron dcroat degree dieresis divide dollar dotaccent dotlessi e eacute ebreve ecaron ecircumflex edieresis edotaccent egrave eight ellipsis emacron emdash endash eng eogonek equal eth exclam exclamdown f five four g gbreve gcircumflex gdotaccent germandbls grave greater guillemotleft guillemotright guilsinglleft guilsinglright h hbar hcircumflex hungarumlaut hyphen i iacute ibreve icircumflex idieresis igrave ij imacron iogonek itilde j jcircumflex k l lacute lcaron ldot less logicalnot lslash m macron minus mu multiply n nacute ncaron nine ntilde numbersign o oacute obreve ocircumflex odieresis oe ogonek ograve ohungarumlaut omacron one onehalf onequarter ordfeminine ordmasculine oslash otilde p paragraph parenleft parenright percent period periodcentered perthousand plus plusminus q question questiondown quotedbl quotedblbase quotedblleft quotedblright quoteleft quoteright quotesinglbase quotesingle r racute rcaron registered ring s sacute scaron scedilla scircumflex section semicolon seven six slash space sterling t tcaron thorn three threequarters tilde trademark two u uacute ubreve ucircumflex udieresis ugrave uhungarumlaut umacron underscore uni00A0 uni00B2 uni00B3 uni00B9 uni0122 uni0123 uni0136 uni0137 uni013B uni013C uni0145 uni0146 uni0156 uni0157 uni0162 uni0163 uni0192 uni01C4 uni01C5 uni01C6 uni0218 uni0219 uni021A uni021B uni0237 uni02B9 uni02BA uni02BC uni02C9 uni02CA uni02CB uni0903 uni0904 uni0905 uni0906 uni0907 uni0908 uni0909 uni090A uni090B uni090C uni090D uni090E uni090F uni0910 uni0911 uni0912 uni0913 uni0914 uni0915 uni0915_uni094D.half uni0915_uni094D_uni0937_uni094D uni0916 uni0916_uni094D.half uni0917 uni0918 uni0919 uni091A uni091A_uni0930_uni094D.vatu uni091B uni091C uni091C_uni0930_uni094D.vatu uni091C_uni094D_uni091E_uni094D uni091D uni091E uni091F uni0920 uni0921 uni0922 uni0922_uni0930_uni094D.vatu uni0923 uni0923_uni0930_uni094D.vatu uni0924 uni0925 uni0926 uni0927 uni0928 uni0929 uni092A uni092B uni092C uni092D uni092E uni092F uni0930 uni0930_uni094D.haln uni0931 uni0932 uni0933 uni0934 uni0935 uni0936 uni0936_uni094D.haln uni0937 uni0938 uni0938_uni0930_uni094D.vatu uni0938_uni094D.haln uni0939 uni0939_uni0930_uni094D.vatu uni093B uni093D uni093E uni093F uni0940 uni0940_uni0930_uni094D.abvs uni0945_uni0930_uni094D.abvs uni0946_uni0930_uni094D.abvs uni0947_uni0930_uni094D.abvs uni0948_uni0930_uni094D.abvs uni0949 uni0949_uni0930_uni094D.abvs uni094A uni094A_uni0930_uni094D.abvs uni094B uni094B_uni0930_uni094D.abvs uni094C uni094C_uni0930_uni094D.abvs uni094E uni094F uni0950 uni0958 uni0959 uni095A uni095A_uni094D.haln uni095B uni095C uni095D uni095E uni095E_uni0930_uni094D.vatu uni095F uni095F_uni0930_uni094D.vatu uni0960 uni0961 uni0964 uni0965 uni0966 uni0967 uni0968 uni0969 uni096A uni096B uni096C uni096D uni096E uni096F uni0970 uni0971 uni0972 uni0973 uni0974 uni0975 uni0976 uni0977 uni0978 uni0979 uni097A uni097B uni097C uni097D uni097E uni097F uni1E0C uni1E0D uni1E34 uni1E35 uni1E36 uni1E37 uni1E38 uni1E39 uni1E3A uni1E3B uni1E42 uni1E43 uni1E44 uni1E45 uni1E46 uni1E47 uni1E48 uni1E49 uni1E4C uni1E4D uni1E58 uni1E59 uni1E5A uni1E5B uni1E5C uni1E5D uni1E5E uni1E5F uni1E62 uni1E63 uni1E6C uni1E6D uni1E8E uni1E8F uni1E9E uni200C uni200D uni2044 uni20B9 uni25CC uogonek uring utilde v w wacute wcircumflex wdieresis wgrave x y yacute ycircumflex ydieresis yen ygrave z zacute zcaron zdotaccent zero]; +@GDEF_mark = [acutecomb dotbelowcomb gravecomb hookabovecomb tildecomb uni0302 uni0304 uni0305 uni0306 uni0307 uni0308 uni030A uni030B uni030C uni0326 uni0327 uni0328 uni0331 uni0900 uni0901 uni0902 uni0930_uni094D.blwf uni0930_uni094D.rphf uni093A uni093C uni0941 uni0942 uni0943 uni0944 uni0945 uni0946 uni0947 uni0948 uni094D uni0951 uni0952 uni0953 uni0954 uni0955 uni0956 uni0957 uni0962 uni0963]; @GDEF_ligature = [uni0915_uni0930_uni094D.vatu uni0915_uni094D.haln uni0915_uni094D_uni0937.akhn uni0915_uni094D_uni0937.half uni0916_uni0930_uni094D.vatu uni0916_uni094D.haln uni0917_uni0930_uni094D.vatu uni0917_uni094D.half uni0917_uni094D.haln uni0918_uni0930_uni094D.vatu uni0918_uni094D.half uni0918_uni094D.haln uni0919_uni0930_uni094D.vatu uni0919_uni094D.half uni0919_uni094D.haln uni091A_uni094D.half uni091A_uni094D.haln uni091B_uni0930_uni094D.vatu uni091B_uni094D.half uni091B_uni094D.haln uni091C_uni094D.half uni091C_uni094D.haln uni091C_uni094D_uni091E.akhn uni091C_uni094D_uni091E.half uni091D_uni0930_uni094D.vatu uni091D_uni094D.half uni091D_uni094D.haln uni091E_uni0930_uni094D.vatu uni091E_uni094D.half uni091E_uni094D.haln uni091F_uni0930_uni094D.vatu uni091F_uni094D.haln uni0920_uni0930_uni094D.vatu uni0920_uni094D.haln uni0921_uni0930_uni094D.vatu uni0921_uni094D.haln uni0922_uni094D.haln uni0923_uni094D.half uni0923_uni094D.haln uni0924_uni0930_uni094D.vatu uni0924_uni094D.half uni0924_uni094D.haln uni0924_uni094D_uni0924.pres uni0925_uni0930_uni094D.vatu uni0925_uni094D.half uni0925_uni094D.haln uni0926_uni0930_uni094D.vatu uni0926_uni094D.half uni0926_uni094D.haln uni0926_uni094D_uni0926.pres uni0926_uni094D_uni0927.pres uni0926_uni094D_uni092F.pres uni0926_uni094D_uni0935.pres uni0927_uni0930_uni094D.vatu uni0927_uni094D.half uni0927_uni094D.haln uni0928_uni0930_uni094D.vatu uni0928_uni094D.half uni0928_uni094D.haln uni0929_uni0930_uni094D.vatu uni0929_uni094D.half uni0929_uni094D.haln uni092A_uni0930_uni094D.vatu uni092A_uni094D.half uni092A_uni094D.haln uni092B_uni0930_uni094D.vatu uni092B_uni094D.half uni092B_uni094D.haln uni092C_uni0930_uni094D.vatu uni092C_uni094D.half uni092C_uni094D.haln uni092D_uni0930_uni094D.vatu uni092D_uni094D.half uni092D_uni094D.haln uni092E_uni0930_uni094D.vatu uni092E_uni094D.half uni092E_uni094D.haln uni092F_uni0930_uni094D.vatu uni092F_uni094D.half uni092F_uni094D.haln uni0930_uni0930_uni094D.vatu uni0930_uni0941.blws uni0930_uni0942.blws uni0930_uni094D.half uni0931_uni0930_uni094D.vatu uni0931_uni094D.haln uni0932_uni0930_uni094D.vatu uni0932_uni094D.half uni0932_uni094D.haln uni0933_uni0930_uni094D.vatu uni0933_uni094D.half uni0933_uni094D.haln uni0934_uni0930_uni094D.vatu uni0934_uni094D.half uni0934_uni094D.haln uni0935_uni0930_uni094D.vatu uni0935_uni094D.half uni0935_uni094D.haln uni0936_uni0930_uni094D.vatu uni0936_uni094D.half uni0937_uni0930_uni094D.vatu uni0937_uni094D.half uni0937_uni094D.haln uni0938_uni094D.half uni0939_uni0943.blws uni0939_uni094D.half uni0939_uni094D.haln uni0939_uni094D_uni092E.pres uni093E_uni0930_uni094D.abvs uni0940_uni0902.abvs uni0945_uni0902.abvs uni0946_uni0902.abvs uni0947_uni0902.abvs uni0948_uni0902.abvs uni0949_uni0902.abvs uni094A_uni0902.abvs uni094B_uni0902.abvs uni094C_uni0902.abvs uni0958_uni0930_uni094D.vatu uni0958_uni094D.half uni0958_uni094D.haln uni0959_uni0930_uni094D.vatu uni0959_uni094D.half uni0959_uni094D.haln uni095A_uni0930_uni094D.vatu uni095A_uni094D.half uni095B_uni0930_uni094D.vatu uni095B_uni094D.half uni095B_uni094D.haln uni095C_uni0930_uni094D.vatu uni095C_uni094D.haln uni095D_uni0930_uni094D.vatu uni095D_uni094D.haln uni095E_uni094D.half uni095E_uni094D.haln uni095F_uni094D.half uni095F_uni094D.haln uniFB01 uniFB02]; @GDEF_component = []; @@ -428,4 +427,4 @@ feature blwm { @GDEF_component; LigatureCaretByPos uniFB01 32; LigatureCaretByPos uniFB02 84; -} GDEF; +} GDEF; \ No newline at end of file diff --git a/sources/Samaano-Bold-Slanted.ufo/fontinfo.plist b/sources/Samaano-Bold-Slanted.ufo/fontinfo.plist index ae5cf84c5..6106c8489 100644 --- a/sources/Samaano-Bold-Slanted.ufo/fontinfo.plist +++ b/sources/Samaano-Bold-Slanted.ufo/fontinfo.plist @@ -32,7 +32,7 @@ italicAngle - 0.0 + -20.0 note 2024-8-27: Created with FontForge (http://fontforge.org) openTypeHeadCreated @@ -50,9 +50,14 @@ openTypeNameDesignerURL https://github.com/mitradranirban openTypeNameLicense - Copyright 2024 The Samaano Project Authors (https://github.com/mitradranirban/samaano-fonts. This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://openfontlicences.org + Copyright 2024 The Samaano Project Authors (https://github.com/mitradranirban/samaano-fonts) + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is available with a FAQ at: http://scripts.sil.org/OFL + + openTypeNameLicenseURL - https://openfontlicences.org + http://scripts.sil.org/OFL openTypeNameManufacturer Dr Anirban Mitra openTypeNameManufacturerURL @@ -79,6 +84,7 @@ openTypeOS2Selection + 8 7 openTypeOS2Type @@ -98,15 +104,15 @@ openTypeOS2WinAscent 2476 openTypeOS2WinDescent - 958 + 978 openTypeVheaVertTypoLineGap 0 postscriptFontName - Samaano-Bold-Slanted + SamaanoBoldSlanted postscriptFullName Samaano Bold Slanted postscriptSlantAngle - 0.0 + -20.0 postscriptUnderlinePosition 0.0 postscriptUnderlineThickness @@ -114,7 +120,7 @@ postscriptWeightName Bold styleName - Bold-Slanted + Bold unitsPerEm 2048 versionMajor diff --git a/sources/Samaano-Bold-Slanted.ufo/glyphs/acutecomb.glif b/sources/Samaano-Bold-Slanted.ufo/glyphs/acutecomb.glif index 74fb93dc5..7f2c071cc 100644 --- a/sources/Samaano-Bold-Slanted.ufo/glyphs/acutecomb.glif +++ b/sources/Samaano-Bold-Slanted.ufo/glyphs/acutecomb.glif @@ -3,10 +3,10 @@ - - - - + + + + diff --git a/sources/Samaano-Bold-Slanted.ufo/glyphs/contents.plist b/sources/Samaano-Bold-Slanted.ufo/glyphs/contents.plist index 9bb2be3ea..aa7c376c1 100644 --- a/sources/Samaano-Bold-Slanted.ufo/glyphs/contents.plist +++ b/sources/Samaano-Bold-Slanted.ufo/glyphs/contents.plist @@ -1006,8 +1006,6 @@ uni0930_uni0941.blws.glif uni0930_uni0942.blws uni0930_uni0942.blws.glif - uni0930_uni094D.abvs - uni0930_uni094D_.abvs.glif uni0930_uni094D.blwf uni0930_uni094D_.blwf.glif uni0930_uni094D.half @@ -1016,8 +1014,6 @@ uni0930_uni094D_.haln.glif uni0930_uni094D.rphf uni0930_uni094D_.rphf.glif - uni0930_uni094D.vatu - uni0930_uni094D_.vatu.glif uni0931 uni0931.glif uni0931_uni0930_uni094D.vatu diff --git a/sources/Samaano-Bold-Slanted.ufo/glyphs/dotbelowcomb.glif b/sources/Samaano-Bold-Slanted.ufo/glyphs/dotbelowcomb.glif index 5954f68e2..837f72eff 100644 --- a/sources/Samaano-Bold-Slanted.ufo/glyphs/dotbelowcomb.glif +++ b/sources/Samaano-Bold-Slanted.ufo/glyphs/dotbelowcomb.glif @@ -3,10 +3,10 @@ - - - - + + + + diff --git a/sources/Samaano-Bold-Slanted.ufo/glyphs/gravecomb.glif b/sources/Samaano-Bold-Slanted.ufo/glyphs/gravecomb.glif index 7df0d1f46..31ddb33c7 100644 --- a/sources/Samaano-Bold-Slanted.ufo/glyphs/gravecomb.glif +++ b/sources/Samaano-Bold-Slanted.ufo/glyphs/gravecomb.glif @@ -3,10 +3,10 @@ - - - - + + + + diff --git a/sources/Samaano-Bold-Slanted.ufo/glyphs/hookabovecomb.glif b/sources/Samaano-Bold-Slanted.ufo/glyphs/hookabovecomb.glif index a730a540b..c744375e2 100644 --- a/sources/Samaano-Bold-Slanted.ufo/glyphs/hookabovecomb.glif +++ b/sources/Samaano-Bold-Slanted.ufo/glyphs/hookabovecomb.glif @@ -3,28 +3,28 @@ - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Bold-Slanted.ufo/glyphs/tildecomb.glif b/sources/Samaano-Bold-Slanted.ufo/glyphs/tildecomb.glif index 29e1c9845..e9f8d5498 100644 --- a/sources/Samaano-Bold-Slanted.ufo/glyphs/tildecomb.glif +++ b/sources/Samaano-Bold-Slanted.ufo/glyphs/tildecomb.glif @@ -3,22 +3,22 @@ - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0302.glif b/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0302.glif index 4dd0dc98d..013efd883 100644 --- a/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0302.glif +++ b/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0302.glif @@ -3,16 +3,16 @@ - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0304.glif b/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0304.glif index b953df7fb..a35b7cbbc 100644 --- a/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0304.glif +++ b/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0304.glif @@ -3,10 +3,10 @@ - - - - + + + + diff --git a/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0305.glif b/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0305.glif index 84601a7e9..89ad86bdc 100644 --- a/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0305.glif +++ b/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0305.glif @@ -3,10 +3,10 @@ - - - - + + + + diff --git a/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0306.glif b/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0306.glif index 91ad366ee..4e1062d3c 100644 --- a/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0306.glif +++ b/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0306.glif @@ -3,22 +3,22 @@ - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0307.glif b/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0307.glif index cbb777ab9..b01273b9d 100644 --- a/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0307.glif +++ b/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0307.glif @@ -3,10 +3,10 @@ - - - - + + + + diff --git a/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0308.glif b/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0308.glif index 1102d38a9..69449ad7c 100644 --- a/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0308.glif +++ b/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0308.glif @@ -3,16 +3,16 @@ - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Bold-Slanted.ufo/glyphs/uni030A_.glif b/sources/Samaano-Bold-Slanted.ufo/glyphs/uni030A_.glif index 5448a26dc..c699e8d00 100644 --- a/sources/Samaano-Bold-Slanted.ufo/glyphs/uni030A_.glif +++ b/sources/Samaano-Bold-Slanted.ufo/glyphs/uni030A_.glif @@ -3,16 +3,16 @@ - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Bold-Slanted.ufo/glyphs/uni030B_.glif b/sources/Samaano-Bold-Slanted.ufo/glyphs/uni030B_.glif index 78d800a64..86081bc0d 100644 --- a/sources/Samaano-Bold-Slanted.ufo/glyphs/uni030B_.glif +++ b/sources/Samaano-Bold-Slanted.ufo/glyphs/uni030B_.glif @@ -2,6 +2,6 @@ - + diff --git a/sources/Samaano-Bold-Slanted.ufo/glyphs/uni030C_.glif b/sources/Samaano-Bold-Slanted.ufo/glyphs/uni030C_.glif index 21b2ecd7a..d511632c7 100644 --- a/sources/Samaano-Bold-Slanted.ufo/glyphs/uni030C_.glif +++ b/sources/Samaano-Bold-Slanted.ufo/glyphs/uni030C_.glif @@ -3,16 +3,16 @@ - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0326.glif b/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0326.glif index 7d444403a..81f4b12a3 100644 --- a/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0326.glif +++ b/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0326.glif @@ -3,16 +3,16 @@ - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0327.glif b/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0327.glif index 450f1ba51..6246c9439 100644 --- a/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0327.glif +++ b/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0327.glif @@ -3,28 +3,28 @@ - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0328.glif b/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0328.glif index 86cfdb369..bb2c6186a 100644 --- a/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0328.glif +++ b/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0328.glif @@ -3,22 +3,22 @@ - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0331.glif b/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0331.glif index c02ac94b4..6ae7bca8f 100644 --- a/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0331.glif +++ b/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0331.glif @@ -3,10 +3,10 @@ - - - - + + + + diff --git a/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0900.glif b/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0900.glif index a3d23dcc8..c591a85cd 100644 --- a/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0900.glif +++ b/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0900.glif @@ -3,28 +3,28 @@ - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0901.glif b/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0901.glif index 2be52e796..7a25ad8de 100644 --- a/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0901.glif +++ b/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0901.glif @@ -3,28 +3,28 @@ - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0902.glif b/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0902.glif index de76436cd..28abe124c 100644 --- a/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0902.glif +++ b/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0902.glif @@ -3,10 +3,10 @@ - - - - + + + + diff --git a/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0930_uni094D_.abvs.glif b/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0930_uni094D_.abvs.glif deleted file mode 100644 index 2725a48df..000000000 --- a/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0930_uni094D_.abvs.glif +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0930_uni094D_.vatu.glif b/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0930_uni094D_.vatu.glif deleted file mode 100644 index fa669e6f2..000000000 --- a/sources/Samaano-Bold-Slanted.ufo/glyphs/uni0930_uni094D_.vatu.glif +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/sources/Samaano-Bold-Slanted.ufo/lib.plist b/sources/Samaano-Bold-Slanted.ufo/lib.plist index 7f6308f3c..ac47ceeaf 100644 --- a/sources/Samaano-Bold-Slanted.ufo/lib.plist +++ b/sources/Samaano-Bold-Slanted.ufo/lib.plist @@ -648,12 +648,10 @@ uni0930_uni0930_uni094D.vatu uni0930_uni0941.blws uni0930_uni0942.blws - uni0930_uni094D.abvs uni0930_uni094D.blwf uni0930_uni094D.half uni0930_uni094D.haln uni0930_uni094D.rphf - uni0930_uni094D.vatu uni0931_uni0930_uni094D.vatu uni0931_uni094D.haln uni0932_uni0930_uni094D.vatu @@ -1728,8 +1726,6 @@ base uni0930_uni0942.blws base - uni0930_uni094D.abvs - base uni0930_uni094D.blwf base uni0930_uni094D.half @@ -1738,8 +1734,6 @@ base uni0930_uni094D.rphf base - uni0930_uni094D.vatu - base uni0931 base uni0931_uni0930_uni094D.vatu diff --git a/sources/Samaano-Bold.sfd b/sources/Samaano-Bold.sfd index 9f9e1ff60..7ef814ec9 100644 --- a/sources/Samaano-Bold.sfd +++ b/sources/Samaano-Bold.sfd @@ -23,8 +23,8 @@ OS2Version: 0 OS2_WeightWidthSlopeOnly: 0 OS2_UseTypoMetrics: 0 CreationTime: 1729238901 -ModificationTime: 1729414006 -PfmFamily: 16 +ModificationTime: 1729498505 +PfmFamily: 17 TTFWeight: 700 TTFWidth: 5 LineGap: 0 @@ -37,7 +37,7 @@ OS2TypoDOffset: 0 OS2TypoLinegap: 0 OS2WinAscent: 2476 OS2WinAOffset: 0 -OS2WinDescent: 958 +OS2WinDescent: 978 OS2WinDOffset: 0 HheadAscent: 2457 HheadAOffset: 0 @@ -4375,12 +4375,13 @@ Vbase p2128 ss." Encoding: UnicodeBmp +Compacted: 1 UnicodeInterp: none NameList: AGL For New Fonts DisplaySize: -96 AntiAlias: 1 FitToEm: 1 -WinInfo: 312 13 5 +WinInfo: 546 13 5 BeginPrivate: 0 EndPrivate Grid @@ -4394,7 +4395,7 @@ Grid 2048 1018 l 1028 EndSplineSet AnchorClass2: "blwm" "'blwm' Below Base Mark in Devanagari2 lookup 2-1" "abvm" "'abvm' Above Base Mark in Devanagari2 lookup 1-1" "top" "markMarkPositioninglookup0 subtable" "base" "markMarkPositioninglookup0 subtable" -BeginChars: 65711 718 +BeginChars: 65711 715 StartChar: .notdef Encoding: 0 0 0 @@ -4524,7 +4525,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 351 774 N 1 0 0 1 37 201 2 +Refer: 350 774 N 1 0 0 1 37 201 2 Refer: 1 65 N 1 0 0 1 0 0 3 EndChar @@ -4537,7 +4538,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 348 770 N 1 0 0 1 27 214 2 +Refer: 347 770 N 1 0 0 1 27 214 2 Refer: 1 65 N 1 0 0 1 0 0 3 EndChar @@ -4550,7 +4551,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 353 776 N 1 0 0 1 17 49 2 +Refer: 352 776 N 1 0 0 1 17 49 2 Refer: 1 65 N 1 0 0 1 0 0 3 EndChar @@ -4563,7 +4564,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 201 768 N 1 0 0 1 -59 -240 2 +Refer: 200 768 N 1 0 0 1 -59 -240 2 Refer: 1 65 N 1 0 0 1 0 0 3 EndChar @@ -4576,7 +4577,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 349 772 N 1 0 0 1 45 109 2 +Refer: 348 772 N 1 0 0 1 45 109 2 Refer: 1 65 N 1 0 0 1 0 0 3 EndChar @@ -4589,7 +4590,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 359 808 N 1 0 0 1 -133 -82 2 +Refer: 358 808 N 1 0 0 1 -133 -82 2 Refer: 1 65 N 1 0 0 1 0 0 3 EndChar @@ -4602,7 +4603,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 354 778 N 1 0 0 1 -8 105 2 +Refer: 353 778 N 1 0 0 1 -8 105 2 Refer: 1 65 N 1 0 0 1 0 0 3 EndChar @@ -4615,7 +4616,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 305 771 N 1 0 0 1 41 -214 2 +Refer: 304 771 N 1 0 0 1 41 -214 2 Refer: 1 65 N 1 0 0 1 0 0 3 EndChar @@ -4728,7 +4729,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 356 780 N 1 0 0 1 -34 322 2 +Refer: 355 780 N 1 0 0 1 -34 322 2 Refer: 13 67 N 1 0 0 1 0 0 3 EndChar @@ -4741,7 +4742,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 358 807 N 1 0 0 1 -144 -160.467 2 +Refer: 357 807 N 1 0 0 1 -144 -160.467 2 Refer: 13 67 N 1 0 0 1 0 0 3 EndChar @@ -4754,7 +4755,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 348 770 N 1 0 0 1 -36 210 2 +Refer: 347 770 N 1 0 0 1 -36 210 2 Refer: 13 67 N 1 0 0 1 0 0 3 EndChar @@ -4767,7 +4768,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 352 775 N 1 0 0 1 -38 95 2 +Refer: 351 775 N 1 0 0 1 -38 95 2 Refer: 13 67 N 1 0 0 1 0 0 3 EndChar @@ -4819,7 +4820,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 356 780 N 1 0 0 1 -210 326 2 +Refer: 355 780 N 1 0 0 1 -210 326 2 Refer: 19 68 N 1 0 0 1 0 0 3 EndChar @@ -4923,7 +4924,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 351 774 N 1 0 0 1 -26 201 2 +Refer: 350 774 N 1 0 0 1 -26 201 2 Refer: 22 69 N 1 0 0 1 0 0 3 EndChar @@ -4936,7 +4937,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 356 780 N 1 0 0 1 -34 326 2 +Refer: 355 780 N 1 0 0 1 -34 326 2 Refer: 22 69 N 1 0 0 1 0 0 3 EndChar @@ -4949,7 +4950,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 348 770 N 1 0 0 1 -36 214 2 +Refer: 347 770 N 1 0 0 1 -36 214 2 Refer: 22 69 N 1 0 0 1 0 0 3 EndChar @@ -4962,7 +4963,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 353 776 N 1 0 0 1 -46 49 2 +Refer: 352 776 N 1 0 0 1 -46 49 2 Refer: 22 69 N 1 0 0 1 0 0 3 EndChar @@ -4975,7 +4976,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 352 775 N 1 0 0 1 -38 99 2 +Refer: 351 775 N 1 0 0 1 -38 99 2 Refer: 22 69 N 1 0 0 1 0 0 3 EndChar @@ -4988,7 +4989,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 201 768 N 1 0 0 1 -122 -240 2 +Refer: 200 768 N 1 0 0 1 -122 -240 2 Refer: 22 69 N 1 0 0 1 0 0 3 EndChar @@ -5001,7 +5002,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 349 772 N 1 0 0 1 -18 109 2 +Refer: 348 772 N 1 0 0 1 -18 109 2 Refer: 22 69 N 1 0 0 1 0 0 3 EndChar @@ -5047,7 +5048,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 359 808 N 1 0 0 1 -206 -77 2 +Refer: 358 808 N 1 0 0 1 -206 -77 2 Refer: 22 69 N 1 0 0 1 0 0 3 EndChar @@ -5204,7 +5205,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 351 774 N 1 0 0 1 6 209 2 +Refer: 350 774 N 1 0 0 1 6 209 2 Refer: 36 71 N 1 0 0 1 0 0 3 EndChar @@ -5217,7 +5218,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 348 770 N 1 0 0 1 -4 222 2 +Refer: 347 770 N 1 0 0 1 -4 222 2 Refer: 36 71 N 1 0 0 1 0 0 3 EndChar @@ -5230,7 +5231,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 352 775 N 1 0 0 1 -6 107 2 +Refer: 351 775 N 1 0 0 1 -6 107 2 Refer: 36 71 N 1 0 0 1 0 0 3 EndChar @@ -5306,7 +5307,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 348 770 N 1 0 0 1 -10 211 2 +Refer: 347 770 N 1 0 0 1 -10 211 2 Refer: 40 72 N 1 0 0 1 0 0 3 EndChar @@ -5375,7 +5376,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 351 774 N 1 0 0 1 -26 201 2 +Refer: 350 774 N 1 0 0 1 -26 201 2 Refer: 43 73 N 1 0 0 1 0 0 3 EndChar @@ -5388,7 +5389,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 348 770 N 1 0 0 1 -36 214 2 +Refer: 347 770 N 1 0 0 1 -36 214 2 Refer: 43 73 N 1 0 0 1 0 0 3 EndChar @@ -5401,7 +5402,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 353 776 N 1 0 0 1 -46 49 2 +Refer: 352 776 N 1 0 0 1 -46 49 2 Refer: 43 73 N 1 0 0 1 0 0 3 EndChar @@ -5414,7 +5415,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 352 775 N 1 0 0 1 -38 99 2 +Refer: 351 775 N 1 0 0 1 -38 99 2 Refer: 43 73 N 1 0 0 1 0 0 3 EndChar @@ -5427,7 +5428,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 201 768 N 1 0 0 1 -122 -240 2 +Refer: 200 768 N 1 0 0 1 -122 -240 2 Refer: 43 73 N 1 0 0 1 0 0 3 EndChar @@ -5440,7 +5441,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 349 772 N 1 0 0 1 -18 109 2 +Refer: 348 772 N 1 0 0 1 -18 109 2 Refer: 43 73 N 1 0 0 1 0 0 3 EndChar @@ -5453,7 +5454,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 359 808 N 1 0 0 1 -254 -49 2 +Refer: 358 808 N 1 0 0 1 -254 -49 2 Refer: 43 73 N 1 0 0 1 0 0 3 EndChar @@ -5466,7 +5467,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 305 771 N 1 0 0 1 -22 -214 2 +Refer: 304 771 N 1 0 0 1 -22 -214 2 Refer: 43 73 N 1 0 0 1 0 0 3 EndChar @@ -5508,7 +5509,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 348 770 N 1 0 0 1 292 222 2 +Refer: 347 770 N 1 0 0 1 292 222 2 Refer: 54 74 N 1 0 0 1 0 0 3 EndChar @@ -5615,7 +5616,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 267 183 N 1 0 0 1 -41 -251.5 2 +Refer: 266 183 N 1 0 0 1 -41 -251.5 2 Refer: 57 76 N 1 0 0 1 0 0 3 EndChar @@ -5733,7 +5734,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 356 780 N 1 0 0 1 -16 327 2 +Refer: 355 780 N 1 0 0 1 -16 327 2 Refer: 63 78 N 1 0 0 1 0 0 3 EndChar @@ -5746,7 +5747,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 305 771 N 1 0 0 1 -4 -213 2 +Refer: 304 771 N 1 0 0 1 -4 -213 2 Refer: 63 78 N 1 0 0 1 0 0 3 EndChar @@ -5845,7 +5846,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 351 774 N 1 0 0 1 -40 206 2 +Refer: 350 774 N 1 0 0 1 -40 206 2 Refer: 67 79 N 1 0 0 1 0 0 3 EndChar @@ -5858,7 +5859,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 348 770 N 1 0 0 1 -50 219 2 +Refer: 347 770 N 1 0 0 1 -50 219 2 Refer: 67 79 N 1 0 0 1 0 0 3 EndChar @@ -5871,7 +5872,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 353 776 N 1 0 0 1 -60 54 2 +Refer: 352 776 N 1 0 0 1 -60 54 2 Refer: 67 79 N 1 0 0 1 0 0 3 EndChar @@ -5884,7 +5885,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 201 768 N 1 0 0 1 -136 -235 2 +Refer: 200 768 N 1 0 0 1 -136 -235 2 Refer: 67 79 N 1 0 0 1 0 0 3 EndChar @@ -5897,7 +5898,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 355 779 N 1 0 0 1 -37 366 2 +Refer: 354 779 N 1 0 0 1 -37 366 2 Refer: 67 79 N 1 0 0 1 0 0 3 EndChar @@ -5910,7 +5911,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 349 772 N 1 0 0 1 -32 114 2 +Refer: 348 772 N 1 0 0 1 -32 114 2 Refer: 67 79 N 1 0 0 1 0 0 3 EndChar @@ -5961,7 +5962,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 305 771 N 1 0 0 1 -36 -209 2 +Refer: 304 771 N 1 0 0 1 -36 -209 2 Refer: 67 79 N 1 0 0 1 0 0 3 EndChar @@ -6098,7 +6099,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 356 780 N 1 0 0 1 -24 327 2 +Refer: 355 780 N 1 0 0 1 -24 327 2 Refer: 80 82 N 1 0 0 1 0 0 3 EndChar @@ -6164,7 +6165,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 356 780 N 1 0 0 1 4 335 2 +Refer: 355 780 N 1 0 0 1 4 335 2 Refer: 83 83 N 1 0 0 1 0 0 3 EndChar @@ -6177,7 +6178,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 358 807 N 1 0 0 1 -126 -249 2 +Refer: 357 807 N 1 0 0 1 -126 -249 2 Refer: 83 83 N 1 0 0 1 0 0 3 EndChar @@ -6190,7 +6191,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 348 770 N 1 0 0 1 2 223 2 +Refer: 347 770 N 1 0 0 1 2 223 2 Refer: 83 83 N 1 0 0 1 0 0 3 EndChar @@ -6228,7 +6229,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 356 780 N 1 0 0 1 12 323 2 +Refer: 355 780 N 1 0 0 1 12 323 2 Refer: 88 84 N 1 0 0 1 0 0 3 EndChar @@ -6317,7 +6318,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 351 774 N 1 0 0 1 12 202 2 +Refer: 350 774 N 1 0 0 1 12 202 2 Refer: 91 85 N 1 0 0 1 0 0 3 EndChar @@ -6330,7 +6331,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 348 770 N 1 0 0 1 2 215 2 +Refer: 347 770 N 1 0 0 1 2 215 2 Refer: 91 85 N 1 0 0 1 0 0 3 EndChar @@ -6343,7 +6344,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 353 776 N 1 0 0 1 -8 50 2 +Refer: 352 776 N 1 0 0 1 -8 50 2 Refer: 91 85 N 1 0 0 1 0 0 3 EndChar @@ -6356,7 +6357,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 201 768 N 1 0 0 1 -84 -239 2 +Refer: 200 768 N 1 0 0 1 -84 -239 2 Refer: 91 85 N 1 0 0 1 0 0 3 EndChar @@ -6369,7 +6370,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 355 779 N 1 0 0 1 15 362 2 +Refer: 354 779 N 1 0 0 1 15 362 2 Refer: 91 85 N 1 0 0 1 0 0 3 EndChar @@ -6382,7 +6383,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 349 772 N 1 0 0 1 20 110 2 +Refer: 348 772 N 1 0 0 1 20 110 2 Refer: 91 85 N 1 0 0 1 0 0 3 EndChar @@ -6395,7 +6396,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 359 808 N 1 0 0 1 -178 -89 2 +Refer: 358 808 N 1 0 0 1 -178 -89 2 Refer: 91 85 N 1 0 0 1 0 0 3 EndChar @@ -6408,7 +6409,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 354 778 N 1 0 0 1 -33 106 2 +Refer: 353 778 N 1 0 0 1 -33 106 2 Refer: 91 85 N 1 0 0 1 0 0 3 EndChar @@ -6421,7 +6422,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 305 771 N 1 0 0 1 16 -213 2 +Refer: 304 771 N 1 0 0 1 16 -213 2 Refer: 91 85 N 1 0 0 1 0 0 3 EndChar @@ -6506,7 +6507,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 348 770 N 1 0 0 1 2 219 2 +Refer: 347 770 N 1 0 0 1 2 219 2 Refer: 103 87 N 1 0 0 1 0 0 3 EndChar @@ -6519,7 +6520,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 353 776 N 1 0 0 1 -8 54 2 +Refer: 352 776 N 1 0 0 1 -8 54 2 Refer: 103 87 N 1 0 0 1 0 0 3 EndChar @@ -6532,7 +6533,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 201 768 N 1 0 0 1 -84 -235 2 +Refer: 200 768 N 1 0 0 1 -84 -235 2 Refer: 103 87 N 1 0 0 1 0 0 3 EndChar @@ -6616,7 +6617,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 348 770 N 1 0 0 1 18 211 2 +Refer: 347 770 N 1 0 0 1 18 211 2 Refer: 109 89 N 1 0 0 1 0 0 3 EndChar @@ -6629,7 +6630,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 353 776 N 1 0 0 1 8 46 2 +Refer: 352 776 N 1 0 0 1 8 46 2 Refer: 109 89 N 1 0 0 1 0 0 3 EndChar @@ -6642,7 +6643,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 201 768 N 1 0 0 1 -68 -243 2 +Refer: 200 768 N 1 0 0 1 -68 -243 2 Refer: 109 89 N 1 0 0 1 0 0 3 EndChar @@ -6698,7 +6699,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 356 780 N 1 0 0 1 -8 331 2 +Refer: 355 780 N 1 0 0 1 -8 331 2 Refer: 114 90 N 1 0 0 1 0 0 3 EndChar @@ -6711,7 +6712,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 352 775 N 1 0 0 1 -12 104 2 +Refer: 351 775 N 1 0 0 1 -12 104 2 Refer: 114 90 N 1 0 0 1 0 0 3 EndChar @@ -6777,7 +6778,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 351 774 N 1 0 0 1 4 -306 2 +Refer: 350 774 N 1 0 0 1 4 -306 2 Refer: 118 97 N 1 0 0 1 0 0 3 EndChar @@ -6790,7 +6791,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 348 770 N 1 0 0 1 -6 -293 2 +Refer: 347 770 N 1 0 0 1 -6 -293 2 Refer: 118 97 N 1 0 0 1 0 0 3 EndChar @@ -6815,19 +6816,19 @@ EndChar StartChar: acutecomb Encoding: 769 769 123 GlifName: acutecomb -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 4 -Flags: W -AnchorPoint: "top" 466 1888 mark 0 +Flags: HW +AnchorPoint: "top" -64.5 1888 mark 0 LayerCount: 2 Fore SplineSet -551 2180 m 257 - 421 1926 l 257 - 509 1880 l 257 - 640 2135 l 257 - 551 2180 l 257 +20.5 2180 m 257 + -109.5 1926 l 257 + -21.5 1880 l 257 + 109.5 2135 l 257 + 20.5 2180 l 257 EndSplineSet EndChar @@ -6840,7 +6841,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 353 776 N 1 0 0 1 -16 -458 2 +Refer: 352 776 N 1 0 0 1 -16 -458 2 Refer: 118 97 N 1 0 0 1 0 0 3 EndChar @@ -6896,7 +6897,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 201 768 N 1 0 0 1 -92 -747 2 +Refer: 200 768 N 1 0 0 1 -92 -747 2 Refer: 118 97 N 1 0 0 1 0 0 3 EndChar @@ -6909,7 +6910,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 349 772 N 1 0 0 1 12 -398 2 +Refer: 348 772 N 1 0 0 1 12 -398 2 Refer: 118 97 N 1 0 0 1 0 0 3 EndChar @@ -6965,7 +6966,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 359 808 N 1 0 0 1 -238 -85 2 +Refer: 358 808 N 1 0 0 1 -238 -85 2 Refer: 118 97 N 1 0 0 1 0 0 3 EndChar @@ -6978,7 +6979,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 354 778 N 1 0 0 1 -41 -402 2 +Refer: 353 778 N 1 0 0 1 -41 -402 2 Refer: 118 97 N 1 0 0 1 0 0 3 EndChar @@ -7128,7 +7129,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 305 771 N 1 0 0 1 8 -721 2 +Refer: 304 771 N 1 0 0 1 8 -721 2 Refer: 118 97 N 1 0 0 1 0 0 3 EndChar @@ -7487,7 +7488,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 356 780 N 1 0 0 1 -12 -153 2 +Refer: 355 780 N 1 0 0 1 -12 -153 2 Refer: 146 99 N 1 0 0 1 0 0 3 EndChar @@ -7500,7 +7501,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 358 807 N 1 0 0 1 -145 -160.467 2 +Refer: 357 807 N 1 0 0 1 -145 -160.467 2 Refer: 146 99 N 1 0 0 1 0 0 3 EndChar @@ -7513,7 +7514,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 348 770 N 1 0 0 1 -14 -265 2 +Refer: 347 770 N 1 0 0 1 -14 -265 2 Refer: 146 99 N 1 0 0 1 0 0 3 EndChar @@ -7526,7 +7527,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 352 775 N 1 0 0 1 -16 -380 2 +Refer: 351 775 N 1 0 0 1 -16 -380 2 Refer: 146 99 N 1 0 0 1 0 0 3 EndChar @@ -8065,19 +8066,19 @@ EndChar StartChar: dotbelowcomb Encoding: 803 803 170 GlifName: dotbelowcomb -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 4 -Flags: W -AnchorPoint: "base" 498 -187 mark 0 +Flags: HW +AnchorPoint: "base" -14 -187 mark 0 LayerCount: 2 Fore SplineSet -380 -204 m 257 - 380 -451 l 257 - 644 -451 l 257 - 644 -204 l 257 - 380 -204 l 257 +-132 -204 m 257 + -132 -451 l 257 + 132 -451 l 257 + 132 -204 l 257 + -132 -204 l 257 EndSplineSet EndChar @@ -8173,7 +8174,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 351 774 N 1 0 0 1 16 -274 2 +Refer: 350 774 N 1 0 0 1 16 -274 2 Refer: 172 101 N 1 0 0 1 0 0 3 EndChar @@ -8186,7 +8187,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 356 780 N 1 0 0 1 8 -149 2 +Refer: 355 780 N 1 0 0 1 8 -149 2 Refer: 172 101 N 1 0 0 1 0 0 3 EndChar @@ -8199,7 +8200,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 348 770 N 1 0 0 1 6 -261 2 +Refer: 347 770 N 1 0 0 1 6 -261 2 Refer: 172 101 N 1 0 0 1 0 0 3 EndChar @@ -8212,7 +8213,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 353 776 N 1 0 0 1 -4 -426 2 +Refer: 352 776 N 1 0 0 1 -4 -426 2 Refer: 172 101 N 1 0 0 1 0 0 3 EndChar @@ -8225,7 +8226,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 352 775 N 1 0 0 1 4 -376 2 +Refer: 351 775 N 1 0 0 1 4 -376 2 Refer: 172 101 N 1 0 0 1 0 0 3 EndChar @@ -8238,7 +8239,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 201 768 N 1 0 0 1 -80 -715 2 +Refer: 200 768 N 1 0 0 1 -80 -715 2 Refer: 172 101 N 1 0 0 1 0 0 3 EndChar @@ -8307,7 +8308,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 349 772 N 1 0 0 1 24 -366 2 +Refer: 348 772 N 1 0 0 1 24 -366 2 Refer: 172 101 N 1 0 0 1 0 0 3 EndChar @@ -8389,7 +8390,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 359 808 N 1 0 0 1 -198 -41 2 +Refer: 358 808 N 1 0 0 1 -198 -41 2 Refer: 172 101 N 1 0 0 1 0 0 3 EndChar @@ -8625,7 +8626,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 351 774 N 1 0 0 1 95 -335 2 +Refer: 350 774 N 1 0 0 1 95 -335 2 Refer: 194 103 N 1 0 0 1 0 0 3 EndChar @@ -8638,7 +8639,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 348 770 N 1 0 0 1 77.5 -278 2 +Refer: 347 770 N 1 0 0 1 77.5 -278 2 Refer: 194 103 N 1 0 0 1 0 0 3 EndChar @@ -8651,7 +8652,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 352 775 N 1 0 0 1 74 -441 2 +Refer: 351 775 N 1 0 0 1 74 -441 2 Refer: 194 103 N 1 0 0 1 0 0 3 EndChar @@ -8703,31 +8704,8 @@ SplineSet EndSplineSet EndChar -StartChar: glyph094D -Encoding: 65536 -1 199 -GlifName: glyph094D_ -Width: 1024 -VWidth: 0 -GlyphClass: 4 -Flags: W -LayerCount: 2 -Fore -SplineSet --553 -22 m 257 - -553 -218 l 257 - -196 -218 l 257 - -196 -22 l 257 - -553 -22 l 257 --337 -183 m 257 - 0 -588 l 257 - 144 -425 l 257 - -194 -21 l 257 - -337 -183 l 257 -EndSplineSet -EndChar - StartChar: grave -Encoding: 96 96 200 +Encoding: 96 96 199 GlifName: grave Width: 1024 VWidth: 0 @@ -8745,26 +8723,26 @@ EndSplineSet EndChar StartChar: gravecomb -Encoding: 768 768 201 +Encoding: 768 768 200 GlifName: gravecomb -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 4 -Flags: W -AnchorPoint: "top" 592 1881 mark 0 +Flags: HW +AnchorPoint: "top" 65.5 1881 mark 0 LayerCount: 2 Fore SplineSet -421 2107 m 257 - 541 1871 l 257 - 632 1917 l 257 - 513 2154 l 257 - 421 2107 l 257 +-105.5 2107 m 257 + 14.5 1871 l 257 + 105.5 1917 l 257 + -13.5 2154 l 257 + -105.5 2107 l 257 EndSplineSet EndChar StartChar: greater -Encoding: 62 62 202 +Encoding: 62 62 201 GlifName: greater Width: 1024 VWidth: 0 @@ -8787,7 +8765,7 @@ EndSplineSet EndChar StartChar: guillemotleft -Encoding: 171 171 203 +Encoding: 171 171 202 GlifName: guillemotleft Width: 1024 VWidth: 0 @@ -8820,7 +8798,7 @@ EndSplineSet EndChar StartChar: guillemotright -Encoding: 187 187 204 +Encoding: 187 187 203 GlifName: guillemotright Width: 1024 VWidth: 0 @@ -8853,7 +8831,7 @@ EndSplineSet EndChar StartChar: guilsinglleft -Encoding: 8249 8249 205 +Encoding: 8249 8249 204 GlifName: guilsinglleft Width: 1024 VWidth: 0 @@ -8876,7 +8854,7 @@ EndSplineSet EndChar StartChar: guilsinglright -Encoding: 8250 8250 206 +Encoding: 8250 8250 205 GlifName: guilsinglright Width: 1024 VWidth: 0 @@ -8899,7 +8877,7 @@ EndSplineSet EndChar StartChar: h -Encoding: 104 104 207 +Encoding: 104 104 206 GlifName: h Width: 1024 VWidth: 0 @@ -8929,7 +8907,7 @@ EndSplineSet EndChar StartChar: hbar -Encoding: 295 295 208 +Encoding: 295 295 207 GlifName: hbar Width: 1024 VWidth: 0 @@ -8962,7 +8940,7 @@ EndSplineSet EndChar StartChar: hcircumflex -Encoding: 293 293 209 +Encoding: 293 293 208 GlifName: hcircumflex Width: 1024 VWidth: 0 @@ -8970,44 +8948,45 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 348 770 N 1 0 0 1 -258 219 2 -Refer: 207 104 N 1 0 0 1 0 0 3 +Refer: 347 770 N 1 0 0 1 -258 219 2 +Refer: 206 104 N 1 0 0 1 0 0 3 EndChar StartChar: hookabovecomb -Encoding: 777 777 210 +Encoding: 777 777 209 GlifName: hookabovecomb Width: 0 VWidth: 0 -GlyphClass: 2 +GlyphClass: 4 +Flags: HW LayerCount: 2 Fore SplineSet -122 1774 m 257 - 122 1599 l 257 - 577 1599 l 257 - 577 1774 l 257 - 122 1774 l 257 -375 1774 m 257 - 375 1432 l 257 - 582 1432 l 257 - 582 1774 l 257 - 375 1774 l 257 -210 1453 m 257 - 210 1288 l 257 - 581 1288 l 257 - 581 1453 l 257 - 210 1453 l 257 -210 1453 m 257 - 210 1190 l 257 - 391 1190 l 257 - 391 1453 l 257 - 210 1453 l 257 +-230 1774 m 257 + -230 1599 l 257 + 225 1599 l 257 + 225 1774 l 257 + -230 1774 l 257 +23 1774 m 257 + 23 1432 l 257 + 230 1432 l 257 + 230 1774 l 257 + 23 1774 l 257 +-142 1453 m 257 + -142 1288 l 257 + 229 1288 l 257 + 229 1453 l 257 + -142 1453 l 257 +-142 1453 m 257 + -142 1190 l 257 + 39 1190 l 257 + 39 1453 l 257 + -142 1453 l 257 EndSplineSet EndChar StartChar: hungarumlaut -Encoding: 733 733 211 +Encoding: 733 733 210 GlifName: hungarumlaut Width: 1024 VWidth: 0 @@ -9030,7 +9009,7 @@ EndSplineSet EndChar StartChar: hyphen -Encoding: 45 45 212 +Encoding: 45 45 211 GlifName: hyphen Width: 1024 VWidth: 0 @@ -9048,7 +9027,7 @@ EndSplineSet EndChar StartChar: i -Encoding: 105 105 213 +Encoding: 105 105 212 GlifName: i Width: 1024 VWidth: 0 @@ -9082,7 +9061,7 @@ EndSplineSet EndChar StartChar: iacute -Encoding: 237 237 214 +Encoding: 237 237 213 GlifName: iacute Width: 1024 VWidth: 0 @@ -9095,7 +9074,7 @@ Refer: 171 305 N 1 0 0 1 0 0 3 EndChar StartChar: ibreve -Encoding: 301 301 215 +Encoding: 301 301 214 GlifName: ibreve Width: 1024 VWidth: 0 @@ -9103,12 +9082,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 351 774 N 1 0 0 1 503 -240 2 +Refer: 350 774 N 1 0 0 1 503 -240 2 Refer: 171 305 N 1 0 0 1 0 0 3 EndChar StartChar: icircumflex -Encoding: 238 238 216 +Encoding: 238 238 215 GlifName: icircumflex Width: 1024 VWidth: 0 @@ -9116,12 +9095,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 348 770 N 1 0 0 1 493 -227 2 +Refer: 347 770 N 1 0 0 1 493 -227 2 Refer: 171 305 N 1 0 0 1 0 0 3 EndChar StartChar: idieresis -Encoding: 239 239 217 +Encoding: 239 239 216 GlifName: idieresis Width: 1024 VWidth: 0 @@ -9129,12 +9108,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 353 776 N 1 0 0 1 483 -392 2 +Refer: 352 776 N 1 0 0 1 483 -392 2 Refer: 171 305 N 1 0 0 1 0 0 3 EndChar StartChar: igrave -Encoding: 236 236 218 +Encoding: 236 236 217 GlifName: igrave Width: 1024 VWidth: 0 @@ -9142,12 +9121,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 201 768 N 1 0 0 1 407 -681 2 +Refer: 200 768 N 1 0 0 1 407 -681 2 Refer: 171 305 N 1 0 0 1 0 0 3 EndChar StartChar: ij -Encoding: 307 307 219 +Encoding: 307 307 218 GlifName: ij Width: 1024 VWidth: 0 @@ -9155,12 +9134,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 223 106 N 0.5 0 0 1 526.25 0 2 -Refer: 213 105 N 0.5 0 0 1 14.25 0 2 +Refer: 222 106 N 0.5 0 0 1 526.25 0 2 +Refer: 212 105 N 0.5 0 0 1 14.25 0 2 EndChar StartChar: imacron -Encoding: 299 299 220 +Encoding: 299 299 219 GlifName: imacron Width: 1024 VWidth: 0 @@ -9168,12 +9147,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 349 772 N 1 0 0 1 511 -332 2 +Refer: 348 772 N 1 0 0 1 511 -332 2 Refer: 171 305 N 1 0 0 1 0 0 3 EndChar StartChar: iogonek -Encoding: 303 303 221 +Encoding: 303 303 220 GlifName: iogonek Width: 1024 VWidth: 0 @@ -9181,12 +9160,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 359 808 N 1 0 0 1 -202 -61 2 -Refer: 213 105 N 1 0 0 1 0 0 3 +Refer: 358 808 N 1 0 0 1 -202 -61 2 +Refer: 212 105 N 1 0 0 1 0 0 3 EndChar StartChar: itilde -Encoding: 297 297 222 +Encoding: 297 297 221 GlifName: itilde Width: 1024 VWidth: 0 @@ -9194,12 +9173,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 305 771 N 1 0 0 1 507 -655 2 +Refer: 304 771 N 1 0 0 1 507 -655 2 Refer: 171 305 N 1 0 0 1 0 0 3 EndChar StartChar: j -Encoding: 106 106 223 +Encoding: 106 106 222 GlifName: j Width: 1024 VWidth: 0 @@ -9232,7 +9211,7 @@ EndSplineSet EndChar StartChar: jcircumflex -Encoding: 309 309 224 +Encoding: 309 309 223 GlifName: jcircumflex Width: 1024 VWidth: 0 @@ -9240,12 +9219,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 348 770 N 1 0 0 1 214 -245 2 -Refer: 341 567 N 1 0 0 1 0 0 3 +Refer: 347 770 N 1 0 0 1 214 -245 2 +Refer: 340 567 N 1 0 0 1 0 0 3 EndChar StartChar: k -Encoding: 107 107 225 +Encoding: 107 107 224 GlifName: k Width: 1024 VWidth: 0 @@ -9274,7 +9253,7 @@ EndSplineSet EndChar StartChar: l -Encoding: 108 108 226 +Encoding: 108 108 225 GlifName: l Width: 1024 VWidth: 0 @@ -9303,7 +9282,7 @@ EndSplineSet EndChar StartChar: lacute -Encoding: 314 314 227 +Encoding: 314 314 226 GlifName: lacute Width: 1024 VWidth: 0 @@ -9312,11 +9291,11 @@ Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 54 -234 2 -Refer: 226 108 N 1 0 0 1 0 0 3 +Refer: 225 108 N 1 0 0 1 0 0 3 EndChar StartChar: lcaron -Encoding: 318 318 228 +Encoding: 318 318 227 GlifName: lcaron Width: 1024 VWidth: 0 @@ -9349,20 +9328,20 @@ EndSplineSet EndChar StartChar: ldot -Encoding: 320 320 229 +Encoding: 320 320 228 GlifName: ldot Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: HWO +Flags: HW LayerCount: 2 Fore -Refer: 267 183 N 1 0 0 1 316 20 2 -Refer: 226 108 N 1 0 0 1 0 0 2 +Refer: 266 183 N 1 0 0 1 316 20 2 +Refer: 225 108 N 1 0 0 1 0 0 2 EndChar StartChar: less -Encoding: 60 60 230 +Encoding: 60 60 229 GlifName: less Width: 1024 VWidth: 0 @@ -9385,7 +9364,7 @@ EndSplineSet EndChar StartChar: logicalnot -Encoding: 172 172 231 +Encoding: 172 172 230 GlifName: logicalnot Width: 1024 VWidth: 0 @@ -9408,7 +9387,7 @@ EndSplineSet EndChar StartChar: lslash -Encoding: 322 322 232 +Encoding: 322 322 231 GlifName: lslash Width: 1024 VWidth: 0 @@ -9441,7 +9420,7 @@ EndSplineSet EndChar StartChar: m -Encoding: 109 109 233 +Encoding: 109 109 232 GlifName: m Width: 1024 VWidth: 0 @@ -9475,7 +9454,7 @@ EndSplineSet EndChar StartChar: macron -Encoding: 175 175 234 +Encoding: 175 175 233 GlifName: macron Width: 1024 VWidth: 0 @@ -9493,7 +9472,7 @@ EndSplineSet EndChar StartChar: minus -Encoding: 8722 8722 235 +Encoding: 8722 8722 234 GlifName: minus Width: 1024 VWidth: 0 @@ -9501,11 +9480,11 @@ GlyphClass: 2 Flags: W LayerCount: 2 Fore -Refer: 212 45 N 1 0 0 1 0 0 2 +Refer: 211 45 N 1 0 0 1 0 0 2 EndChar StartChar: mu -Encoding: 181 181 236 +Encoding: 181 181 235 GlifName: mu Width: 1024 VWidth: 0 @@ -9533,7 +9512,7 @@ EndSplineSet EndChar StartChar: multiply -Encoding: 215 215 237 +Encoding: 215 215 236 GlifName: multiply Width: 1024 VWidth: 0 @@ -9556,7 +9535,7 @@ EndSplineSet EndChar StartChar: n -Encoding: 110 110 238 +Encoding: 110 110 237 GlifName: n Width: 1024 VWidth: 0 @@ -9585,7 +9564,7 @@ EndSplineSet EndChar StartChar: nacute -Encoding: 324 324 239 +Encoding: 324 324 238 GlifName: nacute Width: 1024 VWidth: 0 @@ -9594,11 +9573,11 @@ Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 26 -730 2 -Refer: 238 110 N 1 0 0 1 0 0 3 +Refer: 237 110 N 1 0 0 1 0 0 3 EndChar StartChar: ncaron -Encoding: 328 328 240 +Encoding: 328 328 239 GlifName: ncaron Width: 1024 VWidth: 0 @@ -9606,12 +9585,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 356 780 N 1 0 0 1 -12 -157 2 -Refer: 238 110 N 1 0 0 1 0 0 3 +Refer: 355 780 N 1 0 0 1 -12 -157 2 +Refer: 237 110 N 1 0 0 1 0 0 3 EndChar StartChar: nine -Encoding: 57 57 241 +Encoding: 57 57 240 GlifName: nine Width: 1024 VWidth: 0 @@ -9639,7 +9618,7 @@ EndSplineSet EndChar StartChar: ntilde -Encoding: 241 241 242 +Encoding: 241 241 241 GlifName: ntilde Width: 1024 VWidth: 0 @@ -9647,12 +9626,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 305 771 N 1 0 0 1 0 -697 2 -Refer: 238 110 N 1 0 0 1 0 0 3 +Refer: 304 771 N 1 0 0 1 0 -697 2 +Refer: 237 110 N 1 0 0 1 0 0 3 EndChar StartChar: numbersign -Encoding: 35 35 243 +Encoding: 35 35 242 GlifName: numbersign Width: 1024 VWidth: 0 @@ -9685,7 +9664,7 @@ EndSplineSet EndChar StartChar: o -Encoding: 111 111 244 +Encoding: 111 111 243 GlifName: o Width: 1024 VWidth: 0 @@ -9720,7 +9699,7 @@ EndSplineSet EndChar StartChar: oacute -Encoding: 243 243 245 +Encoding: 243 243 244 GlifName: oacute Width: 1024 VWidth: 0 @@ -9729,11 +9708,11 @@ Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 38 -730 2 -Refer: 244 111 N 1 0 0 1 0 0 3 +Refer: 243 111 N 1 0 0 1 0 0 3 EndChar StartChar: obreve -Encoding: 335 335 246 +Encoding: 335 335 245 GlifName: obreve Width: 1024 VWidth: 0 @@ -9741,12 +9720,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 351 774 N 1 0 0 1 8 -282 2 -Refer: 244 111 N 1 0 0 1 0 0 3 +Refer: 350 774 N 1 0 0 1 8 -282 2 +Refer: 243 111 N 1 0 0 1 0 0 3 EndChar StartChar: ocircumflex -Encoding: 244 244 247 +Encoding: 244 244 246 GlifName: ocircumflex Width: 1024 VWidth: 0 @@ -9754,12 +9733,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 348 770 N 1 0 0 1 -2 -269 2 -Refer: 244 111 N 1 0 0 1 0 0 3 +Refer: 347 770 N 1 0 0 1 -2 -269 2 +Refer: 243 111 N 1 0 0 1 0 0 3 EndChar StartChar: odieresis -Encoding: 246 246 248 +Encoding: 246 246 247 GlifName: odieresis Width: 1024 VWidth: 0 @@ -9767,12 +9746,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 353 776 N 1 0 0 1 -12 -434 2 -Refer: 244 111 N 1 0 0 1 0 0 3 +Refer: 352 776 N 1 0 0 1 -12 -434 2 +Refer: 243 111 N 1 0 0 1 0 0 3 EndChar StartChar: oe -Encoding: 339 339 249 +Encoding: 339 339 248 GlifName: oe Width: 1024 VWidth: 0 @@ -9815,7 +9794,7 @@ EndSplineSet EndChar StartChar: ogonek -Encoding: 731 731 250 +Encoding: 731 731 249 GlifName: ogonek Width: 1024 VWidth: 0 @@ -9843,7 +9822,7 @@ EndSplineSet EndChar StartChar: ograve -Encoding: 242 242 251 +Encoding: 242 242 250 GlifName: ograve Width: 1024 VWidth: 0 @@ -9851,12 +9830,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 201 768 N 1 0 0 1 -88 -723 2 -Refer: 244 111 N 1 0 0 1 0 0 3 +Refer: 200 768 N 1 0 0 1 -88 -723 2 +Refer: 243 111 N 1 0 0 1 0 0 3 EndChar StartChar: ohungarumlaut -Encoding: 337 337 252 +Encoding: 337 337 251 GlifName: ohungarumlaut Width: 1024 VWidth: 0 @@ -9864,12 +9843,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 355 779 N 1 0 0 1 11 -122 2 -Refer: 244 111 N 1 0 0 1 0 0 3 +Refer: 354 779 N 1 0 0 1 11 -122 2 +Refer: 243 111 N 1 0 0 1 0 0 3 EndChar StartChar: omacron -Encoding: 333 333 253 +Encoding: 333 333 252 GlifName: omacron Width: 1024 VWidth: 0 @@ -9877,12 +9856,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 349 772 N 1 0 0 1 16 -374 2 -Refer: 244 111 N 1 0 0 1 0 0 3 +Refer: 348 772 N 1 0 0 1 16 -374 2 +Refer: 243 111 N 1 0 0 1 0 0 3 EndChar StartChar: one -Encoding: 49 49 254 +Encoding: 49 49 253 GlifName: one Width: 1024 VWidth: 0 @@ -9905,7 +9884,7 @@ EndSplineSet EndChar StartChar: onehalf -Encoding: 189 189 255 +Encoding: 189 189 254 GlifName: onehalf Width: 1024 VWidth: 0 @@ -9946,7 +9925,7 @@ EndSplineSet EndChar StartChar: onequarter -Encoding: 188 188 256 +Encoding: 188 188 255 GlifName: onequarter Width: 1024 VWidth: 0 @@ -9985,7 +9964,7 @@ EndSplineSet EndChar StartChar: ordfeminine -Encoding: 170 170 257 +Encoding: 170 170 256 GlifName: ordfeminine Width: 1024 VWidth: 0 @@ -10028,7 +10007,7 @@ EndSplineSet EndChar StartChar: ordmasculine -Encoding: 186 186 258 +Encoding: 186 186 257 GlifName: ordmasculine Width: 1024 VWidth: 0 @@ -10066,7 +10045,7 @@ EndSplineSet EndChar StartChar: oslash -Encoding: 248 248 259 +Encoding: 248 248 258 GlifName: oslash Width: 1024 VWidth: 0 @@ -10104,7 +10083,7 @@ EndSplineSet EndChar StartChar: otilde -Encoding: 245 245 260 +Encoding: 245 245 259 GlifName: otilde Width: 1024 VWidth: 0 @@ -10112,12 +10091,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 305 771 N 1 0 0 1 12 -697 2 -Refer: 244 111 N 1 0 0 1 0 0 3 +Refer: 304 771 N 1 0 0 1 12 -697 2 +Refer: 243 111 N 1 0 0 1 0 0 3 EndChar StartChar: p -Encoding: 112 112 261 +Encoding: 112 112 260 GlifName: p Width: 1024 VWidth: 0 @@ -10151,7 +10130,7 @@ EndSplineSet EndChar StartChar: paragraph -Encoding: 182 182 262 +Encoding: 182 182 261 GlifName: paragraph Width: 1024 VWidth: 0 @@ -10189,7 +10168,7 @@ EndSplineSet EndChar StartChar: parenleft -Encoding: 40 40 263 +Encoding: 40 40 262 GlifName: parenleft Width: 1024 VWidth: 0 @@ -10217,7 +10196,7 @@ EndSplineSet EndChar StartChar: parenright -Encoding: 41 41 264 +Encoding: 41 41 263 GlifName: parenright Width: 1024 VWidth: 0 @@ -10245,7 +10224,7 @@ EndSplineSet EndChar StartChar: percent -Encoding: 37 37 265 +Encoding: 37 37 264 GlifName: percent Width: 1024 VWidth: 0 @@ -10303,7 +10282,7 @@ EndSplineSet EndChar StartChar: period -Encoding: 46 46 266 +Encoding: 46 46 265 GlifName: period Width: 1024 VWidth: 0 @@ -10321,7 +10300,7 @@ EndSplineSet EndChar StartChar: periodcentered -Encoding: 183 183 267 +Encoding: 183 183 266 GlifName: periodcentered Width: 1024 VWidth: 0 @@ -10339,7 +10318,7 @@ EndSplineSet EndChar StartChar: perthousand -Encoding: 8240 8240 268 +Encoding: 8240 8240 267 GlifName: perthousand Width: 1024 VWidth: 0 @@ -10417,7 +10396,7 @@ EndSplineSet EndChar StartChar: plus -Encoding: 43 43 269 +Encoding: 43 43 268 GlifName: plus Width: 1024 VWidth: 0 @@ -10440,7 +10419,7 @@ EndSplineSet EndChar StartChar: plusminus -Encoding: 177 177 270 +Encoding: 177 177 269 GlifName: plusminus Width: 1024 VWidth: 0 @@ -10468,7 +10447,7 @@ EndSplineSet EndChar StartChar: q -Encoding: 113 113 271 +Encoding: 113 113 270 GlifName: q Width: 1024 VWidth: 0 @@ -10506,7 +10485,7 @@ EndSplineSet EndChar StartChar: question -Encoding: 63 63 272 +Encoding: 63 63 271 GlifName: question Width: 1024 VWidth: 0 @@ -10544,7 +10523,7 @@ EndSplineSet EndChar StartChar: questiondown -Encoding: 191 191 273 +Encoding: 191 191 272 GlifName: questiondown Width: 1024 VWidth: 0 @@ -10582,7 +10561,7 @@ EndSplineSet EndChar StartChar: quotedbl -Encoding: 34 34 274 +Encoding: 34 34 273 GlifName: quotedbl Width: 1024 VWidth: 0 @@ -10605,7 +10584,7 @@ EndSplineSet EndChar StartChar: quotedblbase -Encoding: 8222 8222 275 +Encoding: 8222 8222 274 GlifName: quotedblbase Width: 1024 VWidth: 0 @@ -10638,7 +10617,7 @@ EndSplineSet EndChar StartChar: quotedblleft -Encoding: 8220 8220 276 +Encoding: 8220 8220 275 GlifName: quotedblleft Width: 1024 VWidth: 0 @@ -10671,7 +10650,7 @@ EndSplineSet EndChar StartChar: quotedblright -Encoding: 8221 8221 277 +Encoding: 8221 8221 276 GlifName: quotedblright Width: 1024 VWidth: 0 @@ -10704,7 +10683,7 @@ EndSplineSet EndChar StartChar: quoteleft -Encoding: 8216 8216 278 +Encoding: 8216 8216 277 GlifName: quoteleft Width: 1024 VWidth: 0 @@ -10727,7 +10706,7 @@ EndSplineSet EndChar StartChar: quoteright -Encoding: 8217 8217 279 +Encoding: 8217 8217 278 GlifName: quoteright Width: 1024 VWidth: 0 @@ -10750,7 +10729,7 @@ EndSplineSet EndChar StartChar: quotesinglbase -Encoding: 8218 8218 280 +Encoding: 8218 8218 279 GlifName: quotesinglbase Width: 1024 VWidth: 0 @@ -10773,7 +10752,7 @@ EndSplineSet EndChar StartChar: quotesingle -Encoding: 39 39 281 +Encoding: 39 39 280 GlifName: quotesingle Width: 1024 VWidth: 0 @@ -10791,7 +10770,7 @@ EndSplineSet EndChar StartChar: r -Encoding: 114 114 282 +Encoding: 114 114 281 GlifName: r Width: 1024 VWidth: 0 @@ -10821,7 +10800,7 @@ EndSplineSet EndChar StartChar: racute -Encoding: 341 341 283 +Encoding: 341 341 282 GlifName: racute Width: 1024 VWidth: 0 @@ -10830,11 +10809,11 @@ Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 38 -714 2 -Refer: 282 114 N 1 0 0 1 0 0 3 +Refer: 281 114 N 1 0 0 1 0 0 3 EndChar StartChar: rcaron -Encoding: 345 345 284 +Encoding: 345 345 283 GlifName: rcaron Width: 1024 VWidth: 0 @@ -10842,12 +10821,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 356 780 N 1 0 0 1 0 -141 2 -Refer: 282 114 N 1 0 0 1 0 0 3 +Refer: 355 780 N 1 0 0 1 0 -141 2 +Refer: 281 114 N 1 0 0 1 0 0 3 EndChar StartChar: registered -Encoding: 174 174 285 +Encoding: 174 174 284 GlifName: registered Width: 1024 VWidth: 0 @@ -10905,7 +10884,7 @@ EndSplineSet EndChar StartChar: ring -Encoding: 730 730 286 +Encoding: 730 730 285 GlifName: ring Width: 1024 VWidth: 0 @@ -10928,7 +10907,7 @@ EndSplineSet EndChar StartChar: s -Encoding: 115 115 287 +Encoding: 115 115 286 GlifName: s Width: 1024 VWidth: 0 @@ -10968,7 +10947,7 @@ EndSplineSet EndChar StartChar: sacute -Encoding: 347 347 288 +Encoding: 347 347 287 GlifName: sacute Width: 1024 VWidth: 0 @@ -10977,11 +10956,11 @@ Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 6 -754 2 -Refer: 287 115 N 1 0 0 1 0 0 3 +Refer: 286 115 N 1 0 0 1 0 0 3 EndChar StartChar: scaron -Encoding: 353 353 289 +Encoding: 353 353 288 GlifName: scaron Width: 1024 VWidth: 0 @@ -10989,12 +10968,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 356 780 N 1 0 0 1 -32 -181 2 -Refer: 287 115 N 1 0 0 1 0 0 3 +Refer: 355 780 N 1 0 0 1 -32 -181 2 +Refer: 286 115 N 1 0 0 1 0 0 3 EndChar StartChar: scedilla -Encoding: 351 351 290 +Encoding: 351 351 289 GlifName: scedilla Width: 1024 VWidth: 0 @@ -11002,12 +10981,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 358 807 N 1 0 0 1 -142 -257 2 -Refer: 287 115 N 1 0 0 1 0 0 3 +Refer: 357 807 N 1 0 0 1 -142 -257 2 +Refer: 286 115 N 1 0 0 1 0 0 3 EndChar StartChar: scircumflex -Encoding: 349 349 291 +Encoding: 349 349 290 GlifName: scircumflex Width: 1024 VWidth: 0 @@ -11015,12 +10994,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 348 770 N 1 0 0 1 -34 -293 2 -Refer: 287 115 N 1 0 0 1 0 0 3 +Refer: 347 770 N 1 0 0 1 -34 -293 2 +Refer: 286 115 N 1 0 0 1 0 0 3 EndChar StartChar: section -Encoding: 167 167 292 +Encoding: 167 167 291 GlifName: section Width: 1024 VWidth: 0 @@ -11083,7 +11062,7 @@ EndSplineSet EndChar StartChar: semicolon -Encoding: 59 59 293 +Encoding: 59 59 292 GlifName: semicolon Width: 1024 VWidth: 0 @@ -11111,7 +11090,7 @@ EndSplineSet EndChar StartChar: seven -Encoding: 55 55 294 +Encoding: 55 55 293 GlifName: seven Width: 1024 VWidth: 0 @@ -11131,7 +11110,7 @@ EndSplineSet EndChar StartChar: six -Encoding: 54 54 295 +Encoding: 54 54 294 GlifName: six Width: 1024 VWidth: 0 @@ -11159,7 +11138,7 @@ EndSplineSet EndChar StartChar: slash -Encoding: 47 47 296 +Encoding: 47 47 295 GlifName: slash Width: 1024 VWidth: 0 @@ -11177,7 +11156,7 @@ EndSplineSet EndChar StartChar: space -Encoding: 32 32 297 +Encoding: 32 32 296 GlifName: space Width: 1024 VWidth: 0 @@ -11187,7 +11166,7 @@ LayerCount: 2 EndChar StartChar: sterling -Encoding: 163 163 298 +Encoding: 163 163 297 GlifName: sterling Width: 1024 VWidth: 0 @@ -11220,7 +11199,7 @@ EndSplineSet EndChar StartChar: t -Encoding: 116 116 299 +Encoding: 116 116 298 GlifName: t Width: 1024 VWidth: 0 @@ -11250,7 +11229,7 @@ EndSplineSet EndChar StartChar: tcaron -Encoding: 357 357 300 +Encoding: 357 357 299 GlifName: tcaron Width: 1024 VWidth: 0 @@ -11283,7 +11262,7 @@ EndSplineSet EndChar StartChar: thorn -Encoding: 254 254 301 +Encoding: 254 254 300 GlifName: thorn Width: 1024 VWidth: 0 @@ -11316,7 +11295,7 @@ EndSplineSet EndChar StartChar: three -Encoding: 51 51 302 +Encoding: 51 51 301 GlifName: three Width: 1024 VWidth: 0 @@ -11342,7 +11321,7 @@ EndSplineSet EndChar StartChar: threequarters -Encoding: 190 190 303 +Encoding: 190 190 302 GlifName: threequarters Width: 1024 VWidth: 0 @@ -11384,7 +11363,7 @@ EndSplineSet EndChar StartChar: tilde -Encoding: 732 732 304 +Encoding: 732 732 303 GlifName: tilde Width: 1024 VWidth: 0 @@ -11412,36 +11391,36 @@ EndSplineSet EndChar StartChar: tildecomb -Encoding: 771 771 305 +Encoding: 771 771 304 GlifName: tildecomb -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 4 -Flags: W -AnchorPoint: "top" 492 1855 mark 0 +Flags: HW +AnchorPoint: "top" 15.5 1855 mark 0 LayerCount: 2 Fore SplineSet -330 2015 m 257 - 330 1916 l 257 - 680 1855 l 257 - 680 1954 l 257 - 330 2015 l 257 -92 1957 m 257 - 107 1859 l 257 - 330 1916 l 257 - 330 2015 l 257 - 92 1957 l 257 -680 1954 m 257 - 680 1855 l 257 - 861 1996 l 257 - 837 2092 l 257 - 680 1954 l 257 +-146.5 2015 m 257 + -146.5 1916 l 257 + 203.5 1855 l 257 + 203.5 1954 l 257 + -146.5 2015 l 257 +-384.5 1957 m 257 + -369.5 1859 l 257 + -146.5 1916 l 257 + -146.5 2015 l 257 + -384.5 1957 l 257 +203.5 1954 m 257 + 203.5 1855 l 257 + 384.5 1996 l 257 + 360.5 2092 l 257 + 203.5 1954 l 257 EndSplineSet EndChar StartChar: trademark -Encoding: 8482 8482 306 +Encoding: 8482 8482 305 GlifName: trademark Width: 1024 VWidth: 0 @@ -11454,7 +11433,7 @@ Refer: 88 84 N 0.5 0 0 0.5 -6.25 587 2 EndChar StartChar: two -Encoding: 50 50 307 +Encoding: 50 50 306 GlifName: two Width: 1024 VWidth: 0 @@ -11480,7 +11459,7 @@ EndSplineSet EndChar StartChar: u -Encoding: 117 117 308 +Encoding: 117 117 307 GlifName: u Width: 1024 VWidth: 0 @@ -11510,7 +11489,7 @@ EndSplineSet EndChar StartChar: uacute -Encoding: 250 250 309 +Encoding: 250 250 308 GlifName: uacute Width: 1024 VWidth: 0 @@ -11519,11 +11498,11 @@ Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 -26 -742 2 -Refer: 308 117 N 1 0 0 1 0 0 3 +Refer: 307 117 N 1 0 0 1 0 0 3 EndChar StartChar: ubreve -Encoding: 365 365 310 +Encoding: 365 365 309 GlifName: ubreve Width: 1024 VWidth: 0 @@ -11531,12 +11510,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 351 774 N 1 0 0 1 -56 -294 2 -Refer: 308 117 N 1 0 0 1 0 0 3 +Refer: 350 774 N 1 0 0 1 -56 -294 2 +Refer: 307 117 N 1 0 0 1 0 0 3 EndChar StartChar: ucircumflex -Encoding: 251 251 311 +Encoding: 251 251 310 GlifName: ucircumflex Width: 1024 VWidth: 0 @@ -11544,12 +11523,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 348 770 N 1 0 0 1 -66 -281 2 -Refer: 308 117 N 1 0 0 1 0 0 3 +Refer: 347 770 N 1 0 0 1 -66 -281 2 +Refer: 307 117 N 1 0 0 1 0 0 3 EndChar StartChar: udieresis -Encoding: 252 252 312 +Encoding: 252 252 311 GlifName: udieresis Width: 1024 VWidth: 0 @@ -11557,12 +11536,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 353 776 N 1 0 0 1 -76 -446 2 -Refer: 308 117 N 1 0 0 1 0 0 3 +Refer: 352 776 N 1 0 0 1 -76 -446 2 +Refer: 307 117 N 1 0 0 1 0 0 3 EndChar StartChar: ugrave -Encoding: 249 249 313 +Encoding: 249 249 312 GlifName: ugrave Width: 1024 VWidth: 0 @@ -11570,12 +11549,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 201 768 N 1 0 0 1 -152 -735 2 -Refer: 308 117 N 1 0 0 1 0 0 3 +Refer: 200 768 N 1 0 0 1 -152 -735 2 +Refer: 307 117 N 1 0 0 1 0 0 3 EndChar StartChar: uhungarumlaut -Encoding: 369 369 314 +Encoding: 369 369 313 GlifName: uhungarumlaut Width: 1024 VWidth: 0 @@ -11583,12 +11562,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 355 779 N 1 0 0 1 -53 -134 2 -Refer: 308 117 N 1 0 0 1 0 0 3 +Refer: 354 779 N 1 0 0 1 -53 -134 2 +Refer: 307 117 N 1 0 0 1 0 0 3 EndChar StartChar: umacron -Encoding: 363 363 315 +Encoding: 363 363 314 GlifName: umacron Width: 1024 VWidth: 0 @@ -11596,12 +11575,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 349 772 N 1 0 0 1 -48 -386 2 -Refer: 308 117 N 1 0 0 1 0 0 3 +Refer: 348 772 N 1 0 0 1 -48 -386 2 +Refer: 307 117 N 1 0 0 1 0 0 3 EndChar StartChar: underscore -Encoding: 95 95 316 +Encoding: 95 95 315 GlifName: underscore Width: 1024 VWidth: 0 @@ -11619,7 +11598,7 @@ EndSplineSet EndChar StartChar: uni00A0 -Encoding: 160 160 317 +Encoding: 160 160 316 GlifName: uni00A_0 Width: 1024 VWidth: 0 @@ -11629,7 +11608,7 @@ LayerCount: 2 EndChar StartChar: uni00B2 -Encoding: 178 178 318 +Encoding: 178 178 317 GlifName: uni00B_2 Width: 1024 VWidth: 0 @@ -11655,7 +11634,7 @@ EndSplineSet EndChar StartChar: uni00B3 -Encoding: 179 179 319 +Encoding: 179 179 318 GlifName: uni00B_3 Width: 1024 VWidth: 0 @@ -11681,7 +11660,7 @@ EndSplineSet EndChar StartChar: uni00B9 -Encoding: 185 185 320 +Encoding: 185 185 319 GlifName: uni00B_9 Width: 1024 VWidth: 0 @@ -11704,7 +11683,7 @@ EndSplineSet EndChar StartChar: uni0122 -Encoding: 290 290 321 +Encoding: 290 290 320 GlifName: uni0122 Width: 1024 VWidth: 0 @@ -11712,12 +11691,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 357 806 N 1 0 0 1 6 -37 2 +Refer: 356 806 N 1 0 0 1 6 -37 2 Refer: 36 71 N 1 0 0 1 0 0 3 EndChar StartChar: uni0123 -Encoding: 291 291 322 +Encoding: 291 291 321 GlifName: uni0123 Width: 1024 VWidth: 0 @@ -11760,7 +11739,7 @@ EndSplineSet EndChar StartChar: uni0136 -Encoding: 310 310 323 +Encoding: 310 310 322 GlifName: uni0136 Width: 1024 VWidth: 0 @@ -11768,12 +11747,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 357 806 N 1 0 0 1 340 -122 2 +Refer: 356 806 N 1 0 0 1 340 -122 2 Refer: 56 75 N 1 0 0 1 0 0 3 EndChar StartChar: uni0137 -Encoding: 311 311 324 +Encoding: 311 311 323 GlifName: uni0137 Width: 1024 VWidth: 0 @@ -11781,12 +11760,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 357 806 N 1 0 0 1 329.5 -122 2 -Refer: 225 107 N 1 0 0 1 0 0 3 +Refer: 356 806 N 1 0 0 1 329.5 -122 2 +Refer: 224 107 N 1 0 0 1 0 0 3 EndChar StartChar: uni013B -Encoding: 315 315 325 +Encoding: 315 315 324 GlifName: uni013B_ Width: 1024 VWidth: 0 @@ -11794,12 +11773,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 357 806 N 1 0 0 1 -41 -122 2 +Refer: 356 806 N 1 0 0 1 -41 -122 2 Refer: 57 76 N 1 0 0 1 0 0 3 EndChar StartChar: uni013C -Encoding: 316 316 326 +Encoding: 316 316 325 GlifName: uni013C_ Width: 1024 VWidth: 0 @@ -11807,12 +11786,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 357 806 N 1 0 0 1 0.5 -113 2 -Refer: 226 108 N 1 0 0 1 0 0 3 +Refer: 356 806 N 1 0 0 1 0.5 -113 2 +Refer: 225 108 N 1 0 0 1 0 0 3 EndChar StartChar: uni0145 -Encoding: 325 325 327 +Encoding: 325 325 326 GlifName: uni0145 Width: 1024 VWidth: 0 @@ -11820,12 +11799,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 357 806 N 1 0 0 1 286 -9 2 +Refer: 356 806 N 1 0 0 1 286 -9 2 Refer: 63 78 N 1 0 0 1 0 0 3 EndChar StartChar: uni0146 -Encoding: 326 326 328 +Encoding: 326 326 327 GlifName: uni0146 Width: 1024 VWidth: 0 @@ -11833,12 +11812,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 357 806 N 1 0 0 1 32.5 -122 2 -Refer: 238 110 N 1 0 0 1 0 0 3 +Refer: 356 806 N 1 0 0 1 32.5 -122 2 +Refer: 237 110 N 1 0 0 1 0 0 3 EndChar StartChar: uni0156 -Encoding: 342 342 329 +Encoding: 342 342 328 GlifName: uni0156 Width: 1024 VWidth: 0 @@ -11846,12 +11825,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 357 806 N 1 0 0 1 22.5 -122 2 +Refer: 356 806 N 1 0 0 1 22.5 -122 2 Refer: 80 82 N 1 0 0 1 0 0 3 EndChar StartChar: uni0157 -Encoding: 343 343 330 +Encoding: 343 343 329 GlifName: uni0157 Width: 1024 VWidth: 0 @@ -11859,12 +11838,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 357 806 N 1 0 0 1 -34 -65 2 -Refer: 282 114 N 1 0 0 1 0 0 3 +Refer: 356 806 N 1 0 0 1 -34 -65 2 +Refer: 281 114 N 1 0 0 1 0 0 3 EndChar StartChar: uni0162 -Encoding: 354 354 331 +Encoding: 354 354 330 GlifName: uni0162 Width: 1024 VWidth: 0 @@ -11872,12 +11851,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 358 807 N 1 0 0 1 -162 -245 2 +Refer: 357 807 N 1 0 0 1 -162 -245 2 Refer: 88 84 N 1 0 0 1 0 0 3 EndChar StartChar: uni0163 -Encoding: 355 355 332 +Encoding: 355 355 331 GlifName: uni0163 Width: 1024 VWidth: 0 @@ -11885,12 +11864,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 358 807 N 1 0 0 1 -154 -273 2 -Refer: 299 116 N 1 0 0 1 0 0 3 +Refer: 357 807 N 1 0 0 1 -154 -273 2 +Refer: 298 116 N 1 0 0 1 0 0 3 EndChar StartChar: uni0192 -Encoding: 402 402 333 +Encoding: 402 402 332 GlifName: uni0192 Width: 1024 VWidth: 0 @@ -11923,7 +11902,7 @@ EndSplineSet EndChar StartChar: uni01C4 -Encoding: 452 452 334 +Encoding: 452 452 333 GlifName: uni01C_4 Width: 1024 GlyphClass: 2 @@ -11935,31 +11914,31 @@ Refer: 19 68 N 0.5 0 0 1 -3.5 200 2 EndChar StartChar: uni01C5 -Encoding: 453 453 335 +Encoding: 453 453 334 GlifName: uni01C_5 Width: 1024 GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 715 382 N 0.5 0 0 1 509.75 200 2 +Refer: 712 382 N 0.5 0 0 1 509.75 200 2 Refer: 19 68 N 0.5 0 0 1 -2.25 200 2 EndChar StartChar: uni01C6 -Encoding: 454 454 336 +Encoding: 454 454 335 GlifName: uni01C_6 Width: 1024 GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 715 382 N 0.5 0 0 1 503.5 200 2 +Refer: 712 382 N 0.5 0 0 1 503.5 200 2 Refer: 160 100 N 0.5 0 0 1 -8.5 200 2 EndChar StartChar: uni0218 -Encoding: 536 536 337 +Encoding: 536 536 336 GlifName: uni0218 Width: 1024 VWidth: 0 @@ -11967,12 +11946,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 357 806 N 1 0 0 1 -6 -53 2 +Refer: 356 806 N 1 0 0 1 -6 -53 2 Refer: 83 83 N 1 0 0 1 0 0 3 EndChar StartChar: uni0219 -Encoding: 537 537 338 +Encoding: 537 537 337 GlifName: uni0219 Width: 1024 VWidth: 0 @@ -11980,12 +11959,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 357 806 N 1 0 0 1 -22 -61 2 -Refer: 287 115 N 1 0 0 1 0 0 3 +Refer: 356 806 N 1 0 0 1 -22 -61 2 +Refer: 286 115 N 1 0 0 1 0 0 3 EndChar StartChar: uni021A -Encoding: 538 538 339 +Encoding: 538 538 338 GlifName: uni021A_ Width: 1024 VWidth: 0 @@ -11993,12 +11972,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 357 806 N 1 0 0 1 -42 -49 2 +Refer: 356 806 N 1 0 0 1 -42 -49 2 Refer: 88 84 N 1 0 0 1 0 0 3 EndChar StartChar: uni021B -Encoding: 539 539 340 +Encoding: 539 539 339 GlifName: uni021B_ Width: 1024 VWidth: 0 @@ -12006,12 +11985,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 357 806 N 1 0 0 1 -34 -77 2 -Refer: 299 116 N 1 0 0 1 0 0 3 +Refer: 356 806 N 1 0 0 1 -34 -77 2 +Refer: 298 116 N 1 0 0 1 0 0 3 EndChar StartChar: uni0237 -Encoding: 567 567 341 +Encoding: 567 567 340 GlifName: uni0237 Width: 1024 VWidth: 0 @@ -12040,18 +12019,18 @@ EndSplineSet EndChar StartChar: uni02B9 -Encoding: 697 697 342 +Encoding: 697 697 341 GlifName: uni02B_9 Width: 1024 GlyphClass: 2 Flags: H LayerCount: 2 Fore -Refer: 281 39 N 1 0 0 1 0 0 3 +Refer: 280 39 N 1 0 0 1 0 0 3 EndChar StartChar: uni02BA -Encoding: 698 698 343 +Encoding: 698 698 342 GlifName: uni02B_A_ Width: 1024 VWidth: 0 @@ -12059,11 +12038,11 @@ GlyphClass: 2 Flags: W LayerCount: 2 Fore -Refer: 274 34 N 1 0 0 1 0 0 2 +Refer: 273 34 N 1 0 0 1 0 0 2 EndChar StartChar: uni02BC -Encoding: 700 700 344 +Encoding: 700 700 343 GlifName: uni02B_C_ Width: 1024 VWidth: 0 @@ -12071,11 +12050,11 @@ GlyphClass: 2 Flags: W LayerCount: 2 Fore -Refer: 281 39 N 1 0 0 1 0 0 2 +Refer: 280 39 N 1 0 0 1 0 0 2 EndChar StartChar: uni02C9 -Encoding: 713 713 345 +Encoding: 713 713 344 GlifName: uni02C_9 Width: 1024 VWidth: 0 @@ -12093,7 +12072,7 @@ EndSplineSet EndChar StartChar: uni02CA -Encoding: 714 714 346 +Encoding: 714 714 345 GlifName: uni02C_A_ Width: 1024 VWidth: 0 @@ -12111,7 +12090,7 @@ EndSplineSet EndChar StartChar: uni02CB -Encoding: 715 715 347 +Encoding: 715 715 346 GlifName: uni02C_B_ Width: 1024 VWidth: 0 @@ -12129,392 +12108,394 @@ EndSplineSet EndChar StartChar: uni0302 -Encoding: 770 770 348 +Encoding: 770 770 347 GlifName: uni0302 Width: 0 VWidth: 0 GlyphClass: 4 -AnchorPoint: "top" 506 1427 mark 0 +Flags: HW +AnchorPoint: "top" -2.5 1427 mark 0 LayerCount: 2 Fore SplineSet -539 1695 m 257 - 479 1695 l 257 - 373 1448 l 257 - 433 1423 l 257 - 539 1695 l 257 -481 1647 m 257 - 584 1423 l 257 - 644 1445 l 257 - 539 1695 l 257 - 481 1647 l 257 +30.5 1695 m 257 + -29.5 1695 l 257 + -135.5 1448 l 257 + -75.5 1423 l 257 + 30.5 1695 l 257 +-27.5 1647 m 257 + 75.5 1423 l 257 + 135.5 1445 l 257 + 30.5 1695 l 257 + -27.5 1647 l 257 EndSplineSet EndChar StartChar: uni0304 -Encoding: 772 772 349 +Encoding: 772 772 348 GlifName: uni0304 -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 4 -Flags: W -AnchorPoint: "top" 488 1532 mark 0 +Flags: HW +AnchorPoint: "top" -18 1532 mark 0 LayerCount: 2 Fore SplineSet -226 1630 m 257 - 226 1548 l 257 - 786 1548 l 257 - 786 1630 l 257 - 226 1630 l 257 +-280 1630 m 257 + -280 1548 l 257 + 280 1548 l 257 + 280 1630 l 257 + -280 1630 l 257 EndSplineSet EndChar StartChar: uni0305 -Encoding: 773 773 350 +Encoding: 773 773 349 GlifName: uni0305 Width: 0 VWidth: 0 -GlyphClass: 2 +GlyphClass: 4 +Flags: HW LayerCount: 2 Fore SplineSet --901 1602 m 257 - -901 1542 l 257 - -147 1542 l 257 - -147 1602 l 257 - -901 1602 l 257 +-377 1602 m 257 + -377 1542 l 257 + 377 1542 l 257 + 377 1602 l 257 + -377 1602 l 257 EndSplineSet EndChar StartChar: uni0306 -Encoding: 774 774 351 +Encoding: 774 774 350 GlifName: uni0306 -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 4 -Flags: W -AnchorPoint: "top" 496 1440 mark 0 +Flags: HW +AnchorPoint: "top" 5 1440 mark 0 LayerCount: 2 Fore SplineSet -656 1548 m 257 - 656 1480 l 257 - 821 1548 l 257 - 821 1645 l 257 - 656 1548 l 257 -332 1548 m 257 - 332 1480 l 257 - 656 1480 l 257 - 656 1548 l 257 - 332 1548 l 257 -161 1630 m 257 - 161 1548 l 257 - 332 1480 l 257 - 332 1548 l 257 - 161 1630 l 257 +165 1548 m 257 + 165 1480 l 257 + 330 1548 l 257 + 330 1645 l 257 + 165 1548 l 257 +-159 1548 m 257 + -159 1480 l 257 + 165 1480 l 257 + 165 1548 l 257 + -159 1548 l 257 +-330 1630 m 257 + -330 1548 l 257 + -159 1480 l 257 + -159 1548 l 257 + -330 1630 l 257 EndSplineSet EndChar StartChar: uni0307 -Encoding: 775 775 352 +Encoding: 775 775 351 GlifName: uni0307 -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 4 -Flags: W -AnchorPoint: "top" 508 1542 mark 0 +Flags: HW +AnchorPoint: "top" -4 1542 mark 0 LayerCount: 2 Fore SplineSet -400 1788 m 257 - 400 1586 l 257 - 624 1586 l 257 - 624 1788 l 257 - 400 1788 l 257 +-112 1788 m 257 + -112 1586 l 257 + 112 1586 l 257 + 112 1788 l 257 + -112 1788 l 257 EndSplineSet EndChar StartChar: uni0308 -Encoding: 776 776 353 +Encoding: 776 776 352 GlifName: uni0308 -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 4 -Flags: W -AnchorPoint: "top" 516 1592 mark 0 +Flags: HW +AnchorPoint: "top" 4 1592 mark 0 LayerCount: 2 Fore SplineSet -335 1738 m 257 - 335 1637 l 257 - 447 1637 l 257 - 447 1738 l 257 - 335 1738 l 257 -577 1738 m 257 - 577 1637 l 257 - 689 1637 l 257 - 689 1738 l 257 - 577 1738 l 257 +-177 1738 m 257 + -177 1637 l 257 + -65 1637 l 257 + -65 1738 l 257 + -177 1738 l 257 +65 1738 m 257 + 65 1637 l 257 + 177 1637 l 257 + 177 1738 l 257 + 65 1738 l 257 EndSplineSet EndChar StartChar: uni030A -Encoding: 778 778 354 +Encoding: 778 778 353 GlifName: uni030A_ -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 4 -Flags: W -AnchorPoint: "top" 541 1536 mark 0 +Flags: HW +AnchorPoint: "top" -1 1536 mark 0 LayerCount: 2 Fore SplineSet -467 1756 m 257 - 615 1756 l 257 - 615 1626 l 257 - 467 1626 l 257 - 467 1756 l 257 -362 1847 m 257 - 362 1537 l 257 - 722 1537 l 257 - 722 1847 l 257 - 362 1847 l 257 +-75 1756 m 257 + 73 1756 l 257 + 73 1626 l 257 + -75 1626 l 257 + -75 1756 l 257 +-180 1847 m 257 + -180 1537 l 257 + 180 1537 l 257 + 180 1847 l 257 + -180 1847 l 257 EndSplineSet EndChar StartChar: uni030B -Encoding: 779 779 355 +Encoding: 779 779 354 GlifName: uni030B_ -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 4 -Flags: W -AnchorPoint: "top" 493 1280 mark 0 +Flags: HW +AnchorPoint: "top" -19 1280 mark 0 LayerCount: 2 Fore -Refer: 274 34 N 1 0 0 1 0 0 2 +Refer: 273 34 N 1 0 0 1 -512 0 2 EndChar StartChar: uni030C -Encoding: 780 780 356 +Encoding: 780 780 355 GlifName: uni030C_ -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 4 -Flags: W -AnchorPoint: "top" 504 1315 mark 0 +Flags: HW +AnchorPoint: "top" -17.5 1315 mark 0 LayerCount: 2 Fore SplineSet -552 1349 m 257 - 446 1621 l 257 - 386 1596 l 257 - 492 1349 l 257 - 552 1349 l 257 -494 1397 m 257 - 552 1349 l 257 - 657 1599 l 257 - 597 1621 l 257 - 494 1397 l 257 +30.5 1349 m 257 + -75.5 1621 l 257 + -135.5 1596 l 257 + -29.5 1349 l 257 + 30.5 1349 l 257 +-27.5 1397 m 257 + 30.5 1349 l 257 + 135.5 1599 l 257 + 75.5 1621 l 257 + -27.5 1397 l 257 EndSplineSet EndChar StartChar: uni0326 -Encoding: 806 806 357 +Encoding: 806 806 356 GlifName: uni0326 -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 4 -Flags: W -AnchorPoint: "base" 534 -5 mark 0 +Flags: HW +AnchorPoint: "base" 22.5 -5 mark 0 LayerCount: 2 Fore SplineSet -397 0 m 257 - 397 -230 l 257 - 645 -230 l 257 - 645 0 l 257 - 397 0 l 257 -496 -103 m 257 - 378 -384 l 257 - 521 -444 l 257 - 643 -234 l 257 - 496 -103 l 257 +-114.5 0 m 257 + -114.5 -230 l 257 + 133.5 -230 l 257 + 133.5 0 l 257 + -114.5 0 l 257 +-15.5 -103 m 257 + -133.5 -384 l 257 + 9.5 -444 l 257 + 131.5 -234 l 257 + -15.5 -103 l 257 EndSplineSet EndChar StartChar: uni0327 -Encoding: 807 807 358 +Encoding: 807 807 357 GlifName: uni0327 -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 4 -Flags: W -AnchorPoint: "base" 654 191 mark 0 +Flags: HW +AnchorPoint: "base" -146.5 191 mark 0 LayerCount: 2 Fore SplineSet -577 180 m 257 - 577 -144 l 257 - 733 -144 l 257 - 733 180 l 257 - 577 180 l 257 -578 -288 m 257 - 578 -406 l 257 - 1024 -406 l 257 - 1024 -288 l 257 - 578 -288 l 257 -872 0 m 257 - 872 -372 l 257 - 1024 -372 l 257 - 1024 0 l 257 - 872 0 l 257 -578 0 m 257 - 578 -156 l 257 - 1024 -156 l 257 - 1024 0 l 257 - 578 0 l 257 +-223.5 180 m 257 + -223.5 -144 l 257 + -67.5 -144 l 257 + -67.5 180 l 257 + -223.5 180 l 257 +-222.5 -288 m 257 + -222.5 -406 l 257 + 223.5 -406 l 257 + 223.5 -288 l 257 + -222.5 -288 l 257 +71.5 0 m 257 + 71.5 -372 l 257 + 223.5 -372 l 257 + 223.5 0 l 257 + 71.5 0 l 257 +-222.5 0 m 257 + -222.5 -156 l 257 + 223.5 -156 l 257 + 223.5 0 l 257 + -222.5 0 l 257 EndSplineSet EndChar StartChar: uni0328 -Encoding: 808 808 359 +Encoding: 808 808 358 GlifName: uni0328 -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 4 -Flags: W -AnchorPoint: "base" 990 23 mark 0 +Flags: HW +AnchorPoint: "base" 237 23 mark 0 LayerCount: 2 Fore SplineSet -482 -288 m 257 - 482 -406 l 257 - 1024 -406 l 257 - 1024 -288 l 257 - 482 -288 l 257 -482 0 m 257 - 482 -406 l 257 - 600 -406 l 257 - 600 0 l 257 - 482 0 l 257 -482 0 m 257 - 482 -121 l 257 - 1024 -121 l 257 - 1024 0 l 257 - 482 0 l 257 +-271 -288 m 257 + -271 -406 l 257 + 271 -406 l 257 + 271 -288 l 257 + -271 -288 l 257 +-271 0 m 257 + -271 -406 l 257 + -153 -406 l 257 + -153 0 l 257 + -271 0 l 257 +-271 0 m 257 + -271 -121 l 257 + 271 -121 l 257 + 271 0 l 257 + -271 0 l 257 EndSplineSet EndChar StartChar: uni0331 -Encoding: 817 817 360 +Encoding: 817 817 359 GlifName: uni0331 -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 4 -Flags: W -AnchorPoint: "base" 510 -163 mark 0 +Flags: HW +AnchorPoint: "base" 4 -163 mark 0 LayerCount: 2 Fore SplineSet -226 -170 m 257 - 226 -248 l 257 - 786 -248 l 257 - 786 -170 l 257 - 226 -170 l 257 +-280 -170 m 257 + -280 -248 l 257 + 280 -248 l 257 + 280 -170 l 257 + -280 -170 l 257 EndSplineSet EndChar StartChar: uni0900 -Encoding: 2304 2304 361 +Encoding: 2304 2304 360 GlifName: uni0900 Width: 0 VWidth: 0 GlyphClass: 4 Flags: HW -AnchorPoint: "abvm" 520 1622 mark 0 +AnchorPoint: "abvm" 8 1622 mark 0 LayerCount: 2 Fore SplineSet -110 2124 m 257 - 110 1639 l 257 - 309 1639 l 257 - 309 2124 l 257 - 110 2124 l 257 -156 2126 m 257 - 156 1925 l 257 - 790 1925 l 257 - 790 2126 l 257 - 156 2126 l 257 -422 1865 m 257 - 422 1665 l 257 - 622 1665 l 257 - 622 1865 l 257 - 422 1865 l 257 -714 2127 m 257 - 714 1636 l 257 - 914 1636 l 257 - 914 2127 l 257 - 714 2127 l 257 +-402 2124 m 257 + -402 1639 l 257 + -203 1639 l 257 + -203 2124 l 257 + -402 2124 l 257 +-356 2126 m 257 + -356 1925 l 257 + 278 1925 l 257 + 278 2126 l 257 + -356 2126 l 257 +-90 1865 m 257 + -90 1665 l 257 + 110 1665 l 257 + 110 1865 l 257 + -90 1865 l 257 +202 2127 m 257 + 202 1636 l 257 + 402 1636 l 257 + 402 2127 l 257 + 202 2127 l 257 EndSplineSet EndChar StartChar: uni0901 -Encoding: 2305 2305 362 +Encoding: 2305 2305 361 GlifName: uni0901 Width: 0 VWidth: 0 GlyphClass: 4 Flags: HW -AnchorPoint: "abvm" 540 1617 mark 0 +AnchorPoint: "abvm" -15 1617 mark 0 LayerCount: 2 Fore SplineSet -153 2124 m 257 - 153 1639 l 257 - 352 1639 l 257 - 352 2124 l 257 - 153 2124 l 257 -199 1842 m 257 - 199 1641 l 257 - 833 1641 l 257 - 833 1842 l 257 - 199 1842 l 257 -455 2095 m 257 - 455 1895 l 257 - 655 1895 l 257 - 655 2095 l 257 - 455 2095 l 257 -757 2132 m 257 - 757 1641 l 257 - 957 1641 l 257 - 957 2132 l 257 - 757 2132 l 257 +-402 2124 m 257 + -402 1639 l 257 + -203 1639 l 257 + -203 2124 l 257 + -402 2124 l 257 +-356 1842 m 257 + -356 1641 l 257 + 278 1641 l 257 + 278 1842 l 257 + -356 1842 l 257 +-100 2095 m 257 + -100 1895 l 257 + 100 1895 l 257 + 100 2095 l 257 + -100 2095 l 257 +202 2132 m 257 + 202 1641 l 257 + 402 1641 l 257 + 402 2132 l 257 + 202 2132 l 257 EndSplineSet EndChar StartChar: uni0902 -Encoding: 2306 2306 363 +Encoding: 2306 2306 362 GlifName: uni0902 Width: 0 VWidth: 0 GlyphClass: 4 Flags: HW -AnchorPoint: "abvm" 135 1592 mark 0 +AnchorPoint: "abvm" -14 1592 mark 0 LayerCount: 2 Fore SplineSet -49 1839 m 257 - 49 1639 l 257 - 249 1639 l 257 - 249 1839 l 257 - 49 1839 l 257 +-100 1839 m 257 + -100 1639 l 257 + 100 1639 l 257 + 100 1839 l 257 + -100 1839 l 257 EndSplineSet EndChar StartChar: uni0903 -Encoding: 2307 2307 364 +Encoding: 2307 2307 363 GlifName: uni0903 Width: 1024 VWidth: 0 @@ -12537,7 +12518,7 @@ EndSplineSet EndChar StartChar: uni0904 -Encoding: 2308 2308 365 +Encoding: 2308 2308 364 GlifName: uni0904 Width: 1024 VWidth: 0 @@ -12595,7 +12576,7 @@ EndSplineSet EndChar StartChar: uni0905 -Encoding: 2309 2309 366 +Encoding: 2309 2309 365 GlifName: uni0905 Width: 1024 VWidth: 0 @@ -12638,7 +12619,7 @@ EndSplineSet EndChar StartChar: uni0906 -Encoding: 2310 2310 367 +Encoding: 2310 2310 366 GlifName: uni0906 Width: 1024 VWidth: 0 @@ -12686,7 +12667,7 @@ EndSplineSet EndChar StartChar: uni0907 -Encoding: 2311 2311 368 +Encoding: 2311 2311 367 GlifName: uni0907 Width: 1024 VWidth: 0 @@ -12739,7 +12720,7 @@ EndSplineSet EndChar StartChar: uni0908 -Encoding: 2312 2312 369 +Encoding: 2312 2312 368 GlifName: uni0908 Width: 1024 VWidth: 0 @@ -12797,7 +12778,7 @@ EndSplineSet EndChar StartChar: uni0909 -Encoding: 2313 2313 370 +Encoding: 2313 2313 369 GlifName: uni0909 Width: 1024 VWidth: 0 @@ -12840,7 +12821,7 @@ EndSplineSet EndChar StartChar: uni090A -Encoding: 2314 2314 371 +Encoding: 2314 2314 370 GlifName: uni090A_ Width: 1024 VWidth: 0 @@ -12888,7 +12869,7 @@ EndSplineSet EndChar StartChar: uni090B -Encoding: 2315 2315 372 +Encoding: 2315 2315 371 GlifName: uni090B_ Width: 1024 VWidth: 0 @@ -12941,7 +12922,7 @@ EndSplineSet EndChar StartChar: uni090C -Encoding: 2316 2316 373 +Encoding: 2316 2316 372 GlifName: uni090C_ Width: 1024 VWidth: 0 @@ -12989,7 +12970,7 @@ EndSplineSet EndChar StartChar: uni090D -Encoding: 2317 2317 374 +Encoding: 2317 2317 373 GlifName: uni090D_ Width: 1024 VWidth: 0 @@ -13052,7 +13033,7 @@ EndSplineSet EndChar StartChar: uni090E -Encoding: 2318 2318 375 +Encoding: 2318 2318 374 GlifName: uni090E_ Width: 1024 VWidth: 0 @@ -13115,7 +13096,7 @@ EndSplineSet EndChar StartChar: uni090F -Encoding: 2319 2319 376 +Encoding: 2319 2319 375 GlifName: uni090F_ Width: 1024 VWidth: 0 @@ -13163,7 +13144,7 @@ EndSplineSet EndChar StartChar: uni0910 -Encoding: 2320 2320 377 +Encoding: 2320 2320 376 GlifName: uni0910 Width: 1024 VWidth: 0 @@ -13216,7 +13197,7 @@ EndSplineSet EndChar StartChar: uni0911 -Encoding: 2321 2321 378 +Encoding: 2321 2321 377 GlifName: uni0911 Width: 1024 VWidth: 0 @@ -13279,7 +13260,7 @@ EndSplineSet EndChar StartChar: uni0912 -Encoding: 2322 2322 379 +Encoding: 2322 2322 378 GlifName: uni0912 Width: 1024 VWidth: 0 @@ -13342,7 +13323,7 @@ EndSplineSet EndChar StartChar: uni0913 -Encoding: 2323 2323 380 +Encoding: 2323 2323 379 GlifName: uni0913 Width: 1024 VWidth: 0 @@ -13395,7 +13376,7 @@ EndSplineSet EndChar StartChar: uni0914 -Encoding: 2324 2324 381 +Encoding: 2324 2324 380 GlifName: uni0914 Width: 1024 VWidth: 0 @@ -13453,7 +13434,7 @@ EndSplineSet EndChar StartChar: uni0915 -Encoding: 2325 2325 382 +Encoding: 2325 2325 381 GlifName: uni0915 Width: 1024 VWidth: 0 @@ -13501,7 +13482,7 @@ EndSplineSet EndChar StartChar: uni0915_uni0930_uni094D.vatu -Encoding: 65537 -1 383 +Encoding: 65537 -1 382 GlifName: uni0915_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -13555,7 +13536,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0915 uni0930_uni09 EndChar StartChar: uni0915_uni094D.half -Encoding: 65538 -1 384 +Encoding: 65538 -1 383 GlifName: uni0915_uni094D_.half Width: 1024 VWidth: 0 @@ -13599,7 +13580,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0915 uni094D EndChar StartChar: uni0915_uni094D.haln -Encoding: 65539 -1 385 +Encoding: 65539 -1 384 GlifName: uni0915_uni094D_.haln Width: 1024 VWidth: 0 @@ -13658,7 +13639,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0915 uni094D EndChar StartChar: uni0915_uni094D_uni0937.akhn -Encoding: 65540 -1 386 +Encoding: 65540 -1 385 GlifName: uni0915_uni094D__uni0937.akhn Width: 1024 VWidth: 0 @@ -13717,7 +13698,7 @@ Ligature2: "akhnAkhandinDevanagarilookup0 subtable" uni0915 uni094D uni0937 EndChar StartChar: uni0915_uni094D_uni0937.half -Encoding: 65541 -1 387 +Encoding: 65541 -1 386 GlifName: uni0915_uni094D__uni0937.half Width: 1024 VWidth: 0 @@ -13771,7 +13752,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0915_uni094D_uni0937.a EndChar StartChar: uni0915_uni094D_uni0937_uni094D -Encoding: 65542 -1 388 +Encoding: 65542 -1 387 GlifName: uni0915_uni094D__uni0937_uni094D_ Width: 1024 VWidth: 0 @@ -13840,7 +13821,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0915_uni094D_uni0937 EndChar StartChar: uni0916 -Encoding: 2326 2326 389 +Encoding: 2326 2326 388 GlifName: uni0916 Width: 1024 VWidth: 0 @@ -13893,7 +13874,7 @@ EndSplineSet EndChar StartChar: uni0916_uni0930_uni094D.vatu -Encoding: 65543 -1 390 +Encoding: 65543 -1 389 GlifName: uni0916_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -13952,7 +13933,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0916 uni0930_uni09 EndChar StartChar: uni0916_uni094D.half -Encoding: 65544 -1 391 +Encoding: 65544 -1 390 GlifName: uni0916_uni094D_.half Width: 1024 VWidth: 0 @@ -14001,7 +13982,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0916 uni094D EndChar StartChar: uni0916_uni094D.haln -Encoding: 65545 -1 392 +Encoding: 65545 -1 391 GlifName: uni0916_uni094D_.haln Width: 1024 VWidth: 0 @@ -14065,7 +14046,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0916 uni094D EndChar StartChar: uni0917 -Encoding: 2327 2327 393 +Encoding: 2327 2327 392 GlifName: uni0917 Width: 1024 VWidth: 0 @@ -14103,7 +14084,7 @@ EndSplineSet EndChar StartChar: uni0917_uni0930_uni094D.vatu -Encoding: 65546 -1 394 +Encoding: 65546 -1 393 GlifName: uni0917_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -14147,7 +14128,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0917 uni0930_uni09 EndChar StartChar: uni0917_uni094D.half -Encoding: 65547 -1 395 +Encoding: 65547 -1 394 GlifName: uni0917_uni094D_.half Width: 1024 VWidth: 0 @@ -14181,7 +14162,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0917 uni094D EndChar StartChar: uni0917_uni094D.haln -Encoding: 65548 -1 396 +Encoding: 65548 -1 395 GlifName: uni0917_uni094D_.haln Width: 1024 VWidth: 0 @@ -14230,7 +14211,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0917 uni094D EndChar StartChar: uni0918 -Encoding: 2328 2328 397 +Encoding: 2328 2328 396 GlifName: uni0918 Width: 1024 VWidth: 0 @@ -14273,7 +14254,7 @@ EndSplineSet EndChar StartChar: uni0918_uni0930_uni094D.vatu -Encoding: 65549 -1 398 +Encoding: 65549 -1 397 GlifName: uni0918_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -14322,7 +14303,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0918 uni0930_uni09 EndChar StartChar: uni0918_uni094D.half -Encoding: 65550 -1 399 +Encoding: 65550 -1 398 GlifName: uni0918_uni094D_.half Width: 1024 VWidth: 0 @@ -14361,7 +14342,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0918 uni094D EndChar StartChar: uni0918_uni094D.haln -Encoding: 65551 -1 400 +Encoding: 65551 -1 399 GlifName: uni0918_uni094D_.haln Width: 1024 VWidth: 0 @@ -14415,7 +14396,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0918 uni094D EndChar StartChar: uni0919 -Encoding: 2329 2329 401 +Encoding: 2329 2329 400 GlifName: uni0919 Width: 1024 VWidth: 0 @@ -14473,7 +14454,7 @@ EndSplineSet EndChar StartChar: uni0919_uni0930_uni094D.vatu -Encoding: 65552 -1 402 +Encoding: 65552 -1 401 GlifName: uni0919_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -14542,7 +14523,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0919 uni0930_uni09 EndChar StartChar: uni0919_uni094D.half -Encoding: 65553 -1 403 +Encoding: 65553 -1 402 GlifName: uni0919_uni094D_.half Width: 1024 VWidth: 0 @@ -14611,7 +14592,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0919 uni094D EndChar StartChar: uni0919_uni094D.haln -Encoding: 65554 -1 404 +Encoding: 65554 -1 403 GlifName: uni0919_uni094D_.haln Width: 1024 VWidth: 0 @@ -14680,7 +14661,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0919 uni094D EndChar StartChar: uni091A -Encoding: 2330 2330 405 +Encoding: 2330 2330 404 GlifName: uni091A_ Width: 1024 VWidth: 0 @@ -14718,7 +14699,7 @@ EndSplineSet EndChar StartChar: uni091A_uni0930_uni094D.vatu -Encoding: 65555 -1 406 +Encoding: 65555 -1 405 GlifName: uni091A__uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -14762,7 +14743,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni091A uni0930_uni09 EndChar StartChar: uni091A_uni094D.half -Encoding: 65556 -1 407 +Encoding: 65556 -1 406 GlifName: uni091A__uni094D_.half Width: 1024 VWidth: 0 @@ -14796,7 +14777,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni091A uni094D EndChar StartChar: uni091A_uni094D.haln -Encoding: 65557 -1 408 +Encoding: 65557 -1 407 GlifName: uni091A__uni094D_.haln Width: 1024 VWidth: 0 @@ -14845,7 +14826,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni091A uni094D EndChar StartChar: uni091B -Encoding: 2331 2331 409 +Encoding: 2331 2331 408 GlifName: uni091B_ Width: 1024 VWidth: 0 @@ -14903,7 +14884,7 @@ EndSplineSet EndChar StartChar: uni091B_uni0930_uni094D.vatu -Encoding: 65558 -1 410 +Encoding: 65558 -1 409 GlifName: uni091B__uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -14967,7 +14948,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni091B uni0930_uni09 EndChar StartChar: uni091B_uni094D.half -Encoding: 65559 -1 411 +Encoding: 65559 -1 410 GlifName: uni091B__uni094D_.half Width: 1024 VWidth: 0 @@ -15011,7 +14992,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni091B uni094D EndChar StartChar: uni091B_uni094D.haln -Encoding: 65560 -1 412 +Encoding: 65560 -1 411 GlifName: uni091B__uni094D_.haln Width: 1024 VWidth: 0 @@ -15080,7 +15061,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni091B uni094D EndChar StartChar: uni091C -Encoding: 2332 2332 413 +Encoding: 2332 2332 412 GlifName: uni091C_ Width: 1024 VWidth: 0 @@ -15123,7 +15104,7 @@ EndSplineSet EndChar StartChar: uni091C_uni0930_uni094D.vatu -Encoding: 65561 -1 414 +Encoding: 65561 -1 413 GlifName: uni091C__uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -15172,7 +15153,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni091C uni0930_uni09 EndChar StartChar: uni091C_uni094D.half -Encoding: 65562 -1 415 +Encoding: 65562 -1 414 GlifName: uni091C__uni094D_.half Width: 1024 VWidth: 0 @@ -15211,7 +15192,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni091C uni094D EndChar StartChar: uni091C_uni094D.haln -Encoding: 65563 -1 416 +Encoding: 65563 -1 415 GlifName: uni091C__uni094D_.haln Width: 1024 VWidth: 0 @@ -15265,7 +15246,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni091C uni094D EndChar StartChar: uni091C_uni094D_uni091E.akhn -Encoding: 65564 -1 417 +Encoding: 65564 -1 416 GlifName: uni091C__uni094D__uni091E_.akhn Width: 1024 VWidth: 0 @@ -15309,7 +15290,7 @@ Ligature2: "akhnAkhandinDevanagarilookup0 subtable" uni091C uni094D uni091E EndChar StartChar: uni091C_uni094D_uni091E.half -Encoding: 65565 -1 418 +Encoding: 65565 -1 417 GlifName: uni091C__uni094D__uni091E_.half Width: 1024 VWidth: 0 @@ -15348,7 +15329,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni091C_uni094D_uni091E.a EndChar StartChar: uni091C_uni094D_uni091E_uni094D -Encoding: 65566 -1 419 +Encoding: 65566 -1 418 GlifName: uni091C__uni094D__uni091E__uni094D_ Width: 1024 VWidth: 0 @@ -15402,7 +15383,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni091C_uni094D_uni091E EndChar StartChar: uni091D -Encoding: 2333 2333 420 +Encoding: 2333 2333 419 GlifName: uni091D_ Width: 1024 VWidth: 0 @@ -15460,7 +15441,7 @@ EndSplineSet EndChar StartChar: uni091D_uni0930_uni094D.vatu -Encoding: 65567 -1 421 +Encoding: 65567 -1 420 GlifName: uni091D__uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -15524,7 +15505,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni091D uni0930_uni09 EndChar StartChar: uni091D_uni094D.half -Encoding: 65568 -1 422 +Encoding: 65568 -1 421 GlifName: uni091D__uni094D_.half Width: 1024 VWidth: 0 @@ -15578,7 +15559,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni091D uni094D EndChar StartChar: uni091D_uni094D.haln -Encoding: 65569 -1 423 +Encoding: 65569 -1 422 GlifName: uni091D__uni094D_.haln Width: 1024 VWidth: 0 @@ -15647,7 +15628,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni091D uni094D EndChar StartChar: uni091E -Encoding: 2334 2334 424 +Encoding: 2334 2334 423 GlifName: uni091E_ Width: 1024 VWidth: 0 @@ -15690,7 +15671,7 @@ EndSplineSet EndChar StartChar: uni091E_uni0930_uni094D.vatu -Encoding: 65570 -1 425 +Encoding: 65570 -1 424 GlifName: uni091E__uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -15739,7 +15720,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni091E uni0930_uni09 EndChar StartChar: uni091E_uni094D.half -Encoding: 65571 -1 426 +Encoding: 65571 -1 425 GlifName: uni091E__uni094D_.half Width: 1024 VWidth: 0 @@ -15778,7 +15759,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni091E uni094D EndChar StartChar: uni091E_uni094D.haln -Encoding: 65572 -1 427 +Encoding: 65572 -1 426 GlifName: uni091E__uni094D_.haln Width: 1024 VWidth: 0 @@ -15832,7 +15813,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni091E uni094D EndChar StartChar: uni091F -Encoding: 2335 2335 428 +Encoding: 2335 2335 427 GlifName: uni091F_ Width: 1024 VWidth: 0 @@ -15870,7 +15851,7 @@ EndSplineSet EndChar StartChar: uni091F_uni0930_uni094D.vatu -Encoding: 65573 -1 429 +Encoding: 65573 -1 428 GlifName: uni091F__uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -15919,7 +15900,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni091F uni0930_uni09 EndChar StartChar: uni091F_uni094D.haln -Encoding: 65574 -1 430 +Encoding: 65574 -1 429 GlifName: uni091F__uni094D_.haln Width: 1024 VWidth: 0 @@ -15968,7 +15949,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni091F uni094D EndChar StartChar: uni0920 -Encoding: 2336 2336 431 +Encoding: 2336 2336 430 GlifName: uni0920 Width: 1024 VWidth: 0 @@ -16011,7 +15992,7 @@ EndSplineSet EndChar StartChar: uni0920_uni0930_uni094D.vatu -Encoding: 65575 -1 432 +Encoding: 65575 -1 431 GlifName: uni0920_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -16065,7 +16046,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0920 uni0930_uni09 EndChar StartChar: uni0920_uni094D.haln -Encoding: 65576 -1 433 +Encoding: 65576 -1 432 GlifName: uni0920_uni094D_.haln Width: 1024 VWidth: 0 @@ -16119,7 +16100,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0920 uni094D EndChar StartChar: uni0921 -Encoding: 2337 2337 434 +Encoding: 2337 2337 433 GlifName: uni0921 Width: 1024 VWidth: 0 @@ -16172,7 +16153,7 @@ EndSplineSet EndChar StartChar: uni0921_uni0930_uni094D.vatu -Encoding: 65577 -1 435 +Encoding: 65577 -1 434 GlifName: uni0921_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -16236,7 +16217,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0921 uni0930_uni09 EndChar StartChar: uni0921_uni094D.haln -Encoding: 65578 -1 436 +Encoding: 65578 -1 435 GlifName: uni0921_uni094D_.haln Width: 1024 VWidth: 0 @@ -16300,7 +16281,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0921 uni094D EndChar StartChar: uni0922 -Encoding: 2338 2338 437 +Encoding: 2338 2338 436 GlifName: uni0922 Width: 1024 VWidth: 0 @@ -16348,7 +16329,7 @@ EndSplineSet EndChar StartChar: uni0922_uni0930_uni094D.vatu -Encoding: 65579 -1 438 +Encoding: 65579 -1 437 GlifName: uni0922_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -16407,7 +16388,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0922 uni0930_uni09 EndChar StartChar: uni0922_uni094D.haln -Encoding: 65580 -1 439 +Encoding: 65580 -1 438 GlifName: uni0922_uni094D_.haln Width: 1024 VWidth: 0 @@ -16466,7 +16447,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0922 uni094D EndChar StartChar: uni0923 -Encoding: 2339 2339 440 +Encoding: 2339 2339 439 GlifName: uni0923 Width: 1024 VWidth: 0 @@ -16504,7 +16485,7 @@ EndSplineSet EndChar StartChar: uni0923_uni0930_uni094D.vatu -Encoding: 65581 -1 441 +Encoding: 65581 -1 440 GlifName: uni0923_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -16548,7 +16529,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0923 uni0930_uni09 EndChar StartChar: uni0923_uni094D.half -Encoding: 65582 -1 442 +Encoding: 65582 -1 441 GlifName: uni0923_uni094D_.half Width: 1024 VWidth: 0 @@ -16582,7 +16563,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0923 uni094D EndChar StartChar: uni0923_uni094D.haln -Encoding: 65583 -1 443 +Encoding: 65583 -1 442 GlifName: uni0923_uni094D_.haln Width: 1024 VWidth: 0 @@ -16631,7 +16612,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0923 uni094D EndChar StartChar: uni0924 -Encoding: 2340 2340 444 +Encoding: 2340 2340 443 GlifName: uni0924 Width: 1024 VWidth: 0 @@ -16664,7 +16645,7 @@ EndSplineSet EndChar StartChar: uni0924_uni0930_uni094D.vatu -Encoding: 65584 -1 445 +Encoding: 65584 -1 444 GlifName: uni0924_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -16698,7 +16679,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0924 uni0930_uni09 EndChar StartChar: uni0924_uni094D.half -Encoding: 65585 -1 446 +Encoding: 65585 -1 445 GlifName: uni0924_uni094D_.half Width: 1024 VWidth: 0 @@ -16727,7 +16708,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0924 uni094D EndChar StartChar: uni0924_uni094D.haln -Encoding: 65586 -1 447 +Encoding: 65586 -1 446 GlifName: uni0924_uni094D_.haln Width: 1024 VWidth: 0 @@ -16771,7 +16752,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0924 uni094D EndChar StartChar: uni0924_uni094D_uni0924.pres -Encoding: 65587 -1 448 +Encoding: 65587 -1 447 GlifName: uni0924_uni094D__uni0924.pres Width: 1024 VWidth: 0 @@ -16810,7 +16791,7 @@ Ligature2: "presPreBaseSubstitutionsinDevanagarilookup0 subtable" uni0924_uni094 EndChar StartChar: uni0925 -Encoding: 2341 2341 449 +Encoding: 2341 2341 448 GlifName: uni0925 Width: 1024 VWidth: 0 @@ -16858,7 +16839,7 @@ EndSplineSet EndChar StartChar: uni0925_uni0930_uni094D.vatu -Encoding: 65588 -1 450 +Encoding: 65588 -1 449 GlifName: uni0925_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -16912,7 +16893,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0925 uni0930_uni09 EndChar StartChar: uni0925_uni094D.half -Encoding: 65589 -1 451 +Encoding: 65589 -1 450 GlifName: uni0925_uni094D_.half Width: 1024 VWidth: 0 @@ -16956,7 +16937,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0925 uni094D EndChar StartChar: uni0925_uni094D.haln -Encoding: 65590 -1 452 +Encoding: 65590 -1 451 GlifName: uni0925_uni094D_.haln Width: 1024 VWidth: 0 @@ -17015,7 +16996,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0925 uni094D EndChar StartChar: uni0926 -Encoding: 2342 2342 453 +Encoding: 2342 2342 452 GlifName: uni0926 Width: 1024 VWidth: 0 @@ -17058,7 +17039,7 @@ EndSplineSet EndChar StartChar: uni0926_uni0930_uni094D.vatu -Encoding: 65591 -1 454 +Encoding: 65591 -1 453 GlifName: uni0926_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -17107,7 +17088,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0926 uni0930_uni09 EndChar StartChar: uni0926_uni094D.half -Encoding: 65592 -1 455 +Encoding: 65592 -1 454 GlifName: uni0926_uni094D_.half Width: 1024 VWidth: 0 @@ -17161,7 +17142,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0926 uni094D EndChar StartChar: uni0926_uni094D.haln -Encoding: 65593 -1 456 +Encoding: 65593 -1 455 GlifName: uni0926_uni094D_.haln Width: 1024 VWidth: 0 @@ -17215,7 +17196,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0926 uni094D EndChar StartChar: uni0926_uni094D_uni0926.pres -Encoding: 65594 -1 457 +Encoding: 65594 -1 456 GlifName: uni0926_uni094D__uni0926.pres Width: 1024 VWidth: 0 @@ -17269,7 +17250,7 @@ Ligature2: "presPreBaseSubstitutionsinDevanagarilookup0 subtable" uni0926_uni094 EndChar StartChar: uni0926_uni094D_uni0927.pres -Encoding: 65595 -1 458 +Encoding: 65595 -1 457 GlifName: uni0926_uni094D__uni0927.pres Width: 1024 VWidth: 0 @@ -17333,7 +17314,7 @@ Ligature2: "presPreBaseSubstitutionsinDevanagarilookup0 subtable" uni0926_uni094 EndChar StartChar: uni0926_uni094D_uni092F.pres -Encoding: 65596 -1 459 +Encoding: 65596 -1 458 GlifName: uni0926_uni094D__uni092F_.pres Width: 1024 VWidth: 0 @@ -17382,7 +17363,7 @@ Ligature2: "presPreBaseSubstitutionsinDevanagarilookup0 subtable" uni0926_uni094 EndChar StartChar: uni0926_uni094D_uni0935.pres -Encoding: 65597 -1 460 +Encoding: 65597 -1 459 GlifName: uni0926_uni094D__uni0935.pres Width: 1024 VWidth: 0 @@ -17441,7 +17422,7 @@ Ligature2: "presPreBaseSubstitutionsinDevanagarilookup0 subtable" uni0926_uni094 EndChar StartChar: uni0927 -Encoding: 2343 2343 461 +Encoding: 2343 2343 460 GlifName: uni0927 Width: 1024 VWidth: 0 @@ -17489,7 +17470,7 @@ EndSplineSet EndChar StartChar: uni0927_uni0930_uni094D.vatu -Encoding: 65598 -1 462 +Encoding: 65598 -1 461 GlifName: uni0927_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -17543,7 +17524,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0927 uni0930_uni09 EndChar StartChar: uni0927_uni094D.half -Encoding: 65599 -1 463 +Encoding: 65599 -1 462 GlifName: uni0927_uni094D_.half Width: 1024 VWidth: 0 @@ -17582,7 +17563,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0927 uni094D EndChar StartChar: uni0927_uni094D.haln -Encoding: 65600 -1 464 +Encoding: 65600 -1 463 GlifName: uni0927_uni094D_.haln Width: 1024 VWidth: 0 @@ -17641,7 +17622,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0927 uni094D EndChar StartChar: uni0928 -Encoding: 2344 2344 465 +Encoding: 2344 2344 464 GlifName: uni0928 Width: 1024 VWidth: 0 @@ -17674,7 +17655,7 @@ EndSplineSet EndChar StartChar: uni0928_uni0930_uni094D.vatu -Encoding: 65601 -1 466 +Encoding: 65601 -1 465 GlifName: uni0928_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -17713,7 +17694,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0928 uni0930_uni09 EndChar StartChar: uni0928_uni094D.half -Encoding: 65602 -1 467 +Encoding: 65602 -1 466 GlifName: uni0928_uni094D_.half Width: 1024 VWidth: 0 @@ -17742,7 +17723,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0928 uni094D EndChar StartChar: uni0928_uni094D.haln -Encoding: 65603 -1 468 +Encoding: 65603 -1 467 GlifName: uni0928_uni094D_.haln Width: 1024 VWidth: 0 @@ -17786,7 +17767,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0928 uni094D EndChar StartChar: uni0929 -Encoding: 2345 2345 469 +Encoding: 2345 2345 468 GlifName: uni0929 Width: 1024 VWidth: 0 @@ -17825,7 +17806,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0928 uni093C EndChar StartChar: uni0929_uni0930_uni094D.vatu -Encoding: 65604 -1 470 +Encoding: 65604 -1 469 GlifName: uni0929_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -17869,7 +17850,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0929 uni0930_uni09 EndChar StartChar: uni0929_uni094D.half -Encoding: 65605 -1 471 +Encoding: 65605 -1 470 GlifName: uni0929_uni094D_.half Width: 1024 VWidth: 0 @@ -17903,7 +17884,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0929 uni094D EndChar StartChar: uni0929_uni094D.haln -Encoding: 65606 -1 472 +Encoding: 65606 -1 471 GlifName: uni0929_uni094D_.haln Width: 1024 VWidth: 0 @@ -17952,7 +17933,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0929 uni094D EndChar StartChar: uni092A -Encoding: 2346 2346 473 +Encoding: 2346 2346 472 GlifName: uni092A_ Width: 1024 VWidth: 0 @@ -17985,7 +17966,7 @@ EndSplineSet EndChar StartChar: uni092A_uni0930_uni094D.vatu -Encoding: 65607 -1 474 +Encoding: 65607 -1 473 GlifName: uni092A__uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -18024,7 +18005,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni092A uni0930_uni09 EndChar StartChar: uni092A_uni094D.half -Encoding: 65608 -1 475 +Encoding: 65608 -1 474 GlifName: uni092A__uni094D_.half Width: 1024 VWidth: 0 @@ -18053,7 +18034,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni092A uni094D EndChar StartChar: uni092A_uni094D.haln -Encoding: 65609 -1 476 +Encoding: 65609 -1 475 GlifName: uni092A__uni094D_.haln Width: 1024 VWidth: 0 @@ -18097,7 +18078,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni092A uni094D EndChar StartChar: uni092B -Encoding: 2347 2347 477 +Encoding: 2347 2347 476 GlifName: uni092B_ Width: 1024 VWidth: 0 @@ -18135,7 +18116,7 @@ EndSplineSet EndChar StartChar: uni092B_uni0930_uni094D.vatu -Encoding: 65610 -1 478 +Encoding: 65610 -1 477 GlifName: uni092B__uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -18179,7 +18160,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni092B uni0930_uni09 EndChar StartChar: uni092B_uni094D.half -Encoding: 65611 -1 479 +Encoding: 65611 -1 478 GlifName: uni092B__uni094D_.half Width: 1024 VWidth: 0 @@ -18213,7 +18194,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni092B uni094D EndChar StartChar: uni092B_uni094D.haln -Encoding: 65612 -1 480 +Encoding: 65612 -1 479 GlifName: uni092B__uni094D_.haln Width: 1024 VWidth: 0 @@ -18262,7 +18243,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni092B uni094D EndChar StartChar: uni092C -Encoding: 2348 2348 481 +Encoding: 2348 2348 480 GlifName: uni092C_ Width: 1024 VWidth: 0 @@ -18305,7 +18286,7 @@ EndSplineSet EndChar StartChar: uni092C_uni0930_uni094D.vatu -Encoding: 65613 -1 482 +Encoding: 65613 -1 481 GlifName: uni092C__uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -18354,7 +18335,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni092C uni0930_uni09 EndChar StartChar: uni092C_uni094D.half -Encoding: 65614 -1 483 +Encoding: 65614 -1 482 GlifName: uni092C__uni094D_.half Width: 1024 VWidth: 0 @@ -18393,7 +18374,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni092C uni094D EndChar StartChar: uni092C_uni094D.haln -Encoding: 65615 -1 484 +Encoding: 65615 -1 483 GlifName: uni092C__uni094D_.haln Width: 1024 VWidth: 0 @@ -18447,7 +18428,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni092C uni094D EndChar StartChar: uni092D -Encoding: 2349 2349 485 +Encoding: 2349 2349 484 GlifName: uni092D_ Width: 1024 VWidth: 0 @@ -18500,7 +18481,7 @@ EndSplineSet EndChar StartChar: uni092D_uni0930_uni094D.vatu -Encoding: 65616 -1 486 +Encoding: 65616 -1 485 GlifName: uni092D__uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -18559,7 +18540,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni092D uni0930_uni09 EndChar StartChar: uni092D_uni094D.half -Encoding: 65617 -1 487 +Encoding: 65617 -1 486 GlifName: uni092D__uni094D_.half Width: 1024 VWidth: 0 @@ -18608,7 +18589,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni092D uni094D EndChar StartChar: uni092D_uni094D.haln -Encoding: 65618 -1 488 +Encoding: 65618 -1 487 GlifName: uni092D__uni094D_.haln Width: 1024 VWidth: 0 @@ -18672,7 +18653,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni092D uni094D EndChar StartChar: uni092E -Encoding: 2350 2350 489 +Encoding: 2350 2350 488 GlifName: uni092E_ Width: 1024 VWidth: 0 @@ -18715,7 +18696,7 @@ EndSplineSet EndChar StartChar: uni092E_uni0930_uni094D.vatu -Encoding: 65619 -1 490 +Encoding: 65619 -1 489 GlifName: uni092E__uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -18764,7 +18745,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni092E uni0930_uni09 EndChar StartChar: uni092E_uni094D.half -Encoding: 65620 -1 491 +Encoding: 65620 -1 490 GlifName: uni092E__uni094D_.half Width: 1024 VWidth: 0 @@ -18803,7 +18784,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni092E uni094D EndChar StartChar: uni092E_uni094D.haln -Encoding: 65621 -1 492 +Encoding: 65621 -1 491 GlifName: uni092E__uni094D_.haln Width: 1024 VWidth: 0 @@ -18857,7 +18838,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni092E uni094D EndChar StartChar: uni092F -Encoding: 2351 2351 493 +Encoding: 2351 2351 492 GlifName: uni092F_ Width: 1024 VWidth: 0 @@ -18895,7 +18876,7 @@ EndSplineSet EndChar StartChar: uni092F_uni0930_uni094D.vatu -Encoding: 65622 -1 494 +Encoding: 65622 -1 493 GlifName: uni092F__uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -18939,7 +18920,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni092F uni0930_uni09 EndChar StartChar: uni092F_uni094D.half -Encoding: 65623 -1 495 +Encoding: 65623 -1 494 GlifName: uni092F__uni094D_.half Width: 1024 VWidth: 0 @@ -18973,7 +18954,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni092F uni094D EndChar StartChar: uni092F_uni094D.haln -Encoding: 65624 -1 496 +Encoding: 65624 -1 495 GlifName: uni092F__uni094D_.haln Width: 1024 VWidth: 0 @@ -19022,7 +19003,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni092F uni094D EndChar StartChar: uni0930 -Encoding: 2352 2352 497 +Encoding: 2352 2352 496 GlifName: uni0930 Width: 1024 VWidth: 0 @@ -19055,7 +19036,7 @@ EndSplineSet EndChar StartChar: uni0930_uni0930_uni094D.vatu -Encoding: 65625 -1 498 +Encoding: 65625 -1 497 GlifName: uni0930_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -19094,7 +19075,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0930 uni0930_uni09 EndChar StartChar: uni0930_uni0941.blws -Encoding: 65626 -1 499 +Encoding: 65626 -1 498 GlifName: uni0930_uni0941.blws Width: 1024 VWidth: 0 @@ -19143,7 +19124,7 @@ Ligature2: "blwsBelowBaseSubstitutionsinDevanagarilookup12 subtable" uni0930 uni EndChar StartChar: uni0930_uni0942.blws -Encoding: 65627 -1 500 +Encoding: 65627 -1 499 GlifName: uni0930_uni0942.blws Width: 1024 VWidth: 0 @@ -19196,36 +19177,8 @@ EndSplineSet Ligature2: "blwsBelowBaseSubstitutionsinDevanagarilookup12 subtable" uni0930 uni0942 EndChar -StartChar: uni0930_uni094D.abvs -Encoding: 65628 -1 501 -GlifName: uni0930_uni094D_.abvs -Width: 1024 -VWidth: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet --16 1548 m 257 - 182 1548 l 257 - 182 1871 l 257 - -16 1871 l 257 - -16 1548 l 257 -244 2142 m 257 - 244 1942 l 257 - 572 1942 l 257 - 572 2142 l 257 - 244 2142 l 257 -244 2142 m 257 - -17 1869 l 257 - 181 1869 l 257 - 244 1942 l 257 - 244 2142 l 257 -EndSplineSet -EndChar - StartChar: uni0930_uni094D.blwf -Encoding: 65629 -1 502 +Encoding: 65629 -1 500 GlifName: uni0930_uni094D_.blwf Width: 1024 VWidth: 0 @@ -19254,7 +19207,7 @@ Ligature2: "blwfBelowBaseFormsinDevanagarilookup0 subtable" uni094D uni0930 EndChar StartChar: uni0930_uni094D.half -Encoding: 65630 -1 503 +Encoding: 65630 -1 501 GlifName: uni0930_uni094D_.half Width: 1024 VWidth: 0 @@ -19289,7 +19242,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0930 uni094D EndChar StartChar: uni0930_uni094D.haln -Encoding: 65631 -1 504 +Encoding: 65631 -1 502 GlifName: uni0930_uni094D_.haln Width: 1024 VWidth: 0 @@ -19333,7 +19286,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0930 uni094D EndChar StartChar: uni0930_uni094D.rphf -Encoding: 65632 -1 505 +Encoding: 65632 -1 503 GlifName: uni0930_uni094D_.rphf Width: 1024 VWidth: 0 @@ -19366,26 +19319,8 @@ EndSplineSet Ligature2: "rphfRephForminDevanagarilookup0 subtable" uni0930 uni094D EndChar -StartChar: uni0930_uni094D.vatu -Encoding: 65633 -1 506 -GlifName: uni0930_uni094D_.vatu -Width: 1024 -VWidth: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet --19 0 m 257 - 238 0 l 257 - 578 215 l 257 - 578 416 l 257 - -19 0 l 257 -EndSplineSet -EndChar - StartChar: uni0931 -Encoding: 2353 2353 507 +Encoding: 2353 2353 504 GlifName: uni0931 Width: 1024 VWidth: 0 @@ -19424,7 +19359,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0930 uni093C EndChar StartChar: uni0931_uni0930_uni094D.vatu -Encoding: 65634 -1 508 +Encoding: 65634 -1 505 GlifName: uni0931_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -19468,7 +19403,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0931 uni0930_uni09 EndChar StartChar: uni0931_uni094D.haln -Encoding: 65635 -1 509 +Encoding: 65635 -1 506 GlifName: uni0931_uni094D_.haln Width: 1024 VWidth: 0 @@ -19517,7 +19452,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0931 uni094D EndChar StartChar: uni0932 -Encoding: 2354 2354 510 +Encoding: 2354 2354 507 GlifName: uni0932 Width: 1024 VWidth: 0 @@ -19555,7 +19490,7 @@ EndSplineSet EndChar StartChar: uni0932_uni0930_uni094D.vatu -Encoding: 65636 -1 511 +Encoding: 65636 -1 508 GlifName: uni0932_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -19599,7 +19534,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0932 uni0930_uni09 EndChar StartChar: uni0932_uni094D.half -Encoding: 65637 -1 512 +Encoding: 65637 -1 509 GlifName: uni0932_uni094D_.half Width: 1024 VWidth: 0 @@ -19633,7 +19568,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0932 uni094D EndChar StartChar: uni0932_uni094D.haln -Encoding: 65638 -1 513 +Encoding: 65638 -1 510 GlifName: uni0932_uni094D_.haln Width: 1024 VWidth: 0 @@ -19682,7 +19617,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0932 uni094D EndChar StartChar: uni0933 -Encoding: 2355 2355 514 +Encoding: 2355 2355 511 GlifName: uni0933 Width: 1024 VWidth: 0 @@ -19725,7 +19660,7 @@ EndSplineSet EndChar StartChar: uni0933_uni0930_uni094D.vatu -Encoding: 65639 -1 515 +Encoding: 65639 -1 512 GlifName: uni0933_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -19779,7 +19714,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0933 uni0930_uni09 EndChar StartChar: uni0933_uni094D.half -Encoding: 65640 -1 516 +Encoding: 65640 -1 513 GlifName: uni0933_uni094D_.half Width: 1024 VWidth: 0 @@ -19823,7 +19758,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0933 uni094D EndChar StartChar: uni0933_uni094D.haln -Encoding: 65641 -1 517 +Encoding: 65641 -1 514 GlifName: uni0933_uni094D_.haln Width: 1024 VWidth: 0 @@ -19877,7 +19812,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0933 uni094D EndChar StartChar: uni0934 -Encoding: 2356 2356 518 +Encoding: 2356 2356 515 GlifName: uni0934 Width: 1024 VWidth: 0 @@ -19926,7 +19861,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0933 uni093C EndChar StartChar: uni0934_uni0930_uni094D.vatu -Encoding: 65642 -1 519 +Encoding: 65642 -1 516 GlifName: uni0934_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -19985,7 +19920,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0934 uni0930_uni09 EndChar StartChar: uni0934_uni094D.half -Encoding: 65643 -1 520 +Encoding: 65643 -1 517 GlifName: uni0934_uni094D_.half Width: 1024 VWidth: 0 @@ -20034,7 +19969,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0934 uni094D EndChar StartChar: uni0934_uni094D.haln -Encoding: 65644 -1 521 +Encoding: 65644 -1 518 GlifName: uni0934_uni094D_.haln Width: 1024 VWidth: 0 @@ -20093,7 +20028,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0934 uni094D EndChar StartChar: uni0935 -Encoding: 2357 2357 522 +Encoding: 2357 2357 519 GlifName: uni0935 Width: 1024 VWidth: 0 @@ -20131,7 +20066,7 @@ EndSplineSet EndChar StartChar: uni0935_uni0930_uni094D.vatu -Encoding: 65645 -1 523 +Encoding: 65645 -1 520 GlifName: uni0935_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -20175,7 +20110,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0935 uni0930_uni09 EndChar StartChar: uni0935_uni094D.half -Encoding: 65646 -1 524 +Encoding: 65646 -1 521 GlifName: uni0935_uni094D_.half Width: 1024 VWidth: 0 @@ -20209,7 +20144,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0935 uni094D EndChar StartChar: uni0935_uni094D.haln -Encoding: 65647 -1 525 +Encoding: 65647 -1 522 GlifName: uni0935_uni094D_.haln Width: 1024 VWidth: 0 @@ -20258,7 +20193,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0935 uni094D EndChar StartChar: uni0936 -Encoding: 2358 2358 526 +Encoding: 2358 2358 523 GlifName: uni0936 Width: 1024 VWidth: 0 @@ -20306,7 +20241,7 @@ EndSplineSet EndChar StartChar: uni0936_uni0930_uni094D.vatu -Encoding: 65648 -1 527 +Encoding: 65648 -1 524 GlifName: uni0936_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -20360,7 +20295,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0936 uni0930_uni09 EndChar StartChar: uni0936_uni094D.half -Encoding: 65649 -1 528 +Encoding: 65649 -1 525 GlifName: uni0936_uni094D_.half Width: 1024 VWidth: 0 @@ -20399,7 +20334,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0936 uni094D EndChar StartChar: uni0936_uni094D.haln -Encoding: 65650 -1 529 +Encoding: 65650 -1 526 GlifName: uni0936_uni094D_.haln Width: 1024 VWidth: 0 @@ -20458,7 +20393,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0936 uni094D EndChar StartChar: uni0937 -Encoding: 2359 2359 530 +Encoding: 2359 2359 527 GlifName: uni0937 Width: 1024 VWidth: 0 @@ -20496,7 +20431,7 @@ EndSplineSet EndChar StartChar: uni0937_uni0930_uni094D.vatu -Encoding: 65651 -1 531 +Encoding: 65651 -1 528 GlifName: uni0937_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -20540,7 +20475,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0937 uni0930_uni09 EndChar StartChar: uni0937_uni094D.half -Encoding: 65652 -1 532 +Encoding: 65652 -1 529 GlifName: uni0937_uni094D_.half Width: 1024 VWidth: 0 @@ -20574,7 +20509,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0937 uni094D EndChar StartChar: uni0937_uni094D.haln -Encoding: 65653 -1 533 +Encoding: 65653 -1 530 GlifName: uni0937_uni094D_.haln Width: 1024 VWidth: 0 @@ -20623,7 +20558,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0937 uni094D EndChar StartChar: uni0938 -Encoding: 2360 2360 534 +Encoding: 2360 2360 531 GlifName: uni0938 Width: 1024 VWidth: 0 @@ -20661,7 +20596,7 @@ EndSplineSet EndChar StartChar: uni0938_uni0930_uni094D.vatu -Encoding: 65654 -1 535 +Encoding: 65654 -1 532 GlifName: uni0938_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -20705,7 +20640,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0938 uni0930_uni09 EndChar StartChar: uni0938_uni094D.half -Encoding: 65655 -1 536 +Encoding: 65655 -1 533 GlifName: uni0938_uni094D_.half Width: 1024 VWidth: 0 @@ -20739,7 +20674,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0938 uni094D EndChar StartChar: uni0938_uni094D.haln -Encoding: 65656 -1 537 +Encoding: 65656 -1 534 GlifName: uni0938_uni094D_.haln Width: 1024 VWidth: 0 @@ -20788,7 +20723,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0938 uni094D EndChar StartChar: uni0939 -Encoding: 2361 2361 538 +Encoding: 2361 2361 535 GlifName: uni0939 Width: 1024 VWidth: 0 @@ -20841,7 +20776,7 @@ EndSplineSet EndChar StartChar: uni0939_uni0930_uni094D.vatu -Encoding: 65657 -1 539 +Encoding: 65657 -1 536 GlifName: uni0939_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -20900,7 +20835,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0939 uni0930_uni09 EndChar StartChar: uni0939_uni0943.blws -Encoding: 65658 -1 540 +Encoding: 65658 -1 537 GlifName: uni0939_uni0943.blws Width: 1024 VWidth: 0 @@ -20959,7 +20894,7 @@ Ligature2: "blwsBelowBaseSubstitutionsinDevanagarilookup12 subtable" uni0939 uni EndChar StartChar: uni0939_uni094D.half -Encoding: 65659 -1 541 +Encoding: 65659 -1 538 GlifName: uni0939_uni094D_.half Width: 1024 VWidth: 0 @@ -21008,7 +20943,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0939 uni094D EndChar StartChar: uni0939_uni094D.haln -Encoding: 65660 -1 542 +Encoding: 65660 -1 539 GlifName: uni0939_uni094D_.haln Width: 1024 VWidth: 0 @@ -21072,7 +21007,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0939 uni094D EndChar StartChar: uni0939_uni094D_uni092E.pres -Encoding: 65661 -1 543 +Encoding: 65661 -1 540 GlifName: uni0939_uni094D__uni092E_.pres Width: 1024 VWidth: 0 @@ -21146,7 +21081,7 @@ Ligature2: "presPreBaseSubstitutionsinDevanagarilookup0 subtable" uni0939_uni094 EndChar StartChar: uni093A -Encoding: 2362 2362 544 +Encoding: 2362 2362 541 GlifName: uni093A_ Width: 1024 VWidth: 0 @@ -21164,7 +21099,7 @@ EndSplineSet EndChar StartChar: uni093B -Encoding: 2363 2363 545 +Encoding: 2363 2363 542 GlifName: uni093B_ Width: 1024 VWidth: 0 @@ -21187,7 +21122,7 @@ EndSplineSet EndChar StartChar: uni093C -Encoding: 2364 2364 546 +Encoding: 2364 2364 543 GlifName: uni093C_ Width: 1024 VWidth: 0 @@ -21205,7 +21140,7 @@ EndSplineSet EndChar StartChar: uni093D -Encoding: 2365 2365 547 +Encoding: 2365 2365 544 GlifName: uni093D_ Width: 1024 VWidth: 0 @@ -21238,7 +21173,7 @@ EndSplineSet EndChar StartChar: uni093E -Encoding: 2366 2366 548 +Encoding: 2366 2366 545 GlifName: uni093E_ Width: 1024 VWidth: 0 @@ -21261,7 +21196,7 @@ EndSplineSet EndChar StartChar: uni093E_uni0930_uni094D.abvs -Encoding: 65662 -1 549 +Encoding: 65662 -1 546 GlifName: uni093E__uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -21300,7 +21235,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni093E uni0 EndChar StartChar: uni093F -Encoding: 2367 2367 550 +Encoding: 2367 2367 547 GlifName: uni093F_ Width: 1024 VWidth: 0 @@ -21333,7 +21268,7 @@ EndSplineSet EndChar StartChar: uni0940 -Encoding: 2368 2368 551 +Encoding: 2368 2368 548 GlifName: uni0940 Width: 1024 VWidth: 0 @@ -21366,7 +21301,7 @@ EndSplineSet EndChar StartChar: uni0940_uni0902.abvs -Encoding: 65663 -1 552 +Encoding: 65663 -1 549 GlifName: uni0940_uni0902.abvs Width: 1024 VWidth: 0 @@ -21405,7 +21340,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0940 uni0 EndChar StartChar: uni0940_uni0930_uni094D.abvs -Encoding: 65664 -1 553 +Encoding: 65664 -1 550 GlifName: uni0940_uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -21454,7 +21389,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0940 uni0 EndChar StartChar: uni0941 -Encoding: 2369 2369 554 +Encoding: 2369 2369 551 GlifName: uni0941 Width: 0 VWidth: 0 @@ -21488,7 +21423,7 @@ EndSplineSet EndChar StartChar: uni0942 -Encoding: 2370 2370 555 +Encoding: 2370 2370 552 GlifName: uni0942 Width: 0 VWidth: 0 @@ -21522,7 +21457,7 @@ EndSplineSet EndChar StartChar: uni0943 -Encoding: 2371 2371 556 +Encoding: 2371 2371 553 GlifName: uni0943 Width: 0 VWidth: 0 @@ -21551,7 +21486,7 @@ EndSplineSet EndChar StartChar: uni0944 -Encoding: 2372 2372 557 +Encoding: 2372 2372 554 GlifName: uni0944 Width: 0 VWidth: 0 @@ -21585,7 +21520,7 @@ EndSplineSet EndChar StartChar: uni0945 -Encoding: 2373 2373 558 +Encoding: 2373 2373 555 GlifName: uni0945 Width: 1024 VWidth: 0 @@ -21618,7 +21553,7 @@ EndSplineSet EndChar StartChar: uni0945_uni0902.abvs -Encoding: 65673 -1 559 +Encoding: 65673 -1 556 GlifName: uni0945_uni0902.abvs Width: 1024 VWidth: 0 @@ -21657,7 +21592,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0945 uni0 EndChar StartChar: uni0945_uni0930_uni094D.abvs -Encoding: 65674 -1 560 +Encoding: 65674 -1 557 GlifName: uni0945_uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -21706,7 +21641,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0945 uni0 EndChar StartChar: uni0946 -Encoding: 2374 2374 561 +Encoding: 2374 2374 558 GlifName: uni0946 Width: 1024 VWidth: 0 @@ -21739,7 +21674,7 @@ EndSplineSet EndChar StartChar: uni0946_uni0902.abvs -Encoding: 65675 -1 562 +Encoding: 65675 -1 559 GlifName: uni0946_uni0902.abvs Width: 1024 VWidth: 0 @@ -21778,7 +21713,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0946 uni0 EndChar StartChar: uni0946_uni0930_uni094D.abvs -Encoding: 65676 -1 563 +Encoding: 65676 -1 560 GlifName: uni0946_uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -21827,7 +21762,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0946 uni0 EndChar StartChar: uni0947 -Encoding: 2375 2375 564 +Encoding: 2375 2375 561 GlifName: uni0947 Width: 1024 VWidth: 0 @@ -21850,7 +21785,7 @@ EndSplineSet EndChar StartChar: uni0947_uni0902.abvs -Encoding: 65677 -1 565 +Encoding: 65677 -1 562 GlifName: uni0947_uni0902.abvs Width: 1024 VWidth: 0 @@ -21879,7 +21814,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0947 uni0 EndChar StartChar: uni0947_uni0930_uni094D.abvs -Encoding: 65678 -1 566 +Encoding: 65678 -1 563 GlifName: uni0947_uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -21918,7 +21853,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0947 uni0 EndChar StartChar: uni0948 -Encoding: 2376 2376 567 +Encoding: 2376 2376 564 GlifName: uni0948 Width: 1024 VWidth: 0 @@ -21946,7 +21881,7 @@ EndSplineSet EndChar StartChar: uni0948_uni0902.abvs -Encoding: 65679 -1 568 +Encoding: 65679 -1 565 GlifName: uni0948_uni0902.abvs Width: 1024 VWidth: 0 @@ -21980,7 +21915,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0948 uni0 EndChar StartChar: uni0948_uni0930_uni094D.abvs -Encoding: 65680 -1 569 +Encoding: 65680 -1 566 GlifName: uni0948_uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -22024,7 +21959,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0948 uni0 EndChar StartChar: uni0949 -Encoding: 2377 2377 570 +Encoding: 2377 2377 567 GlifName: uni0949 Width: 1024 VWidth: 0 @@ -22062,7 +21997,7 @@ EndSplineSet EndChar StartChar: uni0949_uni0902.abvs -Encoding: 65681 -1 571 +Encoding: 65681 -1 568 GlifName: uni0949_uni0902.abvs Width: 1024 VWidth: 0 @@ -22106,7 +22041,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0949 uni0 EndChar StartChar: uni0949_uni0930_uni094D.abvs -Encoding: 65682 -1 572 +Encoding: 65682 -1 569 GlifName: uni0949_uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -22160,7 +22095,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0949 uni0 EndChar StartChar: uni094A -Encoding: 2378 2378 573 +Encoding: 2378 2378 570 GlifName: uni094A_ Width: 1024 VWidth: 0 @@ -22198,7 +22133,7 @@ EndSplineSet EndChar StartChar: uni094A_uni0902.abvs -Encoding: 65683 -1 574 +Encoding: 65683 -1 571 GlifName: uni094A__uni0902.abvs Width: 1024 VWidth: 0 @@ -22242,7 +22177,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094A uni0 EndChar StartChar: uni094A_uni0930_uni094D.abvs -Encoding: 65684 -1 575 +Encoding: 65684 -1 572 GlifName: uni094A__uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -22296,7 +22231,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094A uni0 EndChar StartChar: uni094B -Encoding: 2379 2379 576 +Encoding: 2379 2379 573 GlifName: uni094B_ Width: 1024 VWidth: 0 @@ -22324,7 +22259,7 @@ EndSplineSet EndChar StartChar: uni094B_uni0902.abvs -Encoding: 65685 -1 577 +Encoding: 65685 -1 574 GlifName: uni094B__uni0902.abvs Width: 1024 VWidth: 0 @@ -22358,7 +22293,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094B uni0 EndChar StartChar: uni094B_uni0930_uni094D.abvs -Encoding: 65686 -1 578 +Encoding: 65686 -1 575 GlifName: uni094B__uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -22402,7 +22337,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094B uni0 EndChar StartChar: uni094C -Encoding: 2380 2380 579 +Encoding: 2380 2380 576 GlifName: uni094C_ Width: 1024 VWidth: 0 @@ -22435,7 +22370,7 @@ EndSplineSet EndChar StartChar: uni094C_uni0902.abvs -Encoding: 65687 -1 580 +Encoding: 65687 -1 577 GlifName: uni094C__uni0902.abvs Width: 1024 VWidth: 0 @@ -22474,7 +22409,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094C uni0 EndChar StartChar: uni094C_uni0930_uni094D.abvs -Encoding: 65688 -1 581 +Encoding: 65688 -1 578 GlifName: uni094C__uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -22523,7 +22458,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094C uni0 EndChar StartChar: uni094D -Encoding: 2381 2381 582 +Encoding: 2381 2381 579 GlifName: uni094D_ Width: 0 VWidth: 0 @@ -22547,7 +22482,7 @@ EndSplineSet EndChar StartChar: uni094E -Encoding: 2382 2382 583 +Encoding: 2382 2382 580 GlifName: uni094E_ Width: 1024 VWidth: 0 @@ -22570,7 +22505,7 @@ EndSplineSet EndChar StartChar: uni094F -Encoding: 2383 2383 584 +Encoding: 2383 2383 581 GlifName: uni094F_ Width: 1024 VWidth: 0 @@ -22623,7 +22558,7 @@ EndSplineSet EndChar StartChar: uni0950 -Encoding: 2384 2384 585 +Encoding: 2384 2384 582 GlifName: uni0950 Width: 1024 VWidth: 0 @@ -22681,7 +22616,7 @@ EndSplineSet EndChar StartChar: uni0951 -Encoding: 2385 2385 586 +Encoding: 2385 2385 583 GlifName: uni0951 Width: 0 VWidth: 0 @@ -22700,7 +22635,7 @@ EndSplineSet EndChar StartChar: uni0952 -Encoding: 2386 2386 587 +Encoding: 2386 2386 584 GlifName: uni0952 Width: 0 VWidth: 0 @@ -22719,7 +22654,7 @@ EndSplineSet EndChar StartChar: uni0953 -Encoding: 2387 2387 588 +Encoding: 2387 2387 585 GlifName: uni0953 Width: 0 VWidth: 0 @@ -22738,7 +22673,7 @@ EndSplineSet EndChar StartChar: uni0954 -Encoding: 2388 2388 589 +Encoding: 2388 2388 586 GlifName: uni0954 Width: 0 VWidth: 0 @@ -22757,7 +22692,7 @@ EndSplineSet EndChar StartChar: uni0955 -Encoding: 2389 2389 590 +Encoding: 2389 2389 587 GlifName: uni0955 Width: 1024 VWidth: 0 @@ -22795,7 +22730,7 @@ EndSplineSet EndChar StartChar: uni0956 -Encoding: 2390 2390 591 +Encoding: 2390 2390 588 GlifName: uni0956 Width: 1024 VWidth: 0 @@ -22828,7 +22763,7 @@ EndSplineSet EndChar StartChar: uni0957 -Encoding: 2391 2391 592 +Encoding: 2391 2391 589 GlifName: uni0957 Width: 1024 VWidth: 0 @@ -22876,7 +22811,7 @@ EndSplineSet EndChar StartChar: uni0958 -Encoding: 2392 2392 593 +Encoding: 2392 2392 590 GlifName: uni0958 Width: 1024 VWidth: 0 @@ -22930,7 +22865,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0915 uni093C EndChar StartChar: uni0958_uni0930_uni094D.vatu -Encoding: 65689 -1 594 +Encoding: 65689 -1 591 GlifName: uni0958_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -22989,7 +22924,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0958 uni0930_uni09 EndChar StartChar: uni0958_uni094D.half -Encoding: 65690 -1 595 +Encoding: 65690 -1 592 GlifName: uni0958_uni094D_.half Width: 1024 VWidth: 0 @@ -23038,7 +22973,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0958 uni094D EndChar StartChar: uni0958_uni094D.haln -Encoding: 65691 -1 596 +Encoding: 65691 -1 593 GlifName: uni0958_uni094D_.haln Width: 1024 VWidth: 0 @@ -23102,7 +23037,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0958 uni094D EndChar StartChar: uni0959 -Encoding: 2393 2393 597 +Encoding: 2393 2393 594 GlifName: uni0959 Width: 1024 VWidth: 0 @@ -23161,7 +23096,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0916 uni093C EndChar StartChar: uni0959_uni0930_uni094D.vatu -Encoding: 65692 -1 598 +Encoding: 65692 -1 595 GlifName: uni0959_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -23225,7 +23160,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0959 uni0930_uni09 EndChar StartChar: uni0959_uni094D.half -Encoding: 65693 -1 599 +Encoding: 65693 -1 596 GlifName: uni0959_uni094D_.half Width: 1024 VWidth: 0 @@ -23279,7 +23214,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0959 uni094D EndChar StartChar: uni0959_uni094D.haln -Encoding: 65694 -1 600 +Encoding: 65694 -1 597 GlifName: uni0959_uni094D_.haln Width: 1024 VWidth: 0 @@ -23348,7 +23283,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0959 uni094D EndChar StartChar: uni095A -Encoding: 2394 2394 601 +Encoding: 2394 2394 598 GlifName: uni095A_ Width: 1024 VWidth: 0 @@ -23392,7 +23327,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0917 uni093C EndChar StartChar: uni095A_uni0930_uni094D.vatu -Encoding: 65695 -1 602 +Encoding: 65695 -1 599 GlifName: uni095A__uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -23441,7 +23376,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095A uni0930_uni09 EndChar StartChar: uni095A_uni094D.half -Encoding: 65696 -1 603 +Encoding: 65696 -1 600 GlifName: uni095A__uni094D_.half Width: 1024 VWidth: 0 @@ -23480,7 +23415,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni095A uni094D EndChar StartChar: uni095A_uni094D.haln -Encoding: 65697 -1 604 +Encoding: 65697 -1 601 GlifName: uni095A__uni094D_.haln Width: 1024 VWidth: 0 @@ -23534,7 +23469,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095A uni094D EndChar StartChar: uni095B -Encoding: 2395 2395 605 +Encoding: 2395 2395 602 GlifName: uni095B_ Width: 1024 VWidth: 0 @@ -23583,7 +23518,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni091C uni093C EndChar StartChar: uni095B_uni0930_uni094D.vatu -Encoding: 65698 -1 606 +Encoding: 65698 -1 603 GlifName: uni095B__uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -23637,7 +23572,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095B uni0930_uni09 EndChar StartChar: uni095B_uni094D.half -Encoding: 65699 -1 607 +Encoding: 65699 -1 604 GlifName: uni095B__uni094D_.half Width: 1024 VWidth: 0 @@ -23681,7 +23616,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni095B uni094D EndChar StartChar: uni095B_uni094D.haln -Encoding: 65700 -1 608 +Encoding: 65700 -1 605 GlifName: uni095B__uni094D_.haln Width: 1024 VWidth: 0 @@ -23740,7 +23675,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095B uni094D EndChar StartChar: uni095C -Encoding: 2396 2396 609 +Encoding: 2396 2396 606 GlifName: uni095C_ Width: 1024 VWidth: 0 @@ -23799,7 +23734,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0921 uni093C EndChar StartChar: uni095C_uni0930_uni094D.vatu -Encoding: 65701 -1 610 +Encoding: 65701 -1 607 GlifName: uni095C__uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -23868,7 +23803,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095C uni0930_uni09 EndChar StartChar: uni095C_uni094D.haln -Encoding: 65702 -1 611 +Encoding: 65702 -1 608 GlifName: uni095C__uni094D_.haln Width: 1024 VWidth: 0 @@ -23937,7 +23872,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095C uni094D EndChar StartChar: uni095D -Encoding: 2397 2397 612 +Encoding: 2397 2397 609 GlifName: uni095D_ Width: 1024 VWidth: 0 @@ -23991,7 +23926,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0922 uni093C EndChar StartChar: uni095D_uni0930_uni094D.vatu -Encoding: 65703 -1 613 +Encoding: 65703 -1 610 GlifName: uni095D__uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -24055,7 +23990,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095D uni0930_uni09 EndChar StartChar: uni095D_uni094D.haln -Encoding: 65704 -1 614 +Encoding: 65704 -1 611 GlifName: uni095D__uni094D_.haln Width: 1024 VWidth: 0 @@ -24119,7 +24054,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095D uni094D EndChar StartChar: uni095E -Encoding: 2398 2398 615 +Encoding: 2398 2398 612 GlifName: uni095E_ Width: 1024 VWidth: 0 @@ -24163,7 +24098,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni092B uni093C EndChar StartChar: uni095E_uni0930_uni094D.vatu -Encoding: 65705 -1 616 +Encoding: 65705 -1 613 GlifName: uni095E__uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -24212,7 +24147,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095E uni0930_uni09 EndChar StartChar: uni095E_uni094D.half -Encoding: 65706 -1 617 +Encoding: 65706 -1 614 GlifName: uni095E__uni094D_.half Width: 1024 VWidth: 0 @@ -24251,7 +24186,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni095E uni094D EndChar StartChar: uni095E_uni094D.haln -Encoding: 65707 -1 618 +Encoding: 65707 -1 615 GlifName: uni095E__uni094D_.haln Width: 1024 VWidth: 0 @@ -24305,7 +24240,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095E uni094D EndChar StartChar: uni095F -Encoding: 2399 2399 619 +Encoding: 2399 2399 616 GlifName: uni095F_ Width: 1024 VWidth: 0 @@ -24349,7 +24284,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni092F uni093C EndChar StartChar: uni095F_uni0930_uni094D.vatu -Encoding: 65708 -1 620 +Encoding: 65708 -1 617 GlifName: uni095F__uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -24398,7 +24333,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095F uni0930_uni09 EndChar StartChar: uni095F_uni094D.half -Encoding: 65709 -1 621 +Encoding: 65709 -1 618 GlifName: uni095F__uni094D_.half Width: 1024 VWidth: 0 @@ -24452,7 +24387,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni095F uni094D EndChar StartChar: uni095F_uni094D.haln -Encoding: 65710 -1 622 +Encoding: 65710 -1 619 GlifName: uni095F__uni094D_.haln Width: 1024 VWidth: 0 @@ -24506,7 +24441,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095F uni094D EndChar StartChar: uni0960 -Encoding: 2400 2400 623 +Encoding: 2400 2400 620 GlifName: uni0960 Width: 1024 VWidth: 0 @@ -24564,7 +24499,7 @@ EndSplineSet EndChar StartChar: uni0961 -Encoding: 2401 2401 624 +Encoding: 2401 2401 621 GlifName: uni0961 Width: 1024 VWidth: 0 @@ -24617,7 +24552,7 @@ EndSplineSet EndChar StartChar: uni0962 -Encoding: 2402 2402 625 +Encoding: 2402 2402 622 GlifName: uni0962 Width: 1024 VWidth: 0 @@ -24660,7 +24595,7 @@ EndSplineSet EndChar StartChar: uni0963 -Encoding: 2403 2403 626 +Encoding: 2403 2403 623 GlifName: uni0963 Width: 1024 VWidth: 0 @@ -24708,7 +24643,7 @@ EndSplineSet EndChar StartChar: uni0964 -Encoding: 2404 2404 627 +Encoding: 2404 2404 624 GlifName: uni0964 Width: 1024 VWidth: 0 @@ -24726,7 +24661,7 @@ EndSplineSet EndChar StartChar: uni0965 -Encoding: 2405 2405 628 +Encoding: 2405 2405 625 GlifName: uni0965 Width: 1024 VWidth: 0 @@ -24749,7 +24684,7 @@ EndSplineSet EndChar StartChar: uni0966 -Encoding: 2406 2406 629 +Encoding: 2406 2406 626 GlifName: uni0966 Width: 1024 VWidth: 0 @@ -24782,7 +24717,7 @@ EndSplineSet EndChar StartChar: uni0967 -Encoding: 2407 2407 630 +Encoding: 2407 2407 627 GlifName: uni0967 Width: 1024 VWidth: 0 @@ -24815,7 +24750,7 @@ EndSplineSet EndChar StartChar: uni0968 -Encoding: 2408 2408 631 +Encoding: 2408 2408 628 GlifName: uni0968 Width: 1024 VWidth: 0 @@ -24853,7 +24788,7 @@ EndSplineSet EndChar StartChar: uni0969 -Encoding: 2409 2409 632 +Encoding: 2409 2409 629 GlifName: uni0969 Width: 1024 VWidth: 0 @@ -24891,7 +24826,7 @@ EndSplineSet EndChar StartChar: uni096A -Encoding: 2410 2410 633 +Encoding: 2410 2410 630 GlifName: uni096A_ Width: 1024 VWidth: 0 @@ -24939,7 +24874,7 @@ EndSplineSet EndChar StartChar: uni096B -Encoding: 2411 2411 634 +Encoding: 2411 2411 631 GlifName: uni096B_ Width: 1024 VWidth: 0 @@ -24972,7 +24907,7 @@ EndSplineSet EndChar StartChar: uni096C -Encoding: 2412 2412 635 +Encoding: 2412 2412 632 GlifName: uni096C_ Width: 1024 VWidth: 0 @@ -25010,7 +24945,7 @@ EndSplineSet EndChar StartChar: uni096D -Encoding: 2413 2413 636 +Encoding: 2413 2413 633 GlifName: uni096D_ Width: 1024 VWidth: 0 @@ -25048,7 +24983,7 @@ EndSplineSet EndChar StartChar: uni096E -Encoding: 2414 2414 637 +Encoding: 2414 2414 634 GlifName: uni096E_ Width: 1024 VWidth: 0 @@ -25076,7 +25011,7 @@ EndSplineSet EndChar StartChar: uni096F -Encoding: 2415 2415 638 +Encoding: 2415 2415 635 GlifName: uni096F_ Width: 1024 VWidth: 0 @@ -25114,7 +25049,7 @@ EndSplineSet EndChar StartChar: uni0970 -Encoding: 2416 2416 639 +Encoding: 2416 2416 636 GlifName: uni0970 Width: 1024 VWidth: 0 @@ -25132,7 +25067,7 @@ EndSplineSet EndChar StartChar: uni0971 -Encoding: 2417 2417 640 +Encoding: 2417 2417 637 GlifName: uni0971 Width: 1024 VWidth: 0 @@ -25150,7 +25085,7 @@ EndSplineSet EndChar StartChar: uni0972 -Encoding: 2418 2418 641 +Encoding: 2418 2418 638 GlifName: uni0972 Width: 1024 VWidth: 0 @@ -25208,7 +25143,7 @@ EndSplineSet EndChar StartChar: uni0973 -Encoding: 2419 2419 642 +Encoding: 2419 2419 639 GlifName: uni0973 Width: 1024 VWidth: 0 @@ -25256,7 +25191,7 @@ EndSplineSet EndChar StartChar: uni0974 -Encoding: 2420 2420 643 +Encoding: 2420 2420 640 GlifName: uni0974 Width: 1024 VWidth: 0 @@ -25304,7 +25239,7 @@ EndSplineSet EndChar StartChar: uni0975 -Encoding: 2421 2421 644 +Encoding: 2421 2421 641 GlifName: uni0975 Width: 1024 VWidth: 0 @@ -25377,7 +25312,7 @@ EndSplineSet EndChar StartChar: uni0976 -Encoding: 2422 2422 645 +Encoding: 2422 2422 642 GlifName: uni0976 Width: 1024 VWidth: 0 @@ -25435,7 +25370,7 @@ EndSplineSet EndChar StartChar: uni0977 -Encoding: 2423 2423 646 +Encoding: 2423 2423 643 GlifName: uni0977 Width: 1024 VWidth: 0 @@ -25508,7 +25443,7 @@ EndSplineSet EndChar StartChar: uni0978 -Encoding: 2424 2424 647 +Encoding: 2424 2424 644 GlifName: uni0978 Width: 1024 VWidth: 0 @@ -25541,7 +25476,7 @@ EndSplineSet EndChar StartChar: uni0979 -Encoding: 2425 2425 648 +Encoding: 2425 2425 645 GlifName: uni0979 Width: 1024 VWidth: 0 @@ -25599,7 +25534,7 @@ EndSplineSet EndChar StartChar: uni097A -Encoding: 2426 2426 649 +Encoding: 2426 2426 646 GlifName: uni097A_ Width: 1024 VWidth: 0 @@ -25642,7 +25577,7 @@ EndSplineSet EndChar StartChar: uni097B -Encoding: 2427 2427 650 +Encoding: 2427 2427 647 GlifName: uni097B_ Width: 1024 VWidth: 0 @@ -25685,7 +25620,7 @@ EndSplineSet EndChar StartChar: uni097C -Encoding: 2428 2428 651 +Encoding: 2428 2428 648 GlifName: uni097C_ Width: 1024 VWidth: 0 @@ -25733,7 +25668,7 @@ EndSplineSet EndChar StartChar: uni097D -Encoding: 2429 2429 652 +Encoding: 2429 2429 649 GlifName: uni097D_ Width: 1024 VWidth: 0 @@ -25766,7 +25701,7 @@ EndSplineSet EndChar StartChar: uni097E -Encoding: 2430 2430 653 +Encoding: 2430 2430 650 GlifName: uni097E_ Width: 1024 VWidth: 0 @@ -25814,7 +25749,7 @@ EndSplineSet EndChar StartChar: uni097F -Encoding: 2431 2431 654 +Encoding: 2431 2431 651 GlifName: uni097F_ Width: 1024 VWidth: 0 @@ -25862,7 +25797,7 @@ EndSplineSet EndChar StartChar: uni1E0C -Encoding: 7692 7692 655 +Encoding: 7692 7692 652 GlifName: uni1E_0C_ Width: 1024 VWidth: 0 @@ -25875,7 +25810,7 @@ Refer: 19 68 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E0D -Encoding: 7693 7693 656 +Encoding: 7693 7693 653 GlifName: uni1E_0D_ Width: 1024 VWidth: 0 @@ -25888,7 +25823,7 @@ Refer: 160 100 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E34 -Encoding: 7732 7732 657 +Encoding: 7732 7732 654 GlifName: uni1E_34 Width: 1024 VWidth: 0 @@ -25896,12 +25831,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 360 817 N 1 0 0 1 345.5 48 2 +Refer: 359 817 N 1 0 0 1 345.5 48 2 Refer: 56 75 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E35 -Encoding: 7733 7733 658 +Encoding: 7733 7733 655 GlifName: uni1E_35 Width: 1024 VWidth: 0 @@ -25909,17 +25844,17 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 360 817 N 1 0 0 1 335 48 2 -Refer: 225 107 N 1 0 0 1 0 0 3 +Refer: 359 817 N 1 0 0 1 335 48 2 +Refer: 224 107 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E36 -Encoding: 7734 7734 659 +Encoding: 7734 7734 656 GlifName: uni1E_36 Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0 1 -41.5 82 2 @@ -25927,7 +25862,7 @@ Refer: 57 76 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E37 -Encoding: 7735 7735 660 +Encoding: 7735 7735 657 GlifName: uni1E_37 Width: 1024 VWidth: 0 @@ -25936,11 +25871,11 @@ Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0 1 0 91 2 -Refer: 226 108 N 1 0 0 1 0 0 3 +Refer: 225 108 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E38 -Encoding: 7736 7736 661 +Encoding: 7736 7736 658 GlifName: uni1E_38 Width: 1024 VWidth: 0 @@ -25948,12 +25883,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 349 772 N 1 0 0 1 -354 116 2 -Refer: 659 7734 N 1 0 0 1 0 0 3 +Refer: 348 772 N 1 0 0 1 -354 116 2 +Refer: 656 7734 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E39 -Encoding: 7737 7737 662 +Encoding: 7737 7737 659 GlifName: uni1E_39 Width: 1024 VWidth: 0 @@ -25961,12 +25896,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 349 772 N 1 0 0 1 -72 122 2 -Refer: 660 7735 N 1 0 0 1 0 0 3 +Refer: 348 772 N 1 0 0 1 -72 122 2 +Refer: 657 7735 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E3A -Encoding: 7738 7738 663 +Encoding: 7738 7738 660 GlifName: uni1E_3A_ Width: 1024 VWidth: 0 @@ -25974,12 +25909,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 360 817 N 1 0 0 1 -35.5 48 2 +Refer: 359 817 N 1 0 0 1 -35.5 48 2 Refer: 57 76 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E3B -Encoding: 7739 7739 664 +Encoding: 7739 7739 661 GlifName: uni1E_3B_ Width: 1024 VWidth: 0 @@ -25987,12 +25922,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 360 817 N 1 0 0 1 6 57 2 -Refer: 226 108 N 1 0 0 1 0 0 3 +Refer: 359 817 N 1 0 0 1 6 57 2 +Refer: 225 108 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E42 -Encoding: 7746 7746 665 +Encoding: 7746 7746 662 GlifName: uni1E_42 Width: 1024 VWidth: 0 @@ -26005,7 +25940,7 @@ Refer: 62 77 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E43 -Encoding: 7747 7747 666 +Encoding: 7747 7747 663 GlifName: uni1E_43 Width: 1024 VWidth: 0 @@ -26014,11 +25949,11 @@ Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0 1 13 82 2 -Refer: 233 109 N 1 0 0 1 0 0 3 +Refer: 232 109 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E44 -Encoding: 7748 7748 667 +Encoding: 7748 7748 664 GlifName: uni1E_44 Width: 1024 VWidth: 0 @@ -26026,12 +25961,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 352 775 N 1 0 0 1 -20 100 2 +Refer: 351 775 N 1 0 0 1 -20 100 2 Refer: 63 78 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E45 -Encoding: 7749 7749 668 +Encoding: 7749 7749 665 GlifName: uni1E_45 Width: 1024 VWidth: 0 @@ -26039,12 +25974,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 352 775 N 1 0 0 1 -16 -384 2 -Refer: 238 110 N 1 0 0 1 0 0 3 +Refer: 351 775 N 1 0 0 1 -16 -384 2 +Refer: 237 110 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E46 -Encoding: 7750 7750 669 +Encoding: 7750 7750 666 GlifName: uni1E_46 Width: 1024 VWidth: 0 @@ -26057,7 +25992,7 @@ Refer: 63 78 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E47 -Encoding: 7751 7751 670 +Encoding: 7751 7751 667 GlifName: uni1E_47 Width: 1024 VWidth: 0 @@ -26066,11 +26001,11 @@ Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0 1 32 82 2 -Refer: 238 110 N 1 0 0 1 0 0 3 +Refer: 237 110 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E48 -Encoding: 7752 7752 671 +Encoding: 7752 7752 668 GlifName: uni1E_48 Width: 1024 VWidth: 0 @@ -26078,12 +26013,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 360 817 N 1 0 0 1 310 149 2 +Refer: 359 817 N 1 0 0 1 310 149 2 Refer: 63 78 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E49 -Encoding: 7753 7753 672 +Encoding: 7753 7753 669 GlifName: uni1E_49 Width: 1024 VWidth: 0 @@ -26091,12 +26026,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 360 817 N 1 0 0 1 38 48 2 -Refer: 238 110 N 1 0 0 1 0 0 3 +Refer: 359 817 N 1 0 0 1 38 48 2 +Refer: 237 110 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E4C -Encoding: 7756 7756 673 +Encoding: 7756 7756 670 GlifName: uni1E_4C_ Width: 1024 VWidth: 0 @@ -26109,7 +26044,7 @@ Refer: 77 213 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E4D -Encoding: 7757 7757 674 +Encoding: 7757 7757 671 GlifName: uni1E_4D_ Width: 1024 VWidth: 0 @@ -26118,11 +26053,11 @@ Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 340 -363 2 -Refer: 260 245 N 1 0 0 1 0 0 3 +Refer: 259 245 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E58 -Encoding: 7768 7768 675 +Encoding: 7768 7768 672 GlifName: uni1E_58 Width: 1024 VWidth: 0 @@ -26130,12 +26065,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 352 775 N 1 0 0 1 -28 100 2 +Refer: 351 775 N 1 0 0 1 -28 100 2 Refer: 80 82 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E59 -Encoding: 7769 7769 676 +Encoding: 7769 7769 673 GlifName: uni1E_59 Width: 1024 VWidth: 0 @@ -26143,12 +26078,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 352 775 N 1 0 0 1 -4 -368 2 -Refer: 282 114 N 1 0 0 1 0 0 3 +Refer: 351 775 N 1 0 0 1 -4 -368 2 +Refer: 281 114 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E5A -Encoding: 7770 7770 677 +Encoding: 7770 7770 674 GlifName: uni1E_5A_ Width: 1024 VWidth: 0 @@ -26161,7 +26096,7 @@ Refer: 80 82 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E5B -Encoding: 7771 7771 678 +Encoding: 7771 7771 675 GlifName: uni1E_5B_ Width: 1024 VWidth: 0 @@ -26170,11 +26105,11 @@ Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0 1 2 117 2 -Refer: 282 114 N 1 0 0 1 0 0 3 +Refer: 281 114 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E5C -Encoding: 7772 7772 679 +Encoding: 7772 7772 676 GlifName: uni1E_5C_ Width: 1024 VWidth: 0 @@ -26182,12 +26117,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 349 772 N 1 0 0 1 -13 111 2 -Refer: 677 7770 N 1 0 0 1 0 0 3 +Refer: 348 772 N 1 0 0 1 -13 111 2 +Refer: 674 7770 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E5D -Encoding: 7773 7773 680 +Encoding: 7773 7773 677 GlifName: uni1E_5D_ Width: 1024 VWidth: 0 @@ -26195,12 +26130,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 349 772 N 1 0 0 1 25.5 -403 2 -Refer: 678 7771 N 1 0 0 1 0 0 3 +Refer: 348 772 N 1 0 0 1 25.5 -403 2 +Refer: 675 7771 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E5E -Encoding: 7774 7774 681 +Encoding: 7774 7774 678 GlifName: uni1E_5E_ Width: 1024 VWidth: 0 @@ -26208,12 +26143,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 360 817 N 1 0 0 1 28 48 2 +Refer: 359 817 N 1 0 0 1 28 48 2 Refer: 80 82 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E5F -Encoding: 7775 7775 682 +Encoding: 7775 7775 679 GlifName: uni1E_5F_ Width: 1024 VWidth: 0 @@ -26221,12 +26156,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 360 817 N 1 0 0 1 -10 93 2 -Refer: 282 114 N 1 0 0 1 0 0 3 +Refer: 359 817 N 1 0 0 1 -10 93 2 +Refer: 281 114 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E62 -Encoding: 7778 7778 683 +Encoding: 7778 7778 680 GlifName: uni1E_62 Width: 1024 VWidth: 0 @@ -26239,7 +26174,7 @@ Refer: 83 83 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E63 -Encoding: 7779 7779 684 +Encoding: 7779 7779 681 GlifName: uni1E_63 Width: 1024 VWidth: 0 @@ -26248,11 +26183,11 @@ Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0 1 14 121 2 -Refer: 287 115 N 1 0 0 1 0 0 3 +Refer: 286 115 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E6C -Encoding: 7788 7788 685 +Encoding: 7788 7788 682 GlifName: uni1E_6C_ Width: 1024 VWidth: 0 @@ -26265,7 +26200,7 @@ Refer: 88 84 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E6D -Encoding: 7789 7789 686 +Encoding: 7789 7789 683 GlifName: uni1E_6D_ Width: 1024 VWidth: 0 @@ -26274,11 +26209,11 @@ Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0 1 2 105 2 -Refer: 299 116 N 1 0 0 1 0 0 3 +Refer: 298 116 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E8E -Encoding: 7822 7822 687 +Encoding: 7822 7822 684 GlifName: uni1E_8E_ Width: 1024 VWidth: 0 @@ -26286,12 +26221,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 352 775 N 1 0 0 1 16 96 2 +Refer: 351 775 N 1 0 0 1 16 96 2 Refer: 109 89 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E8F -Encoding: 7823 7823 688 +Encoding: 7823 7823 685 GlifName: uni1E_8F_ Width: 1024 VWidth: 0 @@ -26299,12 +26234,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 352 775 N 1 0 0 1 20 -400 2 -Refer: 707 121 N 1 0 0 1 0 0 3 +Refer: 351 775 N 1 0 0 1 20 -400 2 +Refer: 704 121 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E9E -Encoding: 7838 7838 689 +Encoding: 7838 7838 686 GlifName: uni1E_9E_ Width: 1024 VWidth: 0 @@ -26347,7 +26282,7 @@ EndSplineSet EndChar StartChar: uni200C -Encoding: 8204 8204 690 +Encoding: 8204 8204 687 GlifName: uni200C_ Width: 1024 VWidth: 0 @@ -26370,7 +26305,7 @@ EndSplineSet EndChar StartChar: uni200D -Encoding: 8205 8205 691 +Encoding: 8205 8205 688 GlifName: uni200D_ Width: 1024 VWidth: 0 @@ -26388,7 +26323,7 @@ EndSplineSet EndChar StartChar: uni2044 -Encoding: 8260 8260 692 +Encoding: 8260 8260 689 GlifName: uni2044 Width: 1024 VWidth: 0 @@ -26406,7 +26341,7 @@ EndSplineSet EndChar StartChar: uni20B9 -Encoding: 8377 8377 693 +Encoding: 8377 8377 690 GlifName: uni20B_9 Width: 1024 VWidth: 0 @@ -26444,7 +26379,7 @@ EndSplineSet EndChar StartChar: uni25CC -Encoding: 9676 9676 694 +Encoding: 9676 9676 691 GlifName: uni25C_C_ Width: 1024 VWidth: 0 @@ -26499,7 +26434,7 @@ EndSplineSet EndChar StartChar: uniFB01 -Encoding: 64257 64257 695 +Encoding: 64257 64257 692 GlifName: uniF_B_01 Width: 1024 VWidth: 0 @@ -26539,7 +26474,7 @@ Ligature2: "dligDiscretionaryLigatureslookup0 subtable" f i EndChar StartChar: uniFB02 -Encoding: 64258 64258 696 +Encoding: 64258 64258 693 GlifName: uniF_B_02 Width: 1024 VWidth: 0 @@ -26584,7 +26519,7 @@ Ligature2: "dligDiscretionaryLigatureslookup0 subtable" f l EndChar StartChar: uogonek -Encoding: 371 371 697 +Encoding: 371 371 694 GlifName: uogonek Width: 1024 VWidth: 0 @@ -26592,12 +26527,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 359 808 N 1 0 0 1 -266 -73 2 -Refer: 308 117 N 1 0 0 1 0 0 3 +Refer: 358 808 N 1 0 0 1 -266 -73 2 +Refer: 307 117 N 1 0 0 1 0 0 3 EndChar StartChar: uring -Encoding: 367 367 698 +Encoding: 367 367 695 GlifName: uring Width: 1024 VWidth: 0 @@ -26605,12 +26540,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 354 778 N 1 0 0 1 -101 -390 2 -Refer: 308 117 N 1 0 0 1 0 0 3 +Refer: 353 778 N 1 0 0 1 -101 -390 2 +Refer: 307 117 N 1 0 0 1 0 0 3 EndChar StartChar: utilde -Encoding: 361 361 699 +Encoding: 361 361 696 GlifName: utilde Width: 1024 VWidth: 0 @@ -26618,12 +26553,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 305 771 N 1 0 0 1 -52 -709 2 -Refer: 308 117 N 1 0 0 1 0 0 3 +Refer: 304 771 N 1 0 0 1 -52 -709 2 +Refer: 307 117 N 1 0 0 1 0 0 3 EndChar StartChar: v -Encoding: 118 118 700 +Encoding: 118 118 697 GlifName: v Width: 1024 VWidth: 0 @@ -26647,7 +26582,7 @@ EndSplineSet EndChar StartChar: w -Encoding: 119 119 701 +Encoding: 119 119 698 GlifName: w Width: 1024 VWidth: 0 @@ -26681,7 +26616,7 @@ EndSplineSet EndChar StartChar: wacute -Encoding: 7811 7811 702 +Encoding: 7811 7811 699 GlifName: wacute Width: 1024 VWidth: 0 @@ -26690,11 +26625,11 @@ Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 50 -754 2 -Refer: 701 119 N 1 0 0 1 0 0 3 +Refer: 698 119 N 1 0 0 1 0 0 3 EndChar StartChar: wcircumflex -Encoding: 373 373 703 +Encoding: 373 373 700 GlifName: wcircumflex Width: 1024 VWidth: 0 @@ -26702,12 +26637,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 348 770 N 1 0 0 1 10 -293 2 -Refer: 701 119 N 1 0 0 1 0 0 3 +Refer: 347 770 N 1 0 0 1 10 -293 2 +Refer: 698 119 N 1 0 0 1 0 0 3 EndChar StartChar: wdieresis -Encoding: 7813 7813 704 +Encoding: 7813 7813 701 GlifName: wdieresis Width: 1024 VWidth: 0 @@ -26715,12 +26650,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 353 776 N 1 0 0 1 0 -458 2 -Refer: 701 119 N 1 0 0 1 0 0 3 +Refer: 352 776 N 1 0 0 1 0 -458 2 +Refer: 698 119 N 1 0 0 1 0 0 3 EndChar StartChar: wgrave -Encoding: 7809 7809 705 +Encoding: 7809 7809 702 GlifName: wgrave Width: 1024 VWidth: 0 @@ -26728,12 +26663,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 201 768 N 1 0 0 1 -76 -747 2 -Refer: 701 119 N 1 0 0 1 0 0 3 +Refer: 200 768 N 1 0 0 1 -76 -747 2 +Refer: 698 119 N 1 0 0 1 0 0 3 EndChar StartChar: x -Encoding: 120 120 706 +Encoding: 120 120 703 GlifName: x Width: 1024 VWidth: 0 @@ -26756,7 +26691,7 @@ EndSplineSet EndChar StartChar: y -Encoding: 121 121 707 +Encoding: 121 121 704 GlifName: y Width: 1024 VWidth: 0 @@ -26791,7 +26726,7 @@ EndSplineSet EndChar StartChar: yacute -Encoding: 253 253 708 +Encoding: 253 253 705 GlifName: yacute Width: 1024 VWidth: 0 @@ -26800,11 +26735,11 @@ Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 62 -746 2 -Refer: 707 121 N 1 0 0 1 0 0 3 +Refer: 704 121 N 1 0 0 1 0 0 3 EndChar StartChar: ycircumflex -Encoding: 375 375 709 +Encoding: 375 375 706 GlifName: ycircumflex Width: 1024 VWidth: 0 @@ -26812,12 +26747,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 348 770 N 1 0 0 1 22 -285 2 -Refer: 707 121 N 1 0 0 1 0 0 3 +Refer: 347 770 N 1 0 0 1 22 -285 2 +Refer: 704 121 N 1 0 0 1 0 0 3 EndChar StartChar: ydieresis -Encoding: 255 255 710 +Encoding: 255 255 707 GlifName: ydieresis Width: 1024 VWidth: 0 @@ -26825,12 +26760,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 353 776 N 1 0 0 1 12 -450 2 -Refer: 707 121 N 1 0 0 1 0 0 3 +Refer: 352 776 N 1 0 0 1 12 -450 2 +Refer: 704 121 N 1 0 0 1 0 0 3 EndChar StartChar: yen -Encoding: 165 165 711 +Encoding: 165 165 708 GlifName: yen Width: 1024 VWidth: 0 @@ -26873,7 +26808,7 @@ EndSplineSet EndChar StartChar: ygrave -Encoding: 7923 7923 712 +Encoding: 7923 7923 709 GlifName: ygrave Width: 1024 VWidth: 0 @@ -26881,12 +26816,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 201 768 N 1 0 0 1 -64 -739 2 -Refer: 707 121 N 1 0 0 1 0 0 3 +Refer: 200 768 N 1 0 0 1 -64 -739 2 +Refer: 704 121 N 1 0 0 1 0 0 3 EndChar StartChar: z -Encoding: 122 122 713 +Encoding: 122 122 710 GlifName: z Width: 1024 VWidth: 0 @@ -26916,7 +26851,7 @@ EndSplineSet EndChar StartChar: zacute -Encoding: 378 378 714 +Encoding: 378 378 711 GlifName: zacute Width: 1024 VWidth: 0 @@ -26925,11 +26860,11 @@ Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 38 -764 2 -Refer: 713 122 N 1 0 0 1 0 0 3 +Refer: 710 122 N 1 0 0 1 0 0 3 EndChar StartChar: zcaron -Encoding: 382 382 715 +Encoding: 382 382 712 GlifName: zcaron Width: 1024 VWidth: 0 @@ -26937,12 +26872,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 356 780 N 1 0 0 1 0 -191 2 -Refer: 713 122 N 1 0 0 1 0 0 3 +Refer: 355 780 N 1 0 0 1 0 -191 2 +Refer: 710 122 N 1 0 0 1 0 0 3 EndChar StartChar: zdotaccent -Encoding: 380 380 716 +Encoding: 380 380 713 GlifName: zdotaccent Width: 1024 VWidth: 0 @@ -26950,12 +26885,12 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 352 775 N 1 0 0 1 -4 -418 2 -Refer: 713 122 N 1 0 0 1 0 0 3 +Refer: 351 775 N 1 0 0 1 -4 -418 2 +Refer: 710 122 N 1 0 0 1 0 0 3 EndChar StartChar: zero -Encoding: 48 48 717 +Encoding: 48 48 714 GlifName: zero Width: 1024 VWidth: 0 diff --git a/sources/Samaano-Bold.ufo/features.fea b/sources/Samaano-Bold.ufo/features.fea index a10791b8f..a06e0c56e 100644 --- a/sources/Samaano-Bold.ufo/features.fea +++ b/sources/Samaano-Bold.ufo/features.fea @@ -235,7 +235,7 @@ feature half { script DFLT; language dflt ; lookup halfHalfFormsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup halfHalfFormsinDevanagarilookup0; } half; @@ -243,7 +243,7 @@ feature haln { script DFLT; language dflt ; lookup halnHalantFormsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup halnHalantFormsinDevanagarilookup0; } haln; @@ -251,7 +251,7 @@ feature vatu { script DFLT; language dflt ; lookup vatuVattuVariantsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup vatuVattuVariantsinDevanagarilookup0; } vatu; @@ -259,7 +259,7 @@ feature pres { script DFLT; language dflt ; lookup presPreBaseSubstitutionsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup presPreBaseSubstitutionsinDevanagarilookup0; } pres; @@ -267,7 +267,7 @@ feature abvs { script DFLT; language dflt ; lookup abvsAboveBaseSubstitutionsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup abvsAboveBaseSubstitutionsinDevanagarilookup0; } abvs; @@ -275,7 +275,7 @@ feature blws { script DFLT; language dflt ; lookup blwsBelowBaseSubstitutionsinDevanagarilookup12; - script dev2; + script deva; language dflt ; lookup blwsBelowBaseSubstitutionsinDevanagarilookup12; } blws; @@ -288,22 +288,22 @@ feature dlig { lookup dligDiscretionaryLigatureslookup0; } dlig;@CombiningTopAccents = [acutecomb oe tildecomb uni0302 uni0304 uni0306 uni0308 uni030A uni030B uni030C]; lookup markMarkPositioninglookup0 { - markClass gravecomb @top; - markClass acutecomb @top; - markClass uni0302 @top; - markClass tildecomb @top; - markClass uni0304 @top; - markClass uni0306 @top; - markClass uni0307 @top; - markClass uni0308 @top; - markClass uni030A @top; - markClass uni030B @top; - markClass uni030C @top; - markClass dotbelowcomb @base; - markClass uni0326 @base; - markClass uni0327 @base; - markClass uni0328 @base; - markClass uni0331 @base; + markClass gravecomb @top; + markClass acutecomb @top; + markClass uni0302 @top; + markClass tildecomb @top; + markClass uni0304 @top; + markClass uni0306 @top; + markClass uni0307 @top; + markClass uni0308 @top; + markClass uni030A @top; + markClass uni030B @top; + markClass uni030C @top; + markClass dotbelowcomb @base; + markClass uni0326 @base; + markClass uni0327 @base; + markClass uni0328 @base; + markClass uni0331 @base; pos base A mark @top; pos base C mark @top; pos base D mark @top; @@ -377,9 +377,9 @@ lookup markMarkPositioninglookup0 { pos base uni25CC mark @base; } markMarkPositioninglookup0; lookup abvmAboveBaseMarkinDevanagari2lookup1 { - markClass uni0900 @abvm; - markClass uni0901 @abvm; - markClass uni0902 @abvm; + markClass uni0900 @abvm; + markClass uni0901 @abvm; + markClass uni0902 @abvm; markClass uni0951 @abvm; markClass uni0953 @abvm; markClass uni0954 @abvm; @@ -415,9 +415,8 @@ feature blwm { script dev2; language dflt ; lookup blwmBelowBaseMarkinDevanagari2lookup2; -} blwm; -@GDEF_base = [A AE Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Emacron Eng Eogonek Eth Euro F G Gbreve Gcircumflex Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek Itilde J Jcircumflex K L Lacute Lcaron Ldot Lslash M N Nacute Ncaron Ntilde O OE Oacute Obreve Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Otilde P Q R Racute Rcaron S Sacute Scaron Scedilla Scircumflex T Tcaron Thorn U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ygrave Z Zacute Zcaron Zdotaccent a aacute abreve acircumflex acute adieresis ae agrave amacron ampersand aogonek aring asciicircum asciitilde asterisk at atilde b backslash bar braceleft braceright bracketleft bracketright breve brokenbar bullet c cacute caron ccaron ccedilla ccircumflex cdotaccent cedilla cent circumflex colon comma copyright currency d dagger daggerdbl dcaron dcroat degree dieresis divide dollar dotaccent dotlessi e eacute ebreve ecaron ecircumflex edieresis edotaccent egrave eight ellipsis emacron emdash endash eng eogonek equal eth exclam exclamdown f five four g gbreve gcircumflex gdotaccent germandbls grave greater guillemotleft guillemotright guilsinglleft guilsinglright h hbar hcircumflex hookabovecomb hungarumlaut hyphen i iacute ibreve icircumflex idieresis igrave ij imacron iogonek itilde j jcircumflex k l lacute lcaron ldot less logicalnot lslash m macron minus mu multiply n nacute ncaron nine ntilde numbersign o oacute obreve ocircumflex odieresis oe ogonek ograve ohungarumlaut omacron one onehalf onequarter ordfeminine ordmasculine oslash otilde p paragraph parenleft parenright percent period periodcentered perthousand plus plusminus q question questiondown quotedbl quotedblbase quotedblleft quotedblright quoteleft quoteright quotesinglbase quotesingle r racute rcaron registered ring s sacute scaron scedilla scircumflex section semicolon seven six slash space sterling t tcaron thorn three threequarters tilde trademark two u uacute ubreve ucircumflex udieresis ugrave uhungarumlaut umacron underscore uni00A0 uni00B2 uni00B3 uni00B9 uni0122 uni0123 uni0136 uni0137 uni013B uni013C uni0145 uni0146 uni0156 uni0157 uni0162 uni0163 uni0192 uni01C4 uni01C5 uni01C6 uni0218 uni0219 uni021A uni021B uni0237 uni02B9 uni02BA uni02BC uni02C9 uni02CA uni02CB uni0305 uni0903 uni0904 uni0905 uni0906 uni0907 uni0908 uni0909 uni090A uni090B uni090C uni090D uni090E uni090F uni0910 uni0911 uni0912 uni0913 uni0914 uni0915 uni0915_uni094D.half uni0915_uni094D_uni0937_uni094D uni0916 uni0916_uni094D.half uni0917 uni0918 uni0919 uni091A uni091A_uni0930_uni094D.vatu uni091B uni091C uni091C_uni0930_uni094D.vatu uni091C_uni094D_uni091E_uni094D uni091D uni091E uni091F uni0920 uni0921 uni0922 uni0922_uni0930_uni094D.vatu uni0923 uni0923_uni0930_uni094D.vatu uni0924 uni0925 uni0926 uni0927 uni0928 uni0929 uni092A uni092B uni092C uni092D uni092E uni092F uni0930 uni0930_uni094D.abvs uni0930_uni094D.haln uni0930_uni094D.vatu uni0931 uni0932 uni0933 uni0934 uni0935 uni0936 uni0936_uni094D.haln uni0937 uni0938 uni0938_uni0930_uni094D.vatu uni0938_uni094D.haln uni0939 uni0939_uni0930_uni094D.vatu uni093B uni093D uni093E uni093F uni0940 uni0940_uni0930_uni094D.abvs uni0945_uni0930_uni094D.abvs uni0946_uni0930_uni094D.abvs uni0947_uni0930_uni094D.abvs uni0948_uni0930_uni094D.abvs uni0949 uni0949_uni0930_uni094D.abvs uni094A uni094A_uni0930_uni094D.abvs uni094B uni094B_uni0930_uni094D.abvs uni094C uni094C_uni0930_uni094D.abvs uni094E uni094F uni0950 uni0958 uni0959 uni095A uni095A_uni094D.haln uni095B uni095C uni095D uni095E uni095E_uni0930_uni094D.vatu uni095F uni095F_uni0930_uni094D.vatu uni0960 uni0961 uni0964 uni0965 uni0966 uni0967 uni0968 uni0969 uni096A uni096B uni096C uni096D uni096E uni096F uni0970 uni0971 uni0972 uni0973 uni0974 uni0975 uni0976 uni0977 uni0978 uni0979 uni097A uni097B uni097C uni097D uni097E uni097F uni1E0C uni1E0D uni1E34 uni1E35 uni1E36 uni1E37 uni1E38 uni1E39 uni1E3A uni1E3B uni1E42 uni1E43 uni1E44 uni1E45 uni1E46 uni1E47 uni1E48 uni1E49 uni1E4C uni1E4D uni1E58 uni1E59 uni1E5A uni1E5B uni1E5C uni1E5D uni1E5E uni1E5F uni1E62 uni1E63 uni1E6C uni1E6D uni1E8E uni1E8F uni1E9E uni200C uni200D uni2044 uni20B9 uni25CC uogonek uring utilde v w wacute wcircumflex wdieresis wgrave x y yacute ycircumflex ydieresis yen ygrave z zacute zcaron zdotaccent zero]; -@GDEF_mark = [acutecomb dotbelowcomb glyph094D gravecomb tildecomb uni0302 uni0304 uni0306 uni0307 uni0308 uni030A uni030B uni030C uni0326 uni0327 uni0328 uni0331 uni0900 uni0901 uni0902 uni0930_uni094D.blwf uni0930_uni094D.rphf uni093A uni093C uni0941 uni0942 uni0943 uni0944 uni0945 uni0946 uni0947 uni0948 uni094D uni0951 uni0952 uni0953 uni0954 uni0955 uni0956 uni0957 uni0962 uni0963]; +} blwm;@GDEF_base = [A AE Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Emacron Eng Eogonek Eth Euro F G Gbreve Gcircumflex Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek Itilde J Jcircumflex K L Lacute Lcaron Ldot Lslash M N Nacute Ncaron Ntilde O OE Oacute Obreve Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Otilde P Q R Racute Rcaron S Sacute Scaron Scedilla Scircumflex T Tcaron Thorn U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ygrave Z Zacute Zcaron Zdotaccent a aacute abreve acircumflex acute adieresis ae agrave amacron ampersand aogonek aring asciicircum asciitilde asterisk at atilde b backslash bar braceleft braceright bracketleft bracketright breve brokenbar bullet c cacute caron ccaron ccedilla ccircumflex cdotaccent cedilla cent circumflex colon comma copyright currency d dagger daggerdbl dcaron dcroat degree dieresis divide dollar dotaccent dotlessi e eacute ebreve ecaron ecircumflex edieresis edotaccent egrave eight ellipsis emacron emdash endash eng eogonek equal eth exclam exclamdown f five four g gbreve gcircumflex gdotaccent germandbls grave greater guillemotleft guillemotright guilsinglleft guilsinglright h hbar hcircumflex hungarumlaut hyphen i iacute ibreve icircumflex idieresis igrave ij imacron iogonek itilde j jcircumflex k l lacute lcaron ldot less logicalnot lslash m macron minus mu multiply n nacute ncaron nine ntilde numbersign o oacute obreve ocircumflex odieresis oe ogonek ograve ohungarumlaut omacron one onehalf onequarter ordfeminine ordmasculine oslash otilde p paragraph parenleft parenright percent period periodcentered perthousand plus plusminus q question questiondown quotedbl quotedblbase quotedblleft quotedblright quoteleft quoteright quotesinglbase quotesingle r racute rcaron registered ring s sacute scaron scedilla scircumflex section semicolon seven six slash space sterling t tcaron thorn three threequarters tilde trademark two u uacute ubreve ucircumflex udieresis ugrave uhungarumlaut umacron underscore uni00A0 uni00B2 uni00B3 uni00B9 uni0122 uni0123 uni0136 uni0137 uni013B uni013C uni0145 uni0146 uni0156 uni0157 uni0162 uni0163 uni0192 uni01C4 uni01C5 uni01C6 uni0218 uni0219 uni021A uni021B uni0237 uni02B9 uni02BA uni02BC uni02C9 uni02CA uni02CB uni0903 uni0904 uni0905 uni0906 uni0907 uni0908 uni0909 uni090A uni090B uni090C uni090D uni090E uni090F uni0910 uni0911 uni0912 uni0913 uni0914 uni0915 uni0915_uni094D.half uni0915_uni094D_uni0937_uni094D uni0916 uni0916_uni094D.half uni0917 uni0918 uni0919 uni091A uni091A_uni0930_uni094D.vatu uni091B uni091C uni091C_uni0930_uni094D.vatu uni091C_uni094D_uni091E_uni094D uni091D uni091E uni091F uni0920 uni0921 uni0922 uni0922_uni0930_uni094D.vatu uni0923 uni0923_uni0930_uni094D.vatu uni0924 uni0925 uni0926 uni0927 uni0928 uni0929 uni092A uni092B uni092C uni092D uni092E uni092F uni0930 uni0930_uni094D.haln uni0931 uni0932 uni0933 uni0934 uni0935 uni0936 uni0936_uni094D.haln uni0937 uni0938 uni0938_uni0930_uni094D.vatu uni0938_uni094D.haln uni0939 uni0939_uni0930_uni094D.vatu uni093B uni093D uni093E uni093F uni0940 uni0940_uni0930_uni094D.abvs uni0945_uni0930_uni094D.abvs uni0946_uni0930_uni094D.abvs uni0947_uni0930_uni094D.abvs uni0948_uni0930_uni094D.abvs uni0949 uni0949_uni0930_uni094D.abvs uni094A uni094A_uni0930_uni094D.abvs uni094B uni094B_uni0930_uni094D.abvs uni094C uni094C_uni0930_uni094D.abvs uni094E uni094F uni0950 uni0958 uni0959 uni095A uni095A_uni094D.haln uni095B uni095C uni095D uni095E uni095E_uni0930_uni094D.vatu uni095F uni095F_uni0930_uni094D.vatu uni0960 uni0961 uni0964 uni0965 uni0966 uni0967 uni0968 uni0969 uni096A uni096B uni096C uni096D uni096E uni096F uni0970 uni0971 uni0972 uni0973 uni0974 uni0975 uni0976 uni0977 uni0978 uni0979 uni097A uni097B uni097C uni097D uni097E uni097F uni1E0C uni1E0D uni1E34 uni1E35 uni1E36 uni1E37 uni1E38 uni1E39 uni1E3A uni1E3B uni1E42 uni1E43 uni1E44 uni1E45 uni1E46 uni1E47 uni1E48 uni1E49 uni1E4C uni1E4D uni1E58 uni1E59 uni1E5A uni1E5B uni1E5C uni1E5D uni1E5E uni1E5F uni1E62 uni1E63 uni1E6C uni1E6D uni1E8E uni1E8F uni1E9E uni200C uni200D uni2044 uni20B9 uni25CC uogonek uring utilde v w wacute wcircumflex wdieresis wgrave x y yacute ycircumflex ydieresis yen ygrave z zacute zcaron zdotaccent zero]; +@GDEF_mark = [acutecomb dotbelowcomb gravecomb hookabovecomb tildecomb uni0302 uni0304 uni0305 uni0306 uni0307 uni0308 uni030A uni030B uni030C uni0326 uni0327 uni0328 uni0331 uni0900 uni0901 uni0902 uni0930_uni094D.blwf uni0930_uni094D.rphf uni093A uni093C uni0941 uni0942 uni0943 uni0944 uni0945 uni0946 uni0947 uni0948 uni094D uni0951 uni0952 uni0953 uni0954 uni0955 uni0956 uni0957 uni0962 uni0963]; @GDEF_ligature = [uni0915_uni0930_uni094D.vatu uni0915_uni094D.haln uni0915_uni094D_uni0937.akhn uni0915_uni094D_uni0937.half uni0916_uni0930_uni094D.vatu uni0916_uni094D.haln uni0917_uni0930_uni094D.vatu uni0917_uni094D.half uni0917_uni094D.haln uni0918_uni0930_uni094D.vatu uni0918_uni094D.half uni0918_uni094D.haln uni0919_uni0930_uni094D.vatu uni0919_uni094D.half uni0919_uni094D.haln uni091A_uni094D.half uni091A_uni094D.haln uni091B_uni0930_uni094D.vatu uni091B_uni094D.half uni091B_uni094D.haln uni091C_uni094D.half uni091C_uni094D.haln uni091C_uni094D_uni091E.akhn uni091C_uni094D_uni091E.half uni091D_uni0930_uni094D.vatu uni091D_uni094D.half uni091D_uni094D.haln uni091E_uni0930_uni094D.vatu uni091E_uni094D.half uni091E_uni094D.haln uni091F_uni0930_uni094D.vatu uni091F_uni094D.haln uni0920_uni0930_uni094D.vatu uni0920_uni094D.haln uni0921_uni0930_uni094D.vatu uni0921_uni094D.haln uni0922_uni094D.haln uni0923_uni094D.half uni0923_uni094D.haln uni0924_uni0930_uni094D.vatu uni0924_uni094D.half uni0924_uni094D.haln uni0924_uni094D_uni0924.pres uni0925_uni0930_uni094D.vatu uni0925_uni094D.half uni0925_uni094D.haln uni0926_uni0930_uni094D.vatu uni0926_uni094D.half uni0926_uni094D.haln uni0926_uni094D_uni0926.pres uni0926_uni094D_uni0927.pres uni0926_uni094D_uni092F.pres uni0926_uni094D_uni0935.pres uni0927_uni0930_uni094D.vatu uni0927_uni094D.half uni0927_uni094D.haln uni0928_uni0930_uni094D.vatu uni0928_uni094D.half uni0928_uni094D.haln uni0929_uni0930_uni094D.vatu uni0929_uni094D.half uni0929_uni094D.haln uni092A_uni0930_uni094D.vatu uni092A_uni094D.half uni092A_uni094D.haln uni092B_uni0930_uni094D.vatu uni092B_uni094D.half uni092B_uni094D.haln uni092C_uni0930_uni094D.vatu uni092C_uni094D.half uni092C_uni094D.haln uni092D_uni0930_uni094D.vatu uni092D_uni094D.half uni092D_uni094D.haln uni092E_uni0930_uni094D.vatu uni092E_uni094D.half uni092E_uni094D.haln uni092F_uni0930_uni094D.vatu uni092F_uni094D.half uni092F_uni094D.haln uni0930_uni0930_uni094D.vatu uni0930_uni0941.blws uni0930_uni0942.blws uni0930_uni094D.half uni0931_uni0930_uni094D.vatu uni0931_uni094D.haln uni0932_uni0930_uni094D.vatu uni0932_uni094D.half uni0932_uni094D.haln uni0933_uni0930_uni094D.vatu uni0933_uni094D.half uni0933_uni094D.haln uni0934_uni0930_uni094D.vatu uni0934_uni094D.half uni0934_uni094D.haln uni0935_uni0930_uni094D.vatu uni0935_uni094D.half uni0935_uni094D.haln uni0936_uni0930_uni094D.vatu uni0936_uni094D.half uni0937_uni0930_uni094D.vatu uni0937_uni094D.half uni0937_uni094D.haln uni0938_uni094D.half uni0939_uni0943.blws uni0939_uni094D.half uni0939_uni094D.haln uni0939_uni094D_uni092E.pres uni093E_uni0930_uni094D.abvs uni0940_uni0902.abvs uni0945_uni0902.abvs uni0946_uni0902.abvs uni0947_uni0902.abvs uni0948_uni0902.abvs uni0949_uni0902.abvs uni094A_uni0902.abvs uni094B_uni0902.abvs uni094C_uni0902.abvs uni0958_uni0930_uni094D.vatu uni0958_uni094D.half uni0958_uni094D.haln uni0959_uni0930_uni094D.vatu uni0959_uni094D.half uni0959_uni094D.haln uni095A_uni0930_uni094D.vatu uni095A_uni094D.half uni095B_uni0930_uni094D.vatu uni095B_uni094D.half uni095B_uni094D.haln uni095C_uni0930_uni094D.vatu uni095C_uni094D.haln uni095D_uni0930_uni094D.vatu uni095D_uni094D.haln uni095E_uni094D.half uni095E_uni094D.haln uni095F_uni094D.half uni095F_uni094D.haln uniFB01 uniFB02]; @GDEF_component = []; @@ -428,4 +427,4 @@ feature blwm { @GDEF_component; LigatureCaretByPos uniFB01 32; LigatureCaretByPos uniFB02 84; -} GDEF; +} GDEF; \ No newline at end of file diff --git a/sources/Samaano-Bold.ufo/fontinfo.plist b/sources/Samaano-Bold.ufo/fontinfo.plist index c40c8af93..13f22d63c 100644 --- a/sources/Samaano-Bold.ufo/fontinfo.plist +++ b/sources/Samaano-Bold.ufo/fontinfo.plist @@ -50,9 +50,14 @@ openTypeNameDesignerURL https://github.com/mitradranirban openTypeNameLicense - Copyright 2024 The Samaano Project Authors (https://github.com/mitradranirban/samaano-fonts. This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://openfontlicences.org + Copyright 2024 The Samaano Project Authors (https://github.com/mitradranirban/samaano-fonts) + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is available with a FAQ at: http://scripts.sil.org/OFL + + openTypeNameLicenseURL - https://openfontlicences.org + http://scripts.sil.org/OFL openTypeNameManufacturer Dr Anirban Mitra openTypeNameManufacturerURL @@ -107,8 +112,6 @@ Samaano Bold postscriptSlantAngle 0.0 - postscriptIsFixedPitch - postscriptUnderlinePosition 0.0 postscriptUnderlineThickness diff --git a/sources/Samaano-Bold.ufo/glyphs/acutecomb.glif b/sources/Samaano-Bold.ufo/glyphs/acutecomb.glif index ba1f4a8a3..d1b9d8a30 100644 --- a/sources/Samaano-Bold.ufo/glyphs/acutecomb.glif +++ b/sources/Samaano-Bold.ufo/glyphs/acutecomb.glif @@ -1,13 +1,12 @@ - - - - - + + + + diff --git a/sources/Samaano-Bold.ufo/glyphs/contents.plist b/sources/Samaano-Bold.ufo/glyphs/contents.plist index 43e9c29e9..8f8969576 100644 --- a/sources/Samaano-Bold.ufo/glyphs/contents.plist +++ b/sources/Samaano-Bold.ufo/glyphs/contents.plist @@ -400,8 +400,6 @@ gdotaccent.glif germandbls germandbls.glif - glyph094D - glyph094D_.glif grave grave.glif gravecomb @@ -1004,8 +1002,6 @@ uni0930_uni0941.blws.glif uni0930_uni0942.blws uni0930_uni0942.blws.glif - uni0930_uni094D.abvs - uni0930_uni094D_.abvs.glif uni0930_uni094D.blwf uni0930_uni094D_.blwf.glif uni0930_uni094D.half @@ -1014,8 +1010,6 @@ uni0930_uni094D_.haln.glif uni0930_uni094D.rphf uni0930_uni094D_.rphf.glif - uni0930_uni094D.vatu - uni0930_uni094D_.vatu.glif uni0931 uni0931.glif uni0931_uni0930_uni094D.vatu diff --git a/sources/Samaano-Bold.ufo/glyphs/dotbelowcomb.glif b/sources/Samaano-Bold.ufo/glyphs/dotbelowcomb.glif index f2e4b94dd..a9378e1cd 100644 --- a/sources/Samaano-Bold.ufo/glyphs/dotbelowcomb.glif +++ b/sources/Samaano-Bold.ufo/glyphs/dotbelowcomb.glif @@ -1,13 +1,12 @@ - - - - - + + + + diff --git a/sources/Samaano-Bold.ufo/glyphs/glyph094D_.glif b/sources/Samaano-Bold.ufo/glyphs/glyph094D_.glif deleted file mode 100644 index ff4403ff7..000000000 --- a/sources/Samaano-Bold.ufo/glyphs/glyph094D_.glif +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/sources/Samaano-Bold.ufo/glyphs/gravecomb.glif b/sources/Samaano-Bold.ufo/glyphs/gravecomb.glif index b180b5f19..61613f87b 100644 --- a/sources/Samaano-Bold.ufo/glyphs/gravecomb.glif +++ b/sources/Samaano-Bold.ufo/glyphs/gravecomb.glif @@ -1,13 +1,12 @@ - - - - - + + + + diff --git a/sources/Samaano-Bold.ufo/glyphs/hookabovecomb.glif b/sources/Samaano-Bold.ufo/glyphs/hookabovecomb.glif index 1fb6964b2..0367d8290 100644 --- a/sources/Samaano-Bold.ufo/glyphs/hookabovecomb.glif +++ b/sources/Samaano-Bold.ufo/glyphs/hookabovecomb.glif @@ -3,28 +3,28 @@ - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Bold.ufo/glyphs/ldot.glif b/sources/Samaano-Bold.ufo/glyphs/ldot.glif index 29563023a..c6273cbec 100644 --- a/sources/Samaano-Bold.ufo/glyphs/ldot.glif +++ b/sources/Samaano-Bold.ufo/glyphs/ldot.glif @@ -1,9 +1,9 @@ - + - + diff --git a/sources/Samaano-Bold.ufo/glyphs/tildecomb.glif b/sources/Samaano-Bold.ufo/glyphs/tildecomb.glif index bb0d34825..ecd06a0b8 100644 --- a/sources/Samaano-Bold.ufo/glyphs/tildecomb.glif +++ b/sources/Samaano-Bold.ufo/glyphs/tildecomb.glif @@ -1,25 +1,24 @@ - - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Bold.ufo/glyphs/uni0302.glif b/sources/Samaano-Bold.ufo/glyphs/uni0302.glif index 25ed82831..750f55079 100644 --- a/sources/Samaano-Bold.ufo/glyphs/uni0302.glif +++ b/sources/Samaano-Bold.ufo/glyphs/uni0302.glif @@ -3,16 +3,16 @@ - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Bold.ufo/glyphs/uni0304.glif b/sources/Samaano-Bold.ufo/glyphs/uni0304.glif index 8b7644d2d..b3c04d3be 100644 --- a/sources/Samaano-Bold.ufo/glyphs/uni0304.glif +++ b/sources/Samaano-Bold.ufo/glyphs/uni0304.glif @@ -1,13 +1,12 @@ - - - - - + + + + diff --git a/sources/Samaano-Bold.ufo/glyphs/uni0305.glif b/sources/Samaano-Bold.ufo/glyphs/uni0305.glif index 14f8b8c38..15e603bdd 100644 --- a/sources/Samaano-Bold.ufo/glyphs/uni0305.glif +++ b/sources/Samaano-Bold.ufo/glyphs/uni0305.glif @@ -3,10 +3,10 @@ - - - - + + + + diff --git a/sources/Samaano-Bold.ufo/glyphs/uni0306.glif b/sources/Samaano-Bold.ufo/glyphs/uni0306.glif index 08ad90e04..8b04966b8 100644 --- a/sources/Samaano-Bold.ufo/glyphs/uni0306.glif +++ b/sources/Samaano-Bold.ufo/glyphs/uni0306.glif @@ -1,25 +1,24 @@ - - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Bold.ufo/glyphs/uni0307.glif b/sources/Samaano-Bold.ufo/glyphs/uni0307.glif index ec7f44efb..1b48fe41a 100644 --- a/sources/Samaano-Bold.ufo/glyphs/uni0307.glif +++ b/sources/Samaano-Bold.ufo/glyphs/uni0307.glif @@ -1,13 +1,12 @@ - - - - - + + + + diff --git a/sources/Samaano-Bold.ufo/glyphs/uni0308.glif b/sources/Samaano-Bold.ufo/glyphs/uni0308.glif index deb91bb8e..acb5d586f 100644 --- a/sources/Samaano-Bold.ufo/glyphs/uni0308.glif +++ b/sources/Samaano-Bold.ufo/glyphs/uni0308.glif @@ -1,19 +1,18 @@ - - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Bold.ufo/glyphs/uni030A_.glif b/sources/Samaano-Bold.ufo/glyphs/uni030A_.glif index 2eadd8002..c7c04dda2 100644 --- a/sources/Samaano-Bold.ufo/glyphs/uni030A_.glif +++ b/sources/Samaano-Bold.ufo/glyphs/uni030A_.glif @@ -1,19 +1,18 @@ - - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Bold.ufo/glyphs/uni030B_.glif b/sources/Samaano-Bold.ufo/glyphs/uni030B_.glif index d385c0ae5..a05f9b574 100644 --- a/sources/Samaano-Bold.ufo/glyphs/uni030B_.glif +++ b/sources/Samaano-Bold.ufo/glyphs/uni030B_.glif @@ -1,8 +1,7 @@ - - + diff --git a/sources/Samaano-Bold.ufo/glyphs/uni030C_.glif b/sources/Samaano-Bold.ufo/glyphs/uni030C_.glif index a24268dd2..5099e8b45 100644 --- a/sources/Samaano-Bold.ufo/glyphs/uni030C_.glif +++ b/sources/Samaano-Bold.ufo/glyphs/uni030C_.glif @@ -1,19 +1,18 @@ - - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Bold.ufo/glyphs/uni0326.glif b/sources/Samaano-Bold.ufo/glyphs/uni0326.glif index c3594c634..4879bed80 100644 --- a/sources/Samaano-Bold.ufo/glyphs/uni0326.glif +++ b/sources/Samaano-Bold.ufo/glyphs/uni0326.glif @@ -1,19 +1,18 @@ - - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Bold.ufo/glyphs/uni0327.glif b/sources/Samaano-Bold.ufo/glyphs/uni0327.glif index 3dcf7e1e3..5e3d918ce 100644 --- a/sources/Samaano-Bold.ufo/glyphs/uni0327.glif +++ b/sources/Samaano-Bold.ufo/glyphs/uni0327.glif @@ -1,31 +1,30 @@ - - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Bold.ufo/glyphs/uni0328.glif b/sources/Samaano-Bold.ufo/glyphs/uni0328.glif index 414640805..bf519f06d 100644 --- a/sources/Samaano-Bold.ufo/glyphs/uni0328.glif +++ b/sources/Samaano-Bold.ufo/glyphs/uni0328.glif @@ -1,25 +1,24 @@ - - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Bold.ufo/glyphs/uni0331.glif b/sources/Samaano-Bold.ufo/glyphs/uni0331.glif index 7aa7ca875..e4f65f7c0 100644 --- a/sources/Samaano-Bold.ufo/glyphs/uni0331.glif +++ b/sources/Samaano-Bold.ufo/glyphs/uni0331.glif @@ -1,13 +1,12 @@ - - - - - + + + + diff --git a/sources/Samaano-Bold.ufo/glyphs/uni0900.glif b/sources/Samaano-Bold.ufo/glyphs/uni0900.glif index 3aaba9d39..e063a584c 100644 --- a/sources/Samaano-Bold.ufo/glyphs/uni0900.glif +++ b/sources/Samaano-Bold.ufo/glyphs/uni0900.glif @@ -3,28 +3,28 @@ - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Bold.ufo/glyphs/uni0901.glif b/sources/Samaano-Bold.ufo/glyphs/uni0901.glif index aa019610f..2e88e63db 100644 --- a/sources/Samaano-Bold.ufo/glyphs/uni0901.glif +++ b/sources/Samaano-Bold.ufo/glyphs/uni0901.glif @@ -3,28 +3,28 @@ - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Bold.ufo/glyphs/uni0902.glif b/sources/Samaano-Bold.ufo/glyphs/uni0902.glif index 5d118f8c5..fdeb470cf 100644 --- a/sources/Samaano-Bold.ufo/glyphs/uni0902.glif +++ b/sources/Samaano-Bold.ufo/glyphs/uni0902.glif @@ -3,10 +3,10 @@ - - - - + + + + diff --git a/sources/Samaano-Bold.ufo/glyphs/uni0930_uni094D_.abvs.glif b/sources/Samaano-Bold.ufo/glyphs/uni0930_uni094D_.abvs.glif deleted file mode 100644 index 809026c0f..000000000 --- a/sources/Samaano-Bold.ufo/glyphs/uni0930_uni094D_.abvs.glif +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/Samaano-Bold.ufo/glyphs/uni0930_uni094D_.vatu.glif b/sources/Samaano-Bold.ufo/glyphs/uni0930_uni094D_.vatu.glif deleted file mode 100644 index b34e747ca..000000000 --- a/sources/Samaano-Bold.ufo/glyphs/uni0930_uni094D_.vatu.glif +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/sources/Samaano-Bold.ufo/lib.plist b/sources/Samaano-Bold.ufo/lib.plist index 5fddf7a44..3ae1f9d3d 100644 --- a/sources/Samaano-Bold.ufo/lib.plist +++ b/sources/Samaano-Bold.ufo/lib.plist @@ -555,7 +555,6 @@ uni25CC uniFB01 uniFB02 - glyph094D uni0915_uni0930_uni094D.vatu uni0915_uni094D.half uni0915_uni094D.haln @@ -647,12 +646,10 @@ uni0930_uni0930_uni094D.vatu uni0930_uni0941.blws uni0930_uni0942.blws - uni0930_uni094D.abvs uni0930_uni094D.blwf uni0930_uni094D.half uni0930_uni094D.haln uni0930_uni094D.rphf - uni0930_uni094D.vatu uni0931_uni0930_uni094D.vatu uni0931_uni094D.haln uni0932_uni0930_uni094D.vatu @@ -1121,8 +1118,6 @@ base germandbls base - glyph094D - mark grave base gravecomb @@ -1144,7 +1139,7 @@ hcircumflex base hookabovecomb - base + mark hungarumlaut base hyphen @@ -1424,7 +1419,7 @@ uni0304 mark uni0305 - base + mark uni0306 mark uni0307 @@ -1725,8 +1720,6 @@ ligature uni0930_uni0942.blws ligature - uni0930_uni094D.abvs - base uni0930_uni094D.blwf mark uni0930_uni094D.half @@ -1735,8 +1728,6 @@ base uni0930_uni094D.rphf mark - uni0930_uni094D.vatu - base uni0931 base uni0931_uni0930_uni094D.vatu diff --git a/sources/Samaano-Thin-Slanted.sfd b/sources/Samaano-Thin-Slanted.sfd index d2de8857c..e648a3ab6 100644 --- a/sources/Samaano-Thin-Slanted.sfd +++ b/sources/Samaano-Thin-Slanted.sfd @@ -23,7 +23,7 @@ OS2Version: 0 OS2_WeightWidthSlopeOnly: 0 OS2_UseTypoMetrics: 0 CreationTime: 1729163604 -ModificationTime: 1729414156 +ModificationTime: 1729498427 PfmFamily: 17 TTFWeight: 100 TTFWidth: 5 @@ -37,7 +37,7 @@ OS2TypoDOffset: 0 OS2TypoLinegap: 0 OS2WinAscent: 2476 OS2WinAOffset: 0 -OS2WinDescent: 958 +OS2WinDescent: 978 OS2WinDOffset: 0 HheadAscent: 2457 HheadAOffset: 0 @@ -4625,7 +4625,7 @@ NameList: AGL For New Fonts DisplaySize: -96 AntiAlias: 1 FitToEm: 1 -WinInfo: 26 13 5 +WinInfo: 624 13 5 BeginPrivate: 0 EndPrivate Grid @@ -4637,7 +4637,7 @@ Grid 2048 1024 l 1024 EndSplineSet AnchorClass2: "blwm" "'blwm' Below Base Mark in Devanagari2 lookup 2-1" "abvm" "'abvm' Above Base Mark in Devanagari2 lookup 1-1" "base" "markMarkPositioninglookup0 subtable" "top" "markMarkPositioninglookup0 subtable" "Samaano-Bold-abvm""" "Samaano-Bold-base""" "Samaano-Bold-top""" "Samaano-Bold-abvm""" "Samaano-Bold-base""" "Samaano-Bold-top""" "base""" "top""" -BeginChars: 65711 718 +BeginChars: 65711 716 StartChar: .notdef Encoding: 0 0 0 @@ -4932,7 +4932,7 @@ GlifName: C_ Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: HWO +Flags: HW AnchorPoint: "top" 858 1645 basechar 0 LayerCount: 2 Fore @@ -7137,22 +7137,22 @@ EndChar StartChar: acutecomb Encoding: 769 769 123 GlifName: acutecomb -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "top" 466 1888 mark 0 -AnchorPoint: "Samaano-Bold-top" 466 1888 mark 0 -AnchorPoint: "Samaano-Bold-top" 466 1888 mark 0 -AnchorPoint: "top" 466 1888 mark 0 +AnchorPoint: "top" -46 1888 mark 0 +AnchorPoint: "Samaano-Bold-top" -46 1888 mark 0 +AnchorPoint: "Samaano-Bold-top" -46 1888 mark 0 +AnchorPoint: "top" -46 1888 mark 0 LayerCount: 2 Fore SplineSet -564.85546875 949 m 257 - 418.51953125 764 l 257 - 459.14453125 730 l 257 - 605.48046875 915 l 257 - 564.85546875 949 l 257 +52.85546875 949 m 257 + -93.48046875 764 l 257 + -52.85546875 730 l 257 + 93.48046875 915 l 257 + 52.85546875 949 l 257 EndSplineSet EndChar @@ -8396,22 +8396,22 @@ EndChar StartChar: dotbelowcomb Encoding: 803 803 170 GlifName: dotbelowcomb -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "base" 498 -187 mark 0 -AnchorPoint: "Samaano-Bold-base" 498 -187 mark 0 -AnchorPoint: "Samaano-Bold-base" 498 -187 mark 0 -AnchorPoint: "base" 498 -187 mark 0 +AnchorPoint: "base" -14 -187 mark 0 +AnchorPoint: "Samaano-Bold-base" -14 -187 mark 0 +AnchorPoint: "Samaano-Bold-base" -14 -187 mark 0 +AnchorPoint: "base" -14 -187 mark 0 LayerCount: 2 Fore SplineSet -485.6484375 -290 m 257 - 458.3515625 -365 l 257 - 538.3515625 -365 l 257 - 565.6484375 -290 l 257 - 485.6484375 -290 l 257 +-26.3515625 -290 m 257 + -53.6484375 -365 l 257 + 26.3515625 -365 l 257 + 53.6484375 -290 l 257 + -26.3515625 -290 l 257 EndSplineSet EndChar @@ -9096,18 +9096,18 @@ Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "top" 592 1881 mark 0 -AnchorPoint: "Samaano-Bold-top" 592 1881 mark 0 -AnchorPoint: "Samaano-Bold-top" 592 1881 mark 0 -AnchorPoint: "top" 592 1881 mark 0 +AnchorPoint: "top" 80 1881 mark 0 +AnchorPoint: "Samaano-Bold-top" 80 1881 mark 0 +AnchorPoint: "Samaano-Bold-top" 80 1881 mark 0 +AnchorPoint: "top" 80 1881 mark 0 LayerCount: 2 Fore SplineSet -447.297851562 877 m 257 - 497.047851562 673 l 257 - 576.702148438 727 l 257 - 527.31640625 932 l 257 - 447.297851562 877 l 257 +-64.7021484375 877 m 257 + -14.9521484375 673 l 257 + 64.7021484375 727 l 257 + 15.31640625 932 l 257 + -64.7021484375 877 l 257 EndSplineSet EndChar @@ -11762,32 +11762,32 @@ EndChar StartChar: tildecomb Encoding: 771 771 304 GlifName: tildecomb -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "top" 492 1855 mark 0 -AnchorPoint: "Samaano-Bold-top" 492 1855 mark 0 -AnchorPoint: "Samaano-Bold-top" 492 1855 mark 0 -AnchorPoint: "top" 492 1855 mark 0 +AnchorPoint: "top" -20 1855 mark 0 +AnchorPoint: "Samaano-Bold-top" -20 1855 mark 0 +AnchorPoint: "Samaano-Bold-top" -20 1855 mark 0 +AnchorPoint: "top" -20 1855 mark 0 LayerCount: 2 Fore SplineSet -372.733398438 1966 m 257 - 354.53515625 1916 l 257 - 678.693359375 1845 l 257 - 696.891601562 1895 l 257 - 372.733398438 1966 l 257 -112.3515625 1910 m 257 - 105.241210938 1852 l 257 - 354.53515625 1916 l 257 - 372.733398438 1966 l 257 - 112.3515625 1910 l 257 -696.891601562 1895 m 257 - 678.693359375 1845 l 257 - 915.65234375 1996 l 257 - 918.758789062 2043 l 257 - 696.891601562 1895 l 257 +-139.266601562 1966 m 257 + -157.46484375 1916 l 257 + 166.693359375 1845 l 257 + 184.891601562 1895 l 257 + -139.266601562 1966 l 257 +-399.6484375 1910 m 257 + -406.758789062 1852 l 257 + -157.46484375 1916 l 257 + -139.266601562 1966 l 257 + -399.6484375 1910 l 257 +184.891601562 1895 m 257 + 166.693359375 1845 l 257 + 403.65234375 1996 l 257 + 406.758789062 2043 l 257 + 184.891601562 1895 l 257 EndSplineSet EndChar @@ -12299,7 +12299,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 713 382 N 0.5 0 0 1 512.5 0 2 +Refer: 711 382 N 0.5 0 0 1 512.5 0 2 Refer: 19 68 N 0.5 0 0 1 0.5 0 2 EndChar @@ -12312,7 +12312,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 713 382 N 0.5 0 0 1 526.43 0 2 +Refer: 711 382 N 0.5 0 0 1 526.43 0 2 Refer: 160 100 N 0.5 0 0 1 14.4299 0 2 EndChar @@ -12493,174 +12493,174 @@ EndChar StartChar: uni0302 Encoding: 770 770 347 GlifName: uni0302 -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "top" 506 1427 mark 0 -AnchorPoint: "Samaano-Bold-top" 506 1427 mark 0 -AnchorPoint: "Samaano-Bold-top" 506 1427 mark 0 -AnchorPoint: "top" 471 1881 mark 0 +AnchorPoint: "top" -6 1427 mark 0 +AnchorPoint: "Samaano-Bold-top" -6 1427 mark 0 +AnchorPoint: "Samaano-Bold-top" -6 1427 mark 0 +AnchorPoint: "top" -41 1881 mark 0 LayerCount: 2 Fore SplineSet -625 1677 m 257 - 589 1677 l 257 - 344 1367 l 257 - 365 1350 l 257 - 625 1677 l 257 -592 1679 m 257 - 633 1345 l 257 - 680 1363 l 257 - 629 1679 l 257 - 592 1679 l 257 +113 1677 m 257 + 77 1677 l 257 + -168 1367 l 257 + -147 1350 l 257 + 113 1677 l 257 +80 1679 m 257 + 121 1345 l 257 + 168 1363 l 257 + 117 1679 l 257 + 80 1679 l 257 EndSplineSet EndChar StartChar: uni0304 Encoding: 772 772 348 GlifName: uni0304 -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "top" 488 1532 mark 0 -AnchorPoint: "Samaano-Bold-top" 488 1532 mark 0 -AnchorPoint: "Samaano-Bold-top" 488 1532 mark 0 -AnchorPoint: "top" 488 1532 mark 0 +AnchorPoint: "top" -24 1532 mark 0 +AnchorPoint: "Samaano-Bold-top" -24 1532 mark 0 +AnchorPoint: "Samaano-Bold-top" -24 1532 mark 0 +AnchorPoint: "top" -24 1532 mark 0 LayerCount: 2 Fore SplineSet -241.462890625 1602 m 257 - 222.537109375 1550 l 257 - 782.537109375 1550 l 257 - 801.462890625 1602 l 257 - 241.462890625 1602 l 257 +-270.537109375 1602 m 257 + -289.462890625 1550 l 257 + 270.537109375 1550 l 257 + 289.462890625 1602 l 257 + -270.537109375 1602 l 257 EndSplineSet EndChar StartChar: uni0306 Encoding: 774 774 349 GlifName: uni0306 -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "top" 496 1440 mark 0 -AnchorPoint: "Samaano-Bold-top" 496 1440 mark 0 -AnchorPoint: "Samaano-Bold-top" 496 1440 mark 0 -AnchorPoint: "top" 496 1440 mark 0 +AnchorPoint: "top" -16 1440 mark 0 +AnchorPoint: "Samaano-Bold-top" -16 1440 mark 0 +AnchorPoint: "Samaano-Bold-top" -16 1440 mark 0 +AnchorPoint: "top" -16 1440 mark 0 LayerCount: 2 Fore SplineSet -659.7109375 1550 m 257 - 634.232421875 1480 l 257 - 824.7109375 1550 l 257 - 859.2890625 1645 l 257 - 659.7109375 1550 l 257 -335.7109375 1550 m 257 - 310.232421875 1480 l 257 - 634.232421875 1480 l 257 - 659.7109375 1550 l 257 - 335.7109375 1550 l 257 -193.828125 1630 m 257 - 164.7109375 1550 l 257 - 310.232421875 1480 l 257 - 335.7109375 1550 l 257 - 193.828125 1630 l 257 +147.7109375 1550 m 257 + 122.232421875 1480 l 257 + 312.7109375 1550 l 257 + 347.2890625 1645 l 257 + 147.7109375 1550 l 257 +-176.2890625 1550 m 257 + -201.767578125 1480 l 257 + 122.232421875 1480 l 257 + 147.7109375 1550 l 257 + -176.2890625 1550 l 257 +-318.171875 1630 m 257 + -347.2890625 1550 l 257 + -201.767578125 1480 l 257 + -176.2890625 1550 l 257 + -318.171875 1630 l 257 EndSplineSet EndChar StartChar: uni0307 Encoding: 775 775 350 GlifName: uni0307 -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "top" 508 1542 mark 0 -AnchorPoint: "Samaano-Bold-top" 508 1542 mark 0 -AnchorPoint: "Samaano-Bold-top" 508 1542 mark 0 -AnchorPoint: "top" 508 1542 mark 0 +AnchorPoint: "top" -4 1542 mark 0 +AnchorPoint: "Samaano-Bold-top" -4 1542 mark 0 +AnchorPoint: "Samaano-Bold-top" -4 1542 mark 0 +AnchorPoint: "top" -4 1542 mark 0 LayerCount: 2 Fore SplineSet -474.380859375 1738 m 257 - 437.619140625 1637 l 257 - 549.619140625 1637 l 257 - 586.380859375 1738 l 257 - 474.380859375 1738 l 257 +-37.619140625 1738 m 257 + -74.380859375 1637 l 257 + 37.619140625 1637 l 257 + 74.380859375 1738 l 257 + -37.619140625 1738 l 257 EndSplineSet EndChar StartChar: uni0308 Encoding: 776 776 351 GlifName: uni0308 -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "top" 516 1592 mark 0 -AnchorPoint: "Samaano-Bold-top" 516 1592 mark 0 -AnchorPoint: "Samaano-Bold-top" 516 1592 mark 0 -AnchorPoint: "top" 516 1592 mark 0 +AnchorPoint: "top" 4 1592 mark 0 +AnchorPoint: "Samaano-Bold-top" 4 1592 mark 0 +AnchorPoint: "Samaano-Bold-top" 4 1592 mark 0 +AnchorPoint: "top" 4 1592 mark 0 LayerCount: 2 Fore SplineSet -353.380859375 1738 m 257 - 316.619140625 1637 l 257 - 428.619140625 1637 l 257 - 465.380859375 1738 l 257 - 353.380859375 1738 l 257 -595.380859375 1738 m 257 - 558.619140625 1637 l 257 - 670.619140625 1637 l 257 - 707.380859375 1738 l 257 - 595.380859375 1738 l 257 +-158.619140625 1738 m 257 + -195.380859375 1637 l 257 + -83.380859375 1637 l 257 + -46.619140625 1738 l 257 + -158.619140625 1738 l 257 +83.380859375 1738 m 257 + 46.619140625 1637 l 257 + 158.619140625 1637 l 257 + 195.380859375 1738 l 257 + 83.380859375 1738 l 257 EndSplineSet EndChar StartChar: uni030A Encoding: 778 778 352 GlifName: uni030A_ -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "top" 541 1536 mark 0 -AnchorPoint: "Samaano-Bold-top" 541 1536 mark 0 -AnchorPoint: "Samaano-Bold-top" 541 1536 mark 0 -AnchorPoint: "top" 541 1536 mark 0 +AnchorPoint: "top" 29 1536 mark 0 +AnchorPoint: "Samaano-Bold-top" 29 1536 mark 0 +AnchorPoint: "Samaano-Bold-top" 29 1536 mark 0 +AnchorPoint: "top" 29 1536 mark 0 LayerCount: 2 Fore SplineSet -411.678710938 1818 m 257 - 701.678710938 1818 l 257 - 609.59375 1565 l 257 - 319.59375 1565 l 257 - 411.678710938 1818 l 257 -388.233398438 1847 m 257 - 275.766601562 1538 l 257 - 635.766601562 1538 l 257 - 748.233398438 1847 l 257 - 388.233398438 1847 l 257 +-100.321289062 1818 m 257 + 189.678710938 1818 l 257 + 97.59375 1565 l 257 + -192.40625 1565 l 257 + -100.321289062 1818 l 257 +-123.766601562 1847 m 257 + -236.233398438 1538 l 257 + 123.766601562 1538 l 257 + 236.233398438 1847 l 257 + -123.766601562 1847 l 257 EndSplineSet EndChar StartChar: uni030B Encoding: 779 779 353 GlifName: uni030B_ -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "top" 493 1280 mark 0 -AnchorPoint: "Samaano-Bold-top" 493 1280 mark 0 -AnchorPoint: "Samaano-Bold-top" 493 1280 mark 0 -AnchorPoint: "top" 493 1280 mark 0 +AnchorPoint: "top" -19 1280 mark 0 +AnchorPoint: "Samaano-Bold-top" -19 1280 mark 0 +AnchorPoint: "Samaano-Bold-top" -19 1280 mark 0 +AnchorPoint: "top" -19 1280 mark 0 LayerCount: 2 Fore -Refer: 273 34 N 1 0 0.36397 1 -527.757 0 2 +Refer: 273 34 N 1 0 0.36397 1 -1039.76 0 2 EndChar StartChar: uni030C @@ -12670,141 +12670,141 @@ Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "top" 504 1315 mark 0 -AnchorPoint: "Samaano-Bold-top" 504 1315 mark 0 -AnchorPoint: "Samaano-Bold-top" 504 1315 mark 0 -AnchorPoint: "top" 504 1315 mark 0 +AnchorPoint: "top" -8 1315 mark 0 +AnchorPoint: "Samaano-Bold-top" -8 1315 mark 0 +AnchorPoint: "Samaano-Bold-top" -8 1315 mark 0 +AnchorPoint: "top" -8 1315 mark 0 LayerCount: 2 Fore SplineSet -397.44140625 1286 m 257 - 375.458984375 1613 l 257 - 342.271484375 1596 l 257 - 361.44140625 1286 l 257 - 397.44140625 1286 l 257 -364.078125 1285 m 257 - 401.078125 1285 l 257 - 681.728515625 1600 l 257 - 647.279296875 1618 l 257 - 364.078125 1285 l 257 +-114.55859375 1286 m 257 + -136.541015625 1613 l 257 + -169.728515625 1596 l 257 + -150.55859375 1286 l 257 + -114.55859375 1286 l 257 +-147.921875 1285 m 257 + -110.921875 1285 l 257 + 169.728515625 1600 l 257 + 135.279296875 1618 l 257 + -147.921875 1285 l 257 EndSplineSet EndChar StartChar: uni0326 Encoding: 806 806 355 GlifName: uni0326 -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "base" 534 -5 mark 0 -AnchorPoint: "Samaano-Bold-base" 534 -5 mark 0 -AnchorPoint: "Samaano-Bold-base" 534 -5 mark 0 -AnchorPoint: "base" 534 -5 mark 0 +AnchorPoint: "base" 22 -5 mark 0 +AnchorPoint: "Samaano-Bold-base" 22 -5 mark 0 +AnchorPoint: "Samaano-Bold-base" 22 -5 mark 0 +AnchorPoint: "base" 22 -5 mark 0 LayerCount: 2 Fore SplineSet -522.768554688 0 m 257 - 474.724609375 -132 l 257 - 586.724609375 -132 l 257 - 634.768554688 0 l 257 - 522.768554688 0 l 257 -474.724609375 -132 m 257 - 389.231445312 -246 l 257 - 443.404296875 -273 l 257 - 586.724609375 -132 l 257 - 474.724609375 -132 l 257 +10.7685546875 0 m 257 + -37.275390625 -132 l 257 + 74.724609375 -132 l 257 + 122.768554688 0 l 257 + 10.7685546875 0 l 257 +-37.275390625 -132 m 257 + -122.768554688 -246 l 257 + -68.595703125 -273 l 257 + 74.724609375 -132 l 257 + -37.275390625 -132 l 257 EndSplineSet EndChar StartChar: uni0327 Encoding: 807 807 356 GlifName: uni0327 -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "base" 654 191 mark 0 -AnchorPoint: "Samaano-Bold-base" 654 191 mark 0 -AnchorPoint: "Samaano-Bold-base" 654 191 mark 0 -AnchorPoint: "base" 654 191 mark 0 +AnchorPoint: "base" 142 191 mark 0 +AnchorPoint: "Samaano-Bold-base" 142 191 mark 0 +AnchorPoint: "Samaano-Bold-base" 142 191 mark 0 +AnchorPoint: "base" 142 191 mark 0 LayerCount: 2 Fore SplineSet -422.400390625 180 m 257 - 335.047851562 -60 l 257 - 393.047851562 -60 l 257 - 480.400390625 180 l 257 - 422.400390625 180 l 257 -236.587890625 -347 m 257 - 215.114257812 -406 l 257 - 661.114257812 -406 l 257 - 682.587890625 -347 l 257 - 236.587890625 -347 l 257 -749.885742188 0 m 257 - 614.489257812 -372 l 257 - 673.489257812 -372 l 257 - 808.885742188 0 l 257 - 749.885742188 0 l 257 -362.885742188 0 m 257 - 341.047851562 -60 l 257 - 787.047851562 -60 l 257 - 808.885742188 0 l 257 - 362.885742188 0 l 257 +-89.599609375 180 m 257 + -176.952148438 -60 l 257 + -118.952148438 -60 l 257 + -31.599609375 180 l 257 + -89.599609375 180 l 257 +-275.412109375 -347 m 257 + -296.885742188 -406 l 257 + 149.114257812 -406 l 257 + 170.587890625 -347 l 257 + -275.412109375 -347 l 257 +237.885742188 0 m 257 + 102.489257812 -372 l 257 + 161.489257812 -372 l 257 + 296.885742188 0 l 257 + 237.885742188 0 l 257 +-149.114257812 0 m 257 + -170.952148438 -60 l 257 + 275.047851562 -60 l 257 + 296.885742188 0 l 257 + -149.114257812 0 l 257 EndSplineSet EndChar StartChar: uni0328 Encoding: 808 808 357 GlifName: uni0328 -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "base" 990 23 mark 0 -AnchorPoint: "Samaano-Bold-base" 990 23 mark 0 -AnchorPoint: "Samaano-Bold-base" 990 23 mark 0 -AnchorPoint: "base" 990 23 mark 0 +AnchorPoint: "base" 478 23 mark 0 +AnchorPoint: "Samaano-Bold-base" 478 23 mark 0 +AnchorPoint: "Samaano-Bold-base" 478 23 mark 0 +AnchorPoint: "base" 478 23 mark 0 LayerCount: 2 Fore SplineSet -188.041992188 -351 m 257 - 166.204101562 -411 l 257 - 707.204101562 -411 l 257 - 729.041992188 -351 l 257 - 188.041992188 -351 l 257 -315.795898438 0 m 257 - 166.204101562 -411 l 257 - 226.204101562 -411 l 257 - 375.795898438 0 l 257 - 315.795898438 0 l 257 -315.795898438 0 m 257 - 294.321289062 -59 l 257 - 836.321289062 -59 l 257 - 857.795898438 0 l 257 - 315.795898438 0 l 257 +-323.958007812 -351 m 257 + -345.795898438 -411 l 257 + 195.204101562 -411 l 257 + 217.041992188 -351 l 257 + -323.958007812 -351 l 257 +-196.204101562 0 m 257 + -345.795898438 -411 l 257 + -285.795898438 -411 l 257 + -136.204101562 0 l 257 + -196.204101562 0 l 257 +-196.204101562 0 m 257 + -217.678710938 -59 l 257 + 324.321289062 -59 l 257 + 345.795898438 0 l 257 + -196.204101562 0 l 257 EndSplineSet EndChar StartChar: uni0331 Encoding: 817 817 358 GlifName: uni0331 -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "base" 510 -163 mark 0 -AnchorPoint: "Samaano-Bold-base" 510 -163 mark 0 -AnchorPoint: "Samaano-Bold-base" 510 -163 mark 0 -AnchorPoint: "base" 510 -163 mark 0 +AnchorPoint: "base" -2 -163 mark 0 +AnchorPoint: "Samaano-Bold-base" -2 -163 mark 0 +AnchorPoint: "Samaano-Bold-base" -2 -163 mark 0 +AnchorPoint: "base" -2 -163 mark 0 LayerCount: 2 Fore SplineSet -240.0078125 -204 m 257 - 223.9921875 -248 l 257 - 783.9921875 -248 l 257 - 800.0078125 -204 l 257 - 240.0078125 -204 l 257 +-271.9921875 -204 m 257 + -288.0078125 -248 l 257 + 271.9921875 -248 l 257 + 288.0078125 -204 l 257 + -271.9921875 -204 l 257 EndSplineSet EndChar @@ -12816,30 +12816,30 @@ VWidth: 0 GlyphClass: 2 Flags: HW HStem: 1488 633 -AnchorPoint: "abvm" 520 1622 mark 0 +AnchorPoint: "abvm" -111.979 1622 mark 0 LayerCount: 2 Fore SplineSet -387.013671875 2121 m 257 - 211.580078125 1639 l 257 - 271.580078125 1639 l 257 - 447.013671875 2121 l 257 - 387.013671875 2121 l 257 -401.37890625 2122 m 257 - 379.17578125 2061 l 257 - 992.17578125 2061 l 257 - 1014.37890625 2122 l 257 - 401.37890625 2122 l 257 -599.4921875 1919 m 257 - 554.724609375 1796 l 257 - 671.724609375 1796 l 257 - 716.4921875 1919 l 257 - 599.4921875 1919 l 257 -992.37890625 2122 m 257 - 815.48828125 1636 l 257 - 875.48828125 1636 l 257 - 1052.37890625 2122 l 257 - 992.37890625 2122 l 257 +-244.965820312 2121 m 257 + -420.399414062 1639 l 257 + -360.399414062 1639 l 257 + -184.965820312 2121 l 257 + -244.965820312 2121 l 257 +-230.600585938 2122 m 257 + -252.803710938 2061 l 257 + 360.196289062 2061 l 257 + 382.399414062 2122 l 257 + -230.600585938 2122 l 257 +-32.4873046875 1919 m 257 + -77.2548828125 1796 l 257 + 39.7451171875 1796 l 257 + 84.5126953125 1919 l 257 + -32.4873046875 1919 l 257 +360.399414062 2122 m 257 + 183.508789062 1636 l 257 + 243.508789062 1636 l 257 + 420.399414062 2122 l 257 + 360.399414062 2122 l 257 EndSplineSet EndChar @@ -12850,30 +12850,30 @@ Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "abvm" 540 1617 mark 0 +AnchorPoint: "abvm" -67.4795 1617 mark 0 LayerCount: 2 Fore SplineSet -345.650390625 2124 m 257 - 169.125 1639 l 257 - 229.125 1639 l 257 - 405.650390625 2124 l 257 - 345.650390625 2124 l 257 -225.962890625 1699 m 257 - 204.125 1639 l 257 - 838.125 1639 l 257 - 859.962890625 1699 l 257 - 225.962890625 1699 l 257 -588.6875 1962 m 257 - 543.91796875 1839 l 257 - 660.91796875 1839 l 257 - 705.6875 1962 l 257 - 588.6875 1962 l 257 -985.833984375 2130 m 257 - 807.125 1639 l 257 - 867.125 1639 l 257 - 1045.83398438 2130 l 257 - 985.833984375 2130 l 257 +-261.829101562 2124 m 257 + -438.354492188 1639 l 257 + -378.354492188 1639 l 257 + -201.829101562 2124 l 257 + -261.829101562 2124 l 257 +-381.516601562 1699 m 257 + -403.354492188 1639 l 257 + 230.645507812 1639 l 257 + 252.483398438 1699 l 257 + -381.516601562 1699 l 257 +-18.7919921875 1962 m 257 + -63.5615234375 1839 l 257 + 53.4384765625 1839 l 257 + 98.2080078125 1962 l 257 + -18.7919921875 1962 l 257 +378.354492188 2130 m 257 + 199.645507812 1639 l 257 + 259.645507812 1639 l 257 + 438.354492188 2130 l 257 + 378.354492188 2130 l 257 EndSplineSet EndChar @@ -12884,15 +12884,15 @@ Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "abvm" 135 1592 mark 0 +AnchorPoint: "abvm" -217.54 1592 mark 0 LayerCount: 2 Fore SplineSet -314.377929688 1700 m 257 - 270.702148438 1580 l 257 - 390.702148438 1580 l 257 - 434.377929688 1700 l 257 - 314.377929688 1700 l 257 +-38.162109375 1700 m 257 + -81.837890625 1580 l 257 + 38.162109375 1580 l 257 + 81.837890625 1700 l 257 + -38.162109375 1700 l 257 EndSplineSet EndChar @@ -19579,36 +19579,8 @@ EndSplineSet Ligature2: "blwsBelowBaseSubstitutionsinDevanagarilookup12 subtable" uni0930 uni0942 EndChar -StartChar: uni0930_uni094D.abvs -Encoding: 65628 -1 499 -GlifName: uni0930_uni094D_.abvs -Width: 1024 -VWidth: 0 -GlyphClass: 2 -Flags: HW -LayerCount: 2 -Fore -SplineSet -203.743164062 1550 m 257 - 263.743164062 1550 l 257 - 379.849609375 1869 l 257 - 319.849609375 1869 l 257 - 203.743164062 1550 l 257 -492.256835938 2002 m 257 - 470.418945312 1942 l 257 - 798.418945312 1942 l 257 - 820.256835938 2002 l 257 - 492.256835938 2002 l 257 -492.256835938 2002 m 257 - 319.849609375 1869 l 257 - 379.849609375 1869 l 257 - 470.418945312 1942 l 257 - 492.256835938 2002 l 257 -EndSplineSet -EndChar - StartChar: uni0930_uni094D.blwf -Encoding: 65629 -1 500 +Encoding: 65629 -1 499 GlifName: uni0930_uni094D_.blwf Width: 1024 VWidth: 0 @@ -19637,7 +19609,7 @@ Ligature2: "blwfBelowBaseFormsinDevanagarilookup0 subtable" uni094D uni0930 EndChar StartChar: uni0930_uni094D.half -Encoding: 65630 -1 501 +Encoding: 65630 -1 500 GlifName: uni0930_uni094D_.half Width: 1024 VWidth: 0 @@ -19672,7 +19644,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0931 uni094D EndChar StartChar: uni0930_uni094D.haln -Encoding: 65631 -1 502 +Encoding: 65631 -1 501 GlifName: uni0930_uni094D_.haln Width: 1024 VWidth: 0 @@ -19716,7 +19688,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0930 uni094D EndChar StartChar: uni0930_uni094D.rphf -Encoding: 65632 -1 503 +Encoding: 65632 -1 502 GlifName: uni0930_uni094D_.rphf Width: 1024 VWidth: 0 @@ -19749,26 +19721,8 @@ EndSplineSet Ligature2: "rphfRephForminDevanagarilookup0 subtable" uni0930 uni094D EndChar -StartChar: uni0930_uni094D.vatu -Encoding: 65633 -1 504 -GlifName: uni0930_uni094D_.vatu -Width: 1024 -VWidth: 0 -GlyphClass: 2 -Flags: HW -LayerCount: 2 -Fore -SplineSet -161.634765625 0 m 257 - 281.634765625 0 l 257 - 836.888671875 215 l 257 - 862.365234375 285 l 257 - 161.634765625 0 l 257 -EndSplineSet -EndChar - StartChar: uni0931 -Encoding: 2353 2353 505 +Encoding: 2353 2353 503 GlifName: uni0931 Width: 1024 VWidth: 0 @@ -19807,7 +19761,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0930 uni093C EndChar StartChar: uni0931_uni0930_uni094D.vatu -Encoding: 65634 -1 506 +Encoding: 65634 -1 504 GlifName: uni0931_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -19851,7 +19805,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0931 uni0930_uni09 EndChar StartChar: uni0931_uni094D.haln -Encoding: 65635 -1 507 +Encoding: 65635 -1 505 GlifName: uni0931_uni094D_.haln Width: 1024 VWidth: 0 @@ -19900,7 +19854,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0931 uni094D EndChar StartChar: uni0932 -Encoding: 2354 2354 508 +Encoding: 2354 2354 506 GlifName: uni0932 Width: 1024 VWidth: 0 @@ -19938,7 +19892,7 @@ EndSplineSet EndChar StartChar: uni0932_uni0930_uni094D.vatu -Encoding: 65636 -1 509 +Encoding: 65636 -1 507 GlifName: uni0932_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -19982,7 +19936,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0932 uni0930_uni09 EndChar StartChar: uni0932_uni094D.half -Encoding: 65637 -1 510 +Encoding: 65637 -1 508 GlifName: uni0932_uni094D_.half Width: 1024 VWidth: 0 @@ -20016,7 +19970,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0932 uni094D EndChar StartChar: uni0932_uni094D.haln -Encoding: 65638 -1 511 +Encoding: 65638 -1 509 GlifName: uni0932_uni094D_.haln Width: 1024 VWidth: 0 @@ -20065,7 +20019,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0932 uni094D EndChar StartChar: uni0933 -Encoding: 2355 2355 512 +Encoding: 2355 2355 510 GlifName: uni0933 Width: 1024 VWidth: 0 @@ -20108,7 +20062,7 @@ EndSplineSet EndChar StartChar: uni0933_uni0930_uni094D.vatu -Encoding: 65639 -1 513 +Encoding: 65639 -1 511 GlifName: uni0933_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -20162,7 +20116,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0933 uni0930_uni09 EndChar StartChar: uni0933_uni094D.half -Encoding: 65640 -1 514 +Encoding: 65640 -1 512 GlifName: uni0933_uni094D_.half Width: 1024 VWidth: 0 @@ -20206,7 +20160,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0933 uni094D EndChar StartChar: uni0933_uni094D.haln -Encoding: 65641 -1 515 +Encoding: 65641 -1 513 GlifName: uni0933_uni094D_.haln Width: 1024 VWidth: 0 @@ -20260,7 +20214,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0933 uni094D EndChar StartChar: uni0934 -Encoding: 2356 2356 516 +Encoding: 2356 2356 514 GlifName: uni0934 Width: 1024 VWidth: 0 @@ -20309,7 +20263,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0933 uni093C EndChar StartChar: uni0934_uni0930_uni094D.vatu -Encoding: 65642 -1 517 +Encoding: 65642 -1 515 GlifName: uni0934_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -20368,7 +20322,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0934 uni0930_uni09 EndChar StartChar: uni0934_uni094D.half -Encoding: 65643 -1 518 +Encoding: 65643 -1 516 GlifName: uni0934_uni094D_.half Width: 1024 VWidth: 0 @@ -20417,7 +20371,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0934 uni094D EndChar StartChar: uni0934_uni094D.haln -Encoding: 65644 -1 519 +Encoding: 65644 -1 517 GlifName: uni0934_uni094D_.haln Width: 1024 VWidth: 0 @@ -20476,7 +20430,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0934 uni094D EndChar StartChar: uni0935 -Encoding: 2357 2357 520 +Encoding: 2357 2357 518 GlifName: uni0935 Width: 1024 VWidth: 0 @@ -20514,7 +20468,7 @@ EndSplineSet EndChar StartChar: uni0935_uni0930_uni094D.vatu -Encoding: 65645 -1 521 +Encoding: 65645 -1 519 GlifName: uni0935_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -20558,7 +20512,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0935 uni0930_uni09 EndChar StartChar: uni0935_uni094D.half -Encoding: 65646 -1 522 +Encoding: 65646 -1 520 GlifName: uni0935_uni094D_.half Width: 1024 VWidth: 0 @@ -20592,7 +20546,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0935 uni094D EndChar StartChar: uni0935_uni094D.haln -Encoding: 65647 -1 523 +Encoding: 65647 -1 521 GlifName: uni0935_uni094D_.haln Width: 1024 VWidth: 0 @@ -20641,7 +20595,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0935 uni094D EndChar StartChar: uni0936 -Encoding: 2358 2358 524 +Encoding: 2358 2358 522 GlifName: uni0936 Width: 1024 VWidth: 0 @@ -20689,7 +20643,7 @@ EndSplineSet EndChar StartChar: uni0936_uni0930_uni094D.vatu -Encoding: 65648 -1 525 +Encoding: 65648 -1 523 GlifName: uni0936_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -20743,7 +20697,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0936 uni0930_uni09 EndChar StartChar: uni0936_uni094D.half -Encoding: 65649 -1 526 +Encoding: 65649 -1 524 GlifName: uni0936_uni094D_.half Width: 1024 VWidth: 0 @@ -20782,7 +20736,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0936 uni094D EndChar StartChar: uni0936_uni094D.haln -Encoding: 65650 -1 527 +Encoding: 65650 -1 525 GlifName: uni0936_uni094D_.haln Width: 1024 VWidth: 0 @@ -20841,7 +20795,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0936 uni094D EndChar StartChar: uni0937 -Encoding: 2359 2359 528 +Encoding: 2359 2359 526 GlifName: uni0937 Width: 1024 VWidth: 0 @@ -20879,7 +20833,7 @@ EndSplineSet EndChar StartChar: uni0937_uni0930_uni094D.vatu -Encoding: 65651 -1 529 +Encoding: 65651 -1 527 GlifName: uni0937_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -20923,7 +20877,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0937 uni0930_uni09 EndChar StartChar: uni0937_uni094D.half -Encoding: 65652 -1 530 +Encoding: 65652 -1 528 GlifName: uni0937_uni094D_.half Width: 1024 VWidth: 0 @@ -20957,7 +20911,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0937 uni094D EndChar StartChar: uni0937_uni094D.haln -Encoding: 65653 -1 531 +Encoding: 65653 -1 529 GlifName: uni0937_uni094D_.haln Width: 1024 VWidth: 0 @@ -21006,7 +20960,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0937 uni094D EndChar StartChar: uni0938 -Encoding: 2360 2360 532 +Encoding: 2360 2360 530 GlifName: uni0938 Width: 1024 VWidth: 0 @@ -21044,7 +20998,7 @@ EndSplineSet EndChar StartChar: uni0938_uni0930_uni094D.vatu -Encoding: 65654 -1 533 +Encoding: 65654 -1 531 GlifName: uni0938_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -21088,7 +21042,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0938 uni0930_uni09 EndChar StartChar: uni0938_uni094D.half -Encoding: 65655 -1 534 +Encoding: 65655 -1 532 GlifName: uni0938_uni094D_.half Width: 1024 VWidth: 0 @@ -21122,7 +21076,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0938 uni094D EndChar StartChar: uni0938_uni094D.haln -Encoding: 65656 -1 535 +Encoding: 65656 -1 533 GlifName: uni0938_uni094D_.haln Width: 1024 VWidth: 0 @@ -21171,7 +21125,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0938 uni094D EndChar StartChar: uni0939 -Encoding: 2361 2361 536 +Encoding: 2361 2361 534 GlifName: uni0939 Width: 1024 VWidth: 0 @@ -21224,7 +21178,7 @@ EndSplineSet EndChar StartChar: uni0939_uni0930_uni094D.vatu -Encoding: 65657 -1 537 +Encoding: 65657 -1 535 GlifName: uni0939_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -21283,7 +21237,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0939 uni0930_uni09 EndChar StartChar: uni0939_uni0943.blws -Encoding: 65658 -1 538 +Encoding: 65658 -1 536 GlifName: uni0939_uni0943.blws Width: 1024 VWidth: 0 @@ -21342,7 +21296,7 @@ Ligature2: "blwsBelowBaseSubstitutionsinDevanagarilookup12 subtable" uni0939 uni EndChar StartChar: uni0939_uni094D.half -Encoding: 65659 -1 539 +Encoding: 65659 -1 537 GlifName: uni0939_uni094D_.half Width: 1024 VWidth: 0 @@ -21391,7 +21345,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0939 uni094D EndChar StartChar: uni0939_uni094D.haln -Encoding: 65660 -1 540 +Encoding: 65660 -1 538 GlifName: uni0939_uni094D_.haln Width: 1024 VWidth: 0 @@ -21455,7 +21409,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0939 uni094D EndChar StartChar: uni0939_uni094D_uni092E.pres -Encoding: 65661 -1 541 +Encoding: 65661 -1 539 GlifName: uni0939_uni094D__uni092E_.pres Width: 1024 VWidth: 0 @@ -21529,7 +21483,7 @@ Ligature2: "presPreBaseSubstitutionsinDevanagarilookup0 subtable" uni0939_uni094 EndChar StartChar: uni093A -Encoding: 2362 2362 542 +Encoding: 2362 2362 540 GlifName: uni093A_ Width: 1024 VWidth: 0 @@ -21547,7 +21501,7 @@ EndSplineSet EndChar StartChar: uni093B -Encoding: 2363 2363 543 +Encoding: 2363 2363 541 GlifName: uni093B_ Width: 1024 VWidth: 0 @@ -21570,7 +21524,7 @@ EndSplineSet EndChar StartChar: uni093C -Encoding: 2364 2364 544 +Encoding: 2364 2364 542 GlifName: uni093C_ Width: 1024 VWidth: 0 @@ -21588,7 +21542,7 @@ EndSplineSet EndChar StartChar: uni093D -Encoding: 2365 2365 545 +Encoding: 2365 2365 543 GlifName: uni093D_ Width: 1024 VWidth: 0 @@ -21621,7 +21575,7 @@ EndSplineSet EndChar StartChar: uni093E -Encoding: 2366 2366 546 +Encoding: 2366 2366 544 GlifName: uni093E_ Width: 1024 VWidth: 0 @@ -21644,7 +21598,7 @@ EndSplineSet EndChar StartChar: uni093E_uni0930_uni094D.abvs -Encoding: 65662 -1 547 +Encoding: 65662 -1 545 GlifName: uni093E__uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -21683,7 +21637,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni093E uni0 EndChar StartChar: uni093F -Encoding: 2367 2367 548 +Encoding: 2367 2367 546 GlifName: uni093F_ Width: 1024 VWidth: 0 @@ -21716,7 +21670,7 @@ EndSplineSet EndChar StartChar: uni0940 -Encoding: 2368 2368 549 +Encoding: 2368 2368 547 GlifName: uni0940 Width: 1024 VWidth: 0 @@ -21749,7 +21703,7 @@ EndSplineSet EndChar StartChar: uni0940_uni0902.abvs -Encoding: 65663 -1 550 +Encoding: 65663 -1 548 GlifName: uni0940_uni0902.abvs Width: 1024 VWidth: 0 @@ -21788,7 +21742,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0940 uni0 EndChar StartChar: uni0940_uni0930_uni094D.abvs -Encoding: 65664 -1 551 +Encoding: 65664 -1 549 GlifName: uni0940_uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -21837,7 +21791,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0940 uni0 EndChar StartChar: uni0941 -Encoding: 2369 2369 552 +Encoding: 2369 2369 550 GlifName: uni0941 Width: 0 VWidth: 0 @@ -21871,7 +21825,7 @@ EndSplineSet EndChar StartChar: uni0942 -Encoding: 2370 2370 553 +Encoding: 2370 2370 551 GlifName: uni0942 Width: 0 VWidth: 0 @@ -21905,7 +21859,7 @@ EndSplineSet EndChar StartChar: uni0943 -Encoding: 2371 2371 554 +Encoding: 2371 2371 552 GlifName: uni0943 Width: 0 VWidth: 0 @@ -21934,7 +21888,7 @@ EndSplineSet EndChar StartChar: uni0944 -Encoding: 2372 2372 555 +Encoding: 2372 2372 553 GlifName: uni0944 Width: 0 VWidth: 0 @@ -21968,7 +21922,7 @@ EndSplineSet EndChar StartChar: uni0945 -Encoding: 2373 2373 556 +Encoding: 2373 2373 554 GlifName: uni0945 Width: 1024 VWidth: 0 @@ -22001,7 +21955,7 @@ EndSplineSet EndChar StartChar: uni0945_uni0902.abvs -Encoding: 65673 -1 557 +Encoding: 65673 -1 555 GlifName: uni0945_uni0902.abvs Width: 1024 VWidth: 0 @@ -22040,7 +21994,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0945 uni0 EndChar StartChar: uni0945_uni0930_uni094D.abvs -Encoding: 65674 -1 558 +Encoding: 65674 -1 556 GlifName: uni0945_uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -22089,7 +22043,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0945 uni0 EndChar StartChar: uni0946 -Encoding: 2374 2374 559 +Encoding: 2374 2374 557 GlifName: uni0946 Width: 1024 VWidth: 0 @@ -22122,7 +22076,7 @@ EndSplineSet EndChar StartChar: uni0946_uni0902.abvs -Encoding: 65675 -1 560 +Encoding: 65675 -1 558 GlifName: uni0946_uni0902.abvs Width: 1024 VWidth: 0 @@ -22161,7 +22115,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0946 uni0 EndChar StartChar: uni0946_uni0930_uni094D.abvs -Encoding: 65676 -1 561 +Encoding: 65676 -1 559 GlifName: uni0946_uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -22210,7 +22164,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0946 uni0 EndChar StartChar: uni0947 -Encoding: 2375 2375 562 +Encoding: 2375 2375 560 GlifName: uni0947 Width: 1024 VWidth: 0 @@ -22233,7 +22187,7 @@ EndSplineSet EndChar StartChar: uni0947_uni0902.abvs -Encoding: 65677 -1 563 +Encoding: 65677 -1 561 GlifName: uni0947_uni0902.abvs Width: 1024 VWidth: 0 @@ -22262,7 +22216,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0947 uni0 EndChar StartChar: uni0947_uni0930_uni094D.abvs -Encoding: 65678 -1 564 +Encoding: 65678 -1 562 GlifName: uni0947_uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -22301,7 +22255,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0947 uni0 EndChar StartChar: uni0948 -Encoding: 2376 2376 565 +Encoding: 2376 2376 563 GlifName: uni0948 Width: 1024 VWidth: 0 @@ -22329,7 +22283,7 @@ EndSplineSet EndChar StartChar: uni0948_uni0902.abvs -Encoding: 65679 -1 566 +Encoding: 65679 -1 564 GlifName: uni0948_uni0902.abvs Width: 1024 VWidth: 0 @@ -22363,7 +22317,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0948 uni0 EndChar StartChar: uni0948_uni0930_uni094D.abvs -Encoding: 65680 -1 567 +Encoding: 65680 -1 565 GlifName: uni0948_uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -22407,7 +22361,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0948 uni0 EndChar StartChar: uni0949 -Encoding: 2377 2377 568 +Encoding: 2377 2377 566 GlifName: uni0949 Width: 1024 VWidth: 0 @@ -22445,7 +22399,7 @@ EndSplineSet EndChar StartChar: uni0949_uni0902.abvs -Encoding: 65681 -1 569 +Encoding: 65681 -1 567 GlifName: uni0949_uni0902.abvs Width: 1024 VWidth: 0 @@ -22489,7 +22443,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0949 uni0 EndChar StartChar: uni0949_uni0930_uni094D.abvs -Encoding: 65682 -1 570 +Encoding: 65682 -1 568 GlifName: uni0949_uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -22543,7 +22497,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0949 uni0 EndChar StartChar: uni094A -Encoding: 2378 2378 571 +Encoding: 2378 2378 569 GlifName: uni094A_ Width: 1024 VWidth: 0 @@ -22581,7 +22535,7 @@ EndSplineSet EndChar StartChar: uni094A_uni0902.abvs -Encoding: 65683 -1 572 +Encoding: 65683 -1 570 GlifName: uni094A__uni0902.abvs Width: 1024 VWidth: 0 @@ -22625,7 +22579,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094A uni0 EndChar StartChar: uni094A_uni0930_uni094D.abvs -Encoding: 65684 -1 573 +Encoding: 65684 -1 571 GlifName: uni094A__uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -22679,7 +22633,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094A uni0 EndChar StartChar: uni094B -Encoding: 2379 2379 574 +Encoding: 2379 2379 572 GlifName: uni094B_ Width: 1024 VWidth: 0 @@ -22707,7 +22661,7 @@ EndSplineSet EndChar StartChar: uni094B_uni0902.abvs -Encoding: 65685 -1 575 +Encoding: 65685 -1 573 GlifName: uni094B__uni0902.abvs Width: 1024 VWidth: 0 @@ -22741,7 +22695,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094B uni0 EndChar StartChar: uni094B_uni0930_uni094D.abvs -Encoding: 65686 -1 576 +Encoding: 65686 -1 574 GlifName: uni094B__uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -22785,7 +22739,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094B uni0 EndChar StartChar: uni094C -Encoding: 2380 2380 577 +Encoding: 2380 2380 575 GlifName: uni094C_ Width: 1024 VWidth: 0 @@ -22818,7 +22772,7 @@ EndSplineSet EndChar StartChar: uni094C_uni0902.abvs -Encoding: 65687 -1 578 +Encoding: 65687 -1 576 GlifName: uni094C__uni0902.abvs Width: 1024 VWidth: 0 @@ -22857,7 +22811,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094C uni0 EndChar StartChar: uni094C_uni0930_uni094D.abvs -Encoding: 65688 -1 579 +Encoding: 65688 -1 577 GlifName: uni094C__uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -22906,7 +22860,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094C uni0 EndChar StartChar: uni094D -Encoding: 2381 2381 580 +Encoding: 2381 2381 578 GlifName: uni094D_ Width: 1024 VWidth: 0 @@ -22930,7 +22884,7 @@ EndSplineSet EndChar StartChar: uni094E -Encoding: 2382 2382 581 +Encoding: 2382 2382 579 GlifName: uni094E_ Width: 1024 VWidth: 0 @@ -22953,7 +22907,7 @@ EndSplineSet EndChar StartChar: uni094F -Encoding: 2383 2383 582 +Encoding: 2383 2383 580 GlifName: uni094F_ Width: 1024 VWidth: 0 @@ -23006,7 +22960,7 @@ EndSplineSet EndChar StartChar: uni0950 -Encoding: 2384 2384 583 +Encoding: 2384 2384 581 GlifName: uni0950 Width: 1024 VWidth: 0 @@ -23064,83 +23018,83 @@ EndSplineSet EndChar StartChar: uni0951 -Encoding: 2385 2385 584 +Encoding: 2385 2385 582 GlifName: uni0951 -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "abvm" -300 1691 mark 0 +AnchorPoint: "abvm" -812 1691 mark 0 LayerCount: 2 Fore SplineSet -546.421875 1968 m 257 - 417.578125 1614 l 257 - 477.578125 1614 l 257 - 606.421875 1968 l 257 - 546.421875 1968 l 257 +34.421875 1968 m 257 + -94.421875 1614 l 257 + -34.421875 1614 l 257 + 94.421875 1968 l 257 + 34.421875 1968 l 257 EndSplineSet EndChar StartChar: uni0952 -Encoding: 2386 2386 585 +Encoding: 2386 2386 583 GlifName: uni0952 -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "blwm" -454 -14 mark 0 +AnchorPoint: "blwm" -966 -14 mark 0 LayerCount: 2 Fore SplineSet -108.918945312 -225 m 257 - 87.0810546875 -285 l 257 - 915.081054688 -285 l 257 - 936.918945312 -225 l 257 - 108.918945312 -225 l 257 +-403.081054688 -225 m 257 + -424.918945312 -285 l 257 + 403.081054688 -285 l 257 + 424.918945312 -225 l 257 + -403.081054688 -225 l 257 EndSplineSet EndChar StartChar: uni0953 -Encoding: 2387 2387 586 +Encoding: 2387 2387 584 GlifName: uni0953 -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "abvm" -157 1295 mark 0 +AnchorPoint: "abvm" -669 1295 mark 0 LayerCount: 2 Fore SplineSet -437.892578125 1789 m 257 - 542.107421875 1339 l 257 - 586.107421875 1339 l 257 - 544.271484375 1834 l 257 - 437.892578125 1789 l 257 +-74.107421875 1789 m 257 + 30.107421875 1339 l 257 + 74.107421875 1339 l 257 + 32.271484375 1834 l 257 + -74.107421875 1789 l 257 EndSplineSet EndChar StartChar: uni0954 -Encoding: 2388 2388 587 +Encoding: 2388 2388 585 GlifName: uni0954 -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "abvm" -311 1295 mark 0 +AnchorPoint: "abvm" -823 1295 mark 0 LayerCount: 2 Fore SplineSet -632.724609375 1894 m 257 - 293.462890625 1385 l 257 - 341.01171875 1392 l 257 - 730.537109375 1877 l 257 - 632.724609375 1894 l 257 +120.724609375 1894 m 257 + -218.537109375 1385 l 257 + -170.98828125 1392 l 257 + 218.537109375 1877 l 257 + 120.724609375 1894 l 257 EndSplineSet EndChar StartChar: uni0955 -Encoding: 2389 2389 588 +Encoding: 2389 2389 586 GlifName: uni0955 Width: 1024 VWidth: 0 @@ -23178,7 +23132,7 @@ EndSplineSet EndChar StartChar: uni0956 -Encoding: 2390 2390 589 +Encoding: 2390 2390 587 GlifName: uni0956 Width: 1024 VWidth: 0 @@ -23211,7 +23165,7 @@ EndSplineSet EndChar StartChar: uni0957 -Encoding: 2391 2391 590 +Encoding: 2391 2391 588 GlifName: uni0957 Width: 1024 VWidth: 0 @@ -23259,7 +23213,7 @@ EndSplineSet EndChar StartChar: uni0958 -Encoding: 2392 2392 591 +Encoding: 2392 2392 589 GlifName: uni0958 Width: 1024 VWidth: 0 @@ -23313,7 +23267,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0915 uni093C EndChar StartChar: uni0958_uni0930_uni094D.vatu -Encoding: 65689 -1 592 +Encoding: 65689 -1 590 GlifName: uni0958_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -23372,7 +23326,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0958 uni0930_uni09 EndChar StartChar: uni0958_uni094D.half -Encoding: 65690 -1 593 +Encoding: 65690 -1 591 GlifName: uni0958_uni094D_.half Width: 1024 VWidth: 0 @@ -23421,7 +23375,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0958 uni094D EndChar StartChar: uni0958_uni094D.haln -Encoding: 65691 -1 594 +Encoding: 65691 -1 592 GlifName: uni0958_uni094D_.haln Width: 1024 VWidth: 0 @@ -23485,7 +23439,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0958 uni094D EndChar StartChar: uni0959 -Encoding: 2393 2393 595 +Encoding: 2393 2393 593 GlifName: uni0959 Width: 1024 VWidth: 0 @@ -23544,7 +23498,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0916 uni093C EndChar StartChar: uni0959_uni0930_uni094D.vatu -Encoding: 65692 -1 596 +Encoding: 65692 -1 594 GlifName: uni0959_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -23608,7 +23562,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0959 uni0930_uni09 EndChar StartChar: uni0959_uni094D.half -Encoding: 65693 -1 597 +Encoding: 65693 -1 595 GlifName: uni0959_uni094D_.half Width: 1024 VWidth: 0 @@ -23662,7 +23616,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0959 uni094D EndChar StartChar: uni0959_uni094D.haln -Encoding: 65694 -1 598 +Encoding: 65694 -1 596 GlifName: uni0959_uni094D_.haln Width: 1024 VWidth: 0 @@ -23731,7 +23685,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0959 uni094D EndChar StartChar: uni095A -Encoding: 2394 2394 599 +Encoding: 2394 2394 597 GlifName: uni095A_ Width: 1024 VWidth: 0 @@ -23775,7 +23729,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0917 uni093C EndChar StartChar: uni095A_uni0930_uni094D.vatu -Encoding: 65695 -1 600 +Encoding: 65695 -1 598 GlifName: uni095A__uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -23824,7 +23778,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095A uni0930_uni09 EndChar StartChar: uni095A_uni094D.half -Encoding: 65696 -1 601 +Encoding: 65696 -1 599 GlifName: uni095A__uni094D_.half Width: 1024 VWidth: 0 @@ -23863,7 +23817,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni095A uni094D EndChar StartChar: uni095A_uni094D.haln -Encoding: 65697 -1 602 +Encoding: 65697 -1 600 GlifName: uni095A__uni094D_.haln Width: 1024 VWidth: 0 @@ -23917,7 +23871,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095A uni094D EndChar StartChar: uni095B -Encoding: 2395 2395 603 +Encoding: 2395 2395 601 GlifName: uni095B_ Width: 1024 VWidth: 0 @@ -23966,7 +23920,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni091C uni093C EndChar StartChar: uni095B_uni0930_uni094D.vatu -Encoding: 65698 -1 604 +Encoding: 65698 -1 602 GlifName: uni095B__uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -24020,7 +23974,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095B uni0930_uni09 EndChar StartChar: uni095B_uni094D.half -Encoding: 65699 -1 605 +Encoding: 65699 -1 603 GlifName: uni095B__uni094D_.half Width: 1024 VWidth: 0 @@ -24064,7 +24018,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni095B uni094D EndChar StartChar: uni095B_uni094D.haln -Encoding: 65700 -1 606 +Encoding: 65700 -1 604 GlifName: uni095B__uni094D_.haln Width: 1024 VWidth: 0 @@ -24123,7 +24077,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095B uni094D EndChar StartChar: uni095C -Encoding: 2396 2396 607 +Encoding: 2396 2396 605 GlifName: uni095C_ Width: 1024 VWidth: 0 @@ -24182,7 +24136,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0921 uni093C EndChar StartChar: uni095C_uni0930_uni094D.vatu -Encoding: 65701 -1 608 +Encoding: 65701 -1 606 GlifName: uni095C__uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -24251,7 +24205,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095C uni0930_uni09 EndChar StartChar: uni095C_uni094D.haln -Encoding: 65702 -1 609 +Encoding: 65702 -1 607 GlifName: uni095C__uni094D_.haln Width: 1024 VWidth: 0 @@ -24320,7 +24274,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095C uni094D EndChar StartChar: uni095D -Encoding: 2397 2397 610 +Encoding: 2397 2397 608 GlifName: uni095D_ Width: 1024 VWidth: 0 @@ -24374,7 +24328,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0922 uni093C EndChar StartChar: uni095D_uni0930_uni094D.vatu -Encoding: 65703 -1 611 +Encoding: 65703 -1 609 GlifName: uni095D__uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -24438,7 +24392,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095D uni0930_uni09 EndChar StartChar: uni095D_uni094D.haln -Encoding: 65704 -1 612 +Encoding: 65704 -1 610 GlifName: uni095D__uni094D_.haln Width: 1024 VWidth: 0 @@ -24502,7 +24456,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095D uni094D EndChar StartChar: uni095E -Encoding: 2398 2398 613 +Encoding: 2398 2398 611 GlifName: uni095E_ Width: 1024 VWidth: 0 @@ -24546,7 +24500,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni092B uni093C EndChar StartChar: uni095E_uni0930_uni094D.vatu -Encoding: 65705 -1 614 +Encoding: 65705 -1 612 GlifName: uni095E__uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -24595,7 +24549,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095E uni0930_uni09 EndChar StartChar: uni095E_uni094D.half -Encoding: 65706 -1 615 +Encoding: 65706 -1 613 GlifName: uni095E__uni094D_.half Width: 1024 VWidth: 0 @@ -24634,7 +24588,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni095E uni094D EndChar StartChar: uni095E_uni094D.haln -Encoding: 65707 -1 616 +Encoding: 65707 -1 614 GlifName: uni095E__uni094D_.haln Width: 1024 VWidth: 0 @@ -24688,7 +24642,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095E uni094D EndChar StartChar: uni095F -Encoding: 2399 2399 617 +Encoding: 2399 2399 615 GlifName: uni095F_ Width: 1024 VWidth: 0 @@ -24732,7 +24686,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni092F uni093C EndChar StartChar: uni095F_uni0930_uni094D.vatu -Encoding: 65708 -1 618 +Encoding: 65708 -1 616 GlifName: uni095F__uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -24781,7 +24735,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095F uni0930_uni09 EndChar StartChar: uni095F_uni094D.half -Encoding: 65709 -1 619 +Encoding: 65709 -1 617 GlifName: uni095F__uni094D_.half Width: 1024 VWidth: 0 @@ -24835,7 +24789,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni095F uni094D EndChar StartChar: uni095F_uni094D.haln -Encoding: 65710 -1 620 +Encoding: 65710 -1 618 GlifName: uni095F__uni094D_.haln Width: 1024 VWidth: 0 @@ -24889,7 +24843,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095F uni094D EndChar StartChar: uni0960 -Encoding: 2400 2400 621 +Encoding: 2400 2400 619 GlifName: uni0960 Width: 1024 VWidth: 0 @@ -24947,7 +24901,7 @@ EndSplineSet EndChar StartChar: uni0961 -Encoding: 2401 2401 622 +Encoding: 2401 2401 620 GlifName: uni0961 Width: 1024 VWidth: 0 @@ -25000,7 +24954,7 @@ EndSplineSet EndChar StartChar: uni0962 -Encoding: 2402 2402 623 +Encoding: 2402 2402 621 GlifName: uni0962 Width: 1024 VWidth: 0 @@ -25043,7 +24997,7 @@ EndSplineSet EndChar StartChar: uni0963 -Encoding: 2403 2403 624 +Encoding: 2403 2403 622 GlifName: uni0963 Width: 1024 VWidth: 0 @@ -25091,7 +25045,7 @@ EndSplineSet EndChar StartChar: uni0964 -Encoding: 2404 2404 625 +Encoding: 2404 2404 623 GlifName: uni0964 Width: 1024 VWidth: 0 @@ -25109,7 +25063,7 @@ EndSplineSet EndChar StartChar: uni0965 -Encoding: 2405 2405 626 +Encoding: 2405 2405 624 GlifName: uni0965 Width: 1024 VWidth: 0 @@ -25132,7 +25086,7 @@ EndSplineSet EndChar StartChar: uni0966 -Encoding: 2406 2406 627 +Encoding: 2406 2406 625 GlifName: uni0966 Width: 1024 VWidth: 0 @@ -25165,7 +25119,7 @@ EndSplineSet EndChar StartChar: uni0967 -Encoding: 2407 2407 628 +Encoding: 2407 2407 626 GlifName: uni0967 Width: 1024 VWidth: 0 @@ -25198,7 +25152,7 @@ EndSplineSet EndChar StartChar: uni0968 -Encoding: 2408 2408 629 +Encoding: 2408 2408 627 GlifName: uni0968 Width: 1024 VWidth: 0 @@ -25236,7 +25190,7 @@ EndSplineSet EndChar StartChar: uni0969 -Encoding: 2409 2409 630 +Encoding: 2409 2409 628 GlifName: uni0969 Width: 1024 VWidth: 0 @@ -25274,7 +25228,7 @@ EndSplineSet EndChar StartChar: uni096A -Encoding: 2410 2410 631 +Encoding: 2410 2410 629 GlifName: uni096A_ Width: 1024 VWidth: 0 @@ -25322,7 +25276,7 @@ EndSplineSet EndChar StartChar: uni096B -Encoding: 2411 2411 632 +Encoding: 2411 2411 630 GlifName: uni096B_ Width: 1024 VWidth: 0 @@ -25355,7 +25309,7 @@ EndSplineSet EndChar StartChar: uni096C -Encoding: 2412 2412 633 +Encoding: 2412 2412 631 GlifName: uni096C_ Width: 1024 VWidth: 0 @@ -25393,7 +25347,7 @@ EndSplineSet EndChar StartChar: uni096D -Encoding: 2413 2413 634 +Encoding: 2413 2413 632 GlifName: uni096D_ Width: 1024 VWidth: 0 @@ -25431,7 +25385,7 @@ EndSplineSet EndChar StartChar: uni096E -Encoding: 2414 2414 635 +Encoding: 2414 2414 633 GlifName: uni096E_ Width: 1024 VWidth: 0 @@ -25459,7 +25413,7 @@ EndSplineSet EndChar StartChar: uni096F -Encoding: 2415 2415 636 +Encoding: 2415 2415 634 GlifName: uni096F_ Width: 1024 VWidth: 0 @@ -25497,7 +25451,7 @@ EndSplineSet EndChar StartChar: uni0970 -Encoding: 2416 2416 637 +Encoding: 2416 2416 635 GlifName: uni0970 Width: 1024 VWidth: 0 @@ -25515,7 +25469,7 @@ EndSplineSet EndChar StartChar: uni0971 -Encoding: 2417 2417 638 +Encoding: 2417 2417 636 GlifName: uni0971 Width: 1024 VWidth: 0 @@ -25533,7 +25487,7 @@ EndSplineSet EndChar StartChar: uni0972 -Encoding: 2418 2418 639 +Encoding: 2418 2418 637 GlifName: uni0972 Width: 1024 VWidth: 0 @@ -25591,7 +25545,7 @@ EndSplineSet EndChar StartChar: uni0973 -Encoding: 2419 2419 640 +Encoding: 2419 2419 638 GlifName: uni0973 Width: 1024 VWidth: 0 @@ -25639,7 +25593,7 @@ EndSplineSet EndChar StartChar: uni0974 -Encoding: 2420 2420 641 +Encoding: 2420 2420 639 GlifName: uni0974 Width: 1024 VWidth: 0 @@ -25687,7 +25641,7 @@ EndSplineSet EndChar StartChar: uni0975 -Encoding: 2421 2421 642 +Encoding: 2421 2421 640 GlifName: uni0975 Width: 1024 VWidth: 0 @@ -25760,7 +25714,7 @@ EndSplineSet EndChar StartChar: uni0976 -Encoding: 2422 2422 643 +Encoding: 2422 2422 641 GlifName: uni0976 Width: 1024 VWidth: 0 @@ -25818,7 +25772,7 @@ EndSplineSet EndChar StartChar: uni0977 -Encoding: 2423 2423 644 +Encoding: 2423 2423 642 GlifName: uni0977 Width: 1024 VWidth: 0 @@ -25891,7 +25845,7 @@ EndSplineSet EndChar StartChar: uni0978 -Encoding: 2424 2424 645 +Encoding: 2424 2424 643 GlifName: uni0978 Width: 1024 VWidth: 0 @@ -25924,7 +25878,7 @@ EndSplineSet EndChar StartChar: uni0979 -Encoding: 2425 2425 646 +Encoding: 2425 2425 644 GlifName: uni0979 Width: 1024 VWidth: 0 @@ -25982,7 +25936,7 @@ EndSplineSet EndChar StartChar: uni097A -Encoding: 2426 2426 647 +Encoding: 2426 2426 645 GlifName: uni097A_ Width: 1024 VWidth: 0 @@ -26025,7 +25979,7 @@ EndSplineSet EndChar StartChar: uni097B -Encoding: 2427 2427 648 +Encoding: 2427 2427 646 GlifName: uni097B_ Width: 1024 VWidth: 0 @@ -26068,7 +26022,7 @@ EndSplineSet EndChar StartChar: uni097C -Encoding: 2428 2428 649 +Encoding: 2428 2428 647 GlifName: uni097C_ Width: 1024 VWidth: 0 @@ -26116,7 +26070,7 @@ EndSplineSet EndChar StartChar: uni097D -Encoding: 2429 2429 650 +Encoding: 2429 2429 648 GlifName: uni097D_ Width: 1024 VWidth: 0 @@ -26149,7 +26103,7 @@ EndSplineSet EndChar StartChar: uni097E -Encoding: 2430 2430 651 +Encoding: 2430 2430 649 GlifName: uni097E_ Width: 1024 VWidth: 0 @@ -26197,7 +26151,7 @@ EndSplineSet EndChar StartChar: uni097F -Encoding: 2431 2431 652 +Encoding: 2431 2431 650 GlifName: uni097F_ Width: 1024 VWidth: 0 @@ -26245,7 +26199,7 @@ EndSplineSet EndChar StartChar: uni1E0C -Encoding: 7692 7692 653 +Encoding: 7692 7692 651 GlifName: uni1E_0C_ Width: 1024 VWidth: 0 @@ -26258,7 +26212,7 @@ Refer: 19 68 N 1 0 0.36397 1 -158.495 0 2 EndChar StartChar: uni1E0D -Encoding: 7693 7693 654 +Encoding: 7693 7693 652 GlifName: uni1E_0D_ Width: 1024 VWidth: 0 @@ -26271,7 +26225,7 @@ Refer: 160 100 N 1 0 0.36397 1 -277.891 0 2 EndChar StartChar: uni1E34 -Encoding: 7732 7732 655 +Encoding: 7732 7732 653 GlifName: uni1E_34 Width: 1024 VWidth: 0 @@ -26284,7 +26238,7 @@ Refer: 56 75 N 1 0 0.36397 1 -282.987 0 2 EndChar StartChar: uni1E35 -Encoding: 7733 7733 656 +Encoding: 7733 7733 654 GlifName: uni1E_35 Width: 1024 VWidth: 0 @@ -26297,7 +26251,7 @@ Refer: 224 107 N 1 0 0.36397 1 -187.081 0 2 EndChar StartChar: uni1E36 -Encoding: 7734 7734 657 +Encoding: 7734 7734 655 GlifName: uni1E_36 Width: 1024 VWidth: 0 @@ -26310,7 +26264,7 @@ Refer: 57 76 N 1 0 0.36397 1 -204.145 0 2 EndChar StartChar: uni1E37 -Encoding: 7735 7735 658 +Encoding: 7735 7735 656 GlifName: uni1E_37 Width: 1024 VWidth: 0 @@ -26323,7 +26277,7 @@ Refer: 225 108 N 1 0 0.36397 1 -282.623 0 2 EndChar StartChar: uni1E38 -Encoding: 7736 7736 659 +Encoding: 7736 7736 657 GlifName: uni1E_38 Width: 1024 VWidth: 0 @@ -26332,11 +26286,11 @@ Flags: HW LayerCount: 2 Fore Refer: 348 772 N 1 0 0.36397 1 -761.11 90 2 -Refer: 657 7734 N 1 0 0.36397 1 -282.623 0 2 +Refer: 655 7734 N 1 0 0.36397 1 -282.623 0 2 EndChar StartChar: uni1E39 -Encoding: 7737 7737 660 +Encoding: 7737 7737 658 GlifName: uni1E_39 Width: 1024 VWidth: 0 @@ -26345,11 +26299,11 @@ Flags: HW LayerCount: 2 Fore Refer: 348 772 N 1 0 0.36397 1 -772.6 123 2 -Refer: 658 7735 N 1 0 0.36397 1 -282.623 0 2 +Refer: 656 7735 N 1 0 0.36397 1 -282.623 0 2 EndChar StartChar: uni1E3A -Encoding: 7738 7738 661 +Encoding: 7738 7738 659 GlifName: uni1E_3A_ Width: 1024 VWidth: 0 @@ -26362,7 +26316,7 @@ Refer: 57 76 N 1 0 0.36397 1 -204.145 0 2 EndChar StartChar: uni1E3B -Encoding: 7739 7739 662 +Encoding: 7739 7739 660 GlifName: uni1E_3B_ Width: 1024 VWidth: 0 @@ -26375,7 +26329,7 @@ Refer: 225 108 N 1 0 0.36397 1 -270.091 0 2 EndChar StartChar: uni1E42 -Encoding: 7746 7746 663 +Encoding: 7746 7746 661 GlifName: uni1E_42 Width: 1024 VWidth: 0 @@ -26388,7 +26342,7 @@ Refer: 62 77 N 1 0 0.36397 1 -282.623 0 2 EndChar StartChar: uni1E43 -Encoding: 7747 7747 664 +Encoding: 7747 7747 662 GlifName: uni1E_43 Width: 1024 VWidth: 0 @@ -26401,7 +26355,7 @@ Refer: 232 109 N 1 0 0.36397 1 -186.171 0 2 EndChar StartChar: uni1E44 -Encoding: 7748 7748 665 +Encoding: 7748 7748 663 GlifName: uni1E_44 Width: 1024 VWidth: 0 @@ -26414,7 +26368,7 @@ Refer: 63 78 N 1 0 0.36397 1 -282.623 0 2 EndChar StartChar: uni1E45 -Encoding: 7749 7749 666 +Encoding: 7749 7749 664 GlifName: uni1E_45 Width: 1024 VWidth: 0 @@ -26427,7 +26381,7 @@ Refer: 237 110 N 1 0 0.36397 1 -186.171 0 2 EndChar StartChar: uni1E46 -Encoding: 7750 7750 667 +Encoding: 7750 7750 665 GlifName: uni1E_46 Width: 1024 VWidth: 0 @@ -26440,7 +26394,7 @@ Refer: 63 78 N 1 0 0.36397 1 -282.623 0 2 EndChar StartChar: uni1E47 -Encoding: 7751 7751 668 +Encoding: 7751 7751 666 GlifName: uni1E_47 Width: 1024 VWidth: 0 @@ -26453,7 +26407,7 @@ Refer: 237 110 N 1 0 0.36397 1 -186.171 0 2 EndChar StartChar: uni1E48 -Encoding: 7752 7752 669 +Encoding: 7752 7752 667 GlifName: uni1E_48 Width: 1024 VWidth: 0 @@ -26466,7 +26420,7 @@ Refer: 63 78 N 1 0 0.36397 1 -282.623 0 2 EndChar StartChar: uni1E49 -Encoding: 7753 7753 670 +Encoding: 7753 7753 668 GlifName: uni1E_49 Width: 1024 VWidth: 0 @@ -26479,7 +26433,7 @@ Refer: 237 110 N 1 0 0.36397 1 -164.593 0 2 EndChar StartChar: uni1E4C -Encoding: 7756 7756 671 +Encoding: 7756 7756 669 GlifName: uni1E_4C_ Width: 1024 VWidth: 0 @@ -26492,7 +26446,7 @@ Refer: 77 213 N 1 0 0.36397 1 -247.449 0 2 EndChar StartChar: uni1E4D -Encoding: 7757 7757 672 +Encoding: 7757 7757 670 GlifName: uni1E_4D_ Width: 1024 VWidth: 0 @@ -26505,7 +26459,7 @@ Refer: 259 245 N 1 0 0.36397 1 -57.4992 0 2 EndChar StartChar: uni1E58 -Encoding: 7768 7768 673 +Encoding: 7768 7768 671 GlifName: uni1E_58 Width: 1024 VWidth: 0 @@ -26518,7 +26472,7 @@ Refer: 80 82 N 1 0 0.36397 1 -282.077 0 2 EndChar StartChar: uni1E59 -Encoding: 7769 7769 674 +Encoding: 7769 7769 672 GlifName: uni1E_59 Width: 1024 VWidth: 0 @@ -26531,7 +26485,7 @@ Refer: 281 114 N 1 0 0.36397 1 -186.171 0 2 EndChar StartChar: uni1E5A -Encoding: 7770 7770 675 +Encoding: 7770 7770 673 GlifName: uni1E_5A_ Width: 1024 VWidth: 0 @@ -26544,7 +26498,7 @@ Refer: 80 82 N 1 0 0.36397 1 -282.077 0 2 EndChar StartChar: uni1E5B -Encoding: 7771 7771 676 +Encoding: 7771 7771 674 GlifName: uni1E_5B_ Width: 1024 VWidth: 0 @@ -26557,7 +26511,7 @@ Refer: 281 114 N 1 0 0.36397 1 -138.131 0 2 EndChar StartChar: uni1E5C -Encoding: 7772 7772 677 +Encoding: 7772 7772 675 GlifName: uni1E_5C_ Width: 1024 VWidth: 0 @@ -26566,11 +26520,11 @@ Flags: HW LayerCount: 2 Fore Refer: 348 772 N 1 0 0.36397 1 -780.098 124 2 -Refer: 675 7770 N 1 0 0.36397 1 -282.077 0 2 +Refer: 673 7770 N 1 0 0.36397 1 -282.077 0 2 EndChar StartChar: uni1E5D -Encoding: 7773 7773 678 +Encoding: 7773 7773 676 GlifName: uni1E_5D_ Width: 1024 VWidth: 0 @@ -26579,11 +26533,11 @@ Flags: HW LayerCount: 2 Fore Refer: 348 772 N 1 0 0.36397 1 -727.939 -403 2 -Refer: 676 7771 N 1 0 0.36397 1 -149.956 0 2 +Refer: 674 7771 N 1 0 0.36397 1 -149.956 0 2 EndChar StartChar: uni1E5E -Encoding: 7774 7774 679 +Encoding: 7774 7774 677 GlifName: uni1E_5E_ Width: 1024 VWidth: 0 @@ -26596,7 +26550,7 @@ Refer: 80 82 N 1 0 0.36397 1 -282.077 0 2 EndChar StartChar: uni1E5F -Encoding: 7775 7775 680 +Encoding: 7775 7775 678 GlifName: uni1E_5F_ Width: 1024 VWidth: 0 @@ -26609,7 +26563,7 @@ Refer: 281 114 N 1 0 0.36397 1 -29.5934 0 2 EndChar StartChar: uni1E62 -Encoding: 7778 7778 681 +Encoding: 7778 7778 679 GlifName: uni1E_62 Width: 1024 VWidth: 0 @@ -26622,7 +26576,7 @@ Refer: 83 83 N 1 0 0.36397 1 -282.623 0 2 EndChar StartChar: uni1E63 -Encoding: 7779 7779 682 +Encoding: 7779 7779 680 GlifName: uni1E_63 Width: 1024 VWidth: 0 @@ -26635,7 +26589,7 @@ Refer: 286 115 N 1 0 0.36397 1 -186.171 0 2 EndChar StartChar: uni1E6C -Encoding: 7788 7788 683 +Encoding: 7788 7788 681 GlifName: uni1E_6C_ Width: 1024 VWidth: 0 @@ -26648,7 +26602,7 @@ Refer: 88 84 N 1 0 0.36397 1 -234.448 0 2 EndChar StartChar: uni1E6D -Encoding: 7789 7789 684 +Encoding: 7789 7789 682 GlifName: uni1E_6D_ Width: 1024 VWidth: 0 @@ -26661,7 +26615,7 @@ Refer: 298 116 N 1 0 0.36397 1 -175.664 0 2 EndChar StartChar: uni1E8E -Encoding: 7822 7822 685 +Encoding: 7822 7822 683 GlifName: uni1E_8E_ Width: 1024 VWidth: 0 @@ -26674,7 +26628,7 @@ Refer: 109 89 N 1 0 0.36397 1 -279.529 0 2 EndChar StartChar: uni1E8F -Encoding: 7823 7823 686 +Encoding: 7823 7823 684 GlifName: uni1E_8F_ Width: 1024 VWidth: 0 @@ -26683,11 +26637,11 @@ Flags: HW LayerCount: 2 Fore Refer: 350 775 N 1 0 0.36397 1 -914.188 -488 2 -Refer: 705 121 N 1 0 0.36397 1 -624.285 0 2 +Refer: 703 121 N 1 0 0.36397 1 -624.285 0 2 EndChar StartChar: uni1E9E -Encoding: 7838 7838 687 +Encoding: 7838 7838 685 GlifName: uni1E_9E_ Width: 1024 VWidth: 0 @@ -26730,7 +26684,7 @@ EndSplineSet EndChar StartChar: uni200C -Encoding: 8204 8204 688 +Encoding: 8204 8204 686 GlifName: uni200C_ Width: 1024 VWidth: 0 @@ -26753,7 +26707,7 @@ EndSplineSet EndChar StartChar: uni200D -Encoding: 8205 8205 689 +Encoding: 8205 8205 687 GlifName: uni200D_ Width: 1024 VWidth: 0 @@ -26771,7 +26725,7 @@ EndSplineSet EndChar StartChar: uni2044 -Encoding: 8260 8260 690 +Encoding: 8260 8260 688 GlifName: uni2044 Width: 1024 VWidth: 0 @@ -26789,7 +26743,7 @@ EndSplineSet EndChar StartChar: uni20B9 -Encoding: 8377 8377 691 +Encoding: 8377 8377 689 GlifName: uni20B_9 Width: 1024 VWidth: 0 @@ -26827,7 +26781,7 @@ EndSplineSet EndChar StartChar: uni25CC -Encoding: 9676 9676 692 +Encoding: 9676 9676 690 GlifName: uni25C_C_ Width: 1024 VWidth: 0 @@ -26886,7 +26840,7 @@ EndSplineSet EndChar StartChar: uniFB01 -Encoding: 64257 64257 693 +Encoding: 64257 64257 691 GlifName: uniF_B_01 Width: 1024 VWidth: 0 @@ -26925,7 +26879,7 @@ Ligature2: "dligDiscretionaryLigatureslookup0 subtable" f i EndChar StartChar: uniFB02 -Encoding: 64258 64258 694 +Encoding: 64258 64258 692 GlifName: uniF_B_02 Width: 1024 VWidth: 0 @@ -26969,7 +26923,7 @@ Ligature2: "dligDiscretionaryLigatureslookup0 subtable" f l EndChar StartChar: uogonek -Encoding: 371 371 695 +Encoding: 371 371 693 GlifName: uogonek Width: 1024 VWidth: 0 @@ -26982,7 +26936,7 @@ Refer: 307 117 N 1 0 0 1 0 0 2 EndChar StartChar: uring -Encoding: 367 367 696 +Encoding: 367 367 694 GlifName: uring Width: 1024 VWidth: 0 @@ -26995,7 +26949,7 @@ Refer: 307 117 N 1 0 0 1 0 0 3 EndChar StartChar: utilde -Encoding: 361 361 697 +Encoding: 361 361 695 GlifName: utilde Width: 1024 VWidth: 0 @@ -27008,7 +26962,7 @@ Refer: 307 117 N 1 0 0 1 0 0 3 EndChar StartChar: v -Encoding: 118 118 698 +Encoding: 118 118 696 GlifName: v Width: 1024 VWidth: 0 @@ -27034,7 +26988,7 @@ EndSplineSet EndChar StartChar: w -Encoding: 119 119 699 +Encoding: 119 119 697 GlifName: w Width: 1024 VWidth: 0 @@ -27070,7 +27024,7 @@ EndSplineSet EndChar StartChar: wacute -Encoding: 7811 7811 700 +Encoding: 7811 7811 698 GlifName: wacute Width: 1024 VWidth: 0 @@ -27079,11 +27033,11 @@ Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0.36397 1 -230.794 284 2 -Refer: 699 119 N 1 0 0.36397 1 -187.081 0 2 +Refer: 697 119 N 1 0 0.36397 1 -187.081 0 2 EndChar StartChar: wcircumflex -Encoding: 373 373 701 +Encoding: 373 373 699 GlifName: wcircumflex Width: 1024 VWidth: 0 @@ -27092,11 +27046,11 @@ Flags: HW LayerCount: 2 Fore Refer: 347 770 N 1 0 0 1 619.128 -195 2 -Refer: 699 119 N 1 0 0 1 0 0 3 +Refer: 697 119 N 1 0 0 1 0 0 3 EndChar StartChar: wdieresis -Encoding: 7813 7813 702 +Encoding: 7813 7813 700 GlifName: wdieresis Width: 1024 VWidth: 0 @@ -27105,11 +27059,11 @@ Flags: HW LayerCount: 2 Fore Refer: 351 776 N 1 0 0.36397 1 -561.973 -527 2 -Refer: 699 119 N 1 0 0.36397 1 -187.081 0 2 +Refer: 697 119 N 1 0 0.36397 1 -187.081 0 2 EndChar StartChar: wgrave -Encoding: 7809 7809 703 +Encoding: 7809 7809 701 GlifName: wgrave Width: 1024 VWidth: 0 @@ -27118,11 +27072,11 @@ Flags: HW LayerCount: 2 Fore Refer: 201 768 N 1 0 0.36397 1 -287.047 341 2 -Refer: 699 119 N 1 0 0.36397 1 -187.081 0 2 +Refer: 697 119 N 1 0 0.36397 1 -187.081 0 2 EndChar StartChar: x -Encoding: 120 120 704 +Encoding: 120 120 702 GlifName: x Width: 1024 VWidth: 0 @@ -27145,7 +27099,7 @@ EndSplineSet EndChar StartChar: y -Encoding: 121 121 705 +Encoding: 121 121 703 GlifName: y Width: 1024 VWidth: 0 @@ -27184,7 +27138,7 @@ EndSplineSet EndChar StartChar: yacute -Encoding: 253 253 706 +Encoding: 253 253 704 GlifName: yacute Width: 1024 VWidth: 0 @@ -27193,11 +27147,11 @@ Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 357.68 415 2 -Refer: 705 121 N 1 0 0 1 0 0 3 +Refer: 703 121 N 1 0 0 1 0 0 3 EndChar StartChar: ycircumflex -Encoding: 375 375 707 +Encoding: 375 375 705 GlifName: ycircumflex Width: 1024 VWidth: 0 @@ -27206,11 +27160,11 @@ Flags: HW LayerCount: 2 Fore Refer: 347 770 N 1 0 0 1 312.104 -200 2 -Refer: 705 121 N 1 0 0 1 0 0 3 +Refer: 703 121 N 1 0 0 1 0 0 3 EndChar StartChar: ydieresis -Encoding: 255 255 708 +Encoding: 255 255 706 GlifName: ydieresis Width: 1024 VWidth: 0 @@ -27219,11 +27173,11 @@ Flags: HW LayerCount: 2 Fore Refer: 351 776 N 1 0 0 1 323.205 -492 2 -Refer: 705 121 N 1 0 0 1 0 0 3 +Refer: 703 121 N 1 0 0 1 0 0 3 EndChar StartChar: yen -Encoding: 165 165 709 +Encoding: 165 165 707 GlifName: yen Width: 1024 VWidth: 0 @@ -27266,7 +27220,7 @@ EndSplineSet EndChar StartChar: ygrave -Encoding: 7923 7923 710 +Encoding: 7923 7923 708 GlifName: ygrave Width: 1024 VWidth: 0 @@ -27275,11 +27229,11 @@ Flags: HW LayerCount: 2 Fore Refer: 201 768 N 1 0 0.36397 1 -83.32 476 2 -Refer: 705 121 N 1 0 0.36397 1 -112.285 0 2 +Refer: 703 121 N 1 0 0.36397 1 -112.285 0 2 EndChar StartChar: z -Encoding: 122 122 711 +Encoding: 122 122 709 GlifName: z Width: 1024 VWidth: 0 @@ -27313,7 +27267,7 @@ EndSplineSet EndChar StartChar: zacute -Encoding: 378 378 712 +Encoding: 378 378 710 GlifName: zacute Width: 1024 VWidth: 0 @@ -27322,11 +27276,11 @@ Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 283.795 415 2 -Refer: 711 122 N 1 0 0 1 0 0 3 +Refer: 709 122 N 1 0 0 1 0 0 3 EndChar StartChar: zcaron -Encoding: 382 382 713 +Encoding: 382 382 711 GlifName: zcaron Width: 1024 VWidth: 0 @@ -27335,11 +27289,11 @@ Flags: HW LayerCount: 2 Fore Refer: 354 780 N 1 0 0 1 344.862 -140 2 -Refer: 711 122 N 1 0 0 1 0 0 3 +Refer: 709 122 N 1 0 0 1 0 0 3 EndChar StartChar: zdotaccent -Encoding: 380 380 714 +Encoding: 380 380 712 GlifName: zdotaccent Width: 1024 VWidth: 0 @@ -27348,11 +27302,11 @@ Flags: HW LayerCount: 2 Fore Refer: 350 775 N 1 0 0 1 249.32 -492 2 -Refer: 711 122 N 1 0 0 1 0 0 3 +Refer: 709 122 N 1 0 0 1 0 0 3 EndChar StartChar: zero -Encoding: 48 48 715 +Encoding: 48 48 713 GlifName: zero Width: 1024 VWidth: 0 @@ -27380,49 +27334,49 @@ EndSplineSet EndChar StartChar: uni0305 -Encoding: 773 773 716 +Encoding: 773 773 714 Width: 0 VWidth: 0 Flags: HW LayerCount: 2 Fore SplineSet --901 1602 m 257 - -901 1542 l 257 - -147 1542 l 257 - -147 1602 l 257 - -901 1602 l 257 +-377 1602 m 257 + -377 1542 l 257 + 377 1542 l 257 + 377 1602 l 257 + -377 1602 l 257 EndSplineSet EndChar StartChar: hookabovecomb -Encoding: 777 777 717 +Encoding: 777 777 715 Width: 0 VWidth: 0 Flags: HW LayerCount: 2 Fore SplineSet -122 1774 m 257 - 122 1703 l 257 - 577 1703 l 257 - 577 1774 l 257 - 122 1774 l 257 -517 1774 m 257 - 517 1432 l 257 - 582 1432 l 257 - 582 1774 l 257 - 517 1774 l 257 -210 1453 m 257 - 210 1386 l 257 - 581 1386 l 257 - 581 1453 l 257 - 210 1453 l 257 -210 1453 m 257 - 210 1190 l 257 - 272 1190 l 257 - 272 1453 l 257 - 210 1453 l 257 +-230 1774 m 257 + -230 1703 l 257 + 225 1703 l 257 + 225 1774 l 257 + -230 1774 l 257 +165 1774 m 257 + 165 1432 l 257 + 230 1432 l 257 + 230 1774 l 257 + 165 1774 l 257 +-142 1453 m 257 + -142 1386 l 257 + 229 1386 l 257 + 229 1453 l 257 + -142 1453 l 257 +-142 1453 m 257 + -142 1190 l 257 + -80 1190 l 257 + -80 1453 l 257 + -142 1453 l 257 EndSplineSet EndChar EndChars diff --git a/sources/Samaano-Thin-Slanted.ufo/features.fea b/sources/Samaano-Thin-Slanted.ufo/features.fea index a10791b8f..a06e0c56e 100644 --- a/sources/Samaano-Thin-Slanted.ufo/features.fea +++ b/sources/Samaano-Thin-Slanted.ufo/features.fea @@ -235,7 +235,7 @@ feature half { script DFLT; language dflt ; lookup halfHalfFormsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup halfHalfFormsinDevanagarilookup0; } half; @@ -243,7 +243,7 @@ feature haln { script DFLT; language dflt ; lookup halnHalantFormsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup halnHalantFormsinDevanagarilookup0; } haln; @@ -251,7 +251,7 @@ feature vatu { script DFLT; language dflt ; lookup vatuVattuVariantsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup vatuVattuVariantsinDevanagarilookup0; } vatu; @@ -259,7 +259,7 @@ feature pres { script DFLT; language dflt ; lookup presPreBaseSubstitutionsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup presPreBaseSubstitutionsinDevanagarilookup0; } pres; @@ -267,7 +267,7 @@ feature abvs { script DFLT; language dflt ; lookup abvsAboveBaseSubstitutionsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup abvsAboveBaseSubstitutionsinDevanagarilookup0; } abvs; @@ -275,7 +275,7 @@ feature blws { script DFLT; language dflt ; lookup blwsBelowBaseSubstitutionsinDevanagarilookup12; - script dev2; + script deva; language dflt ; lookup blwsBelowBaseSubstitutionsinDevanagarilookup12; } blws; @@ -288,22 +288,22 @@ feature dlig { lookup dligDiscretionaryLigatureslookup0; } dlig;@CombiningTopAccents = [acutecomb oe tildecomb uni0302 uni0304 uni0306 uni0308 uni030A uni030B uni030C]; lookup markMarkPositioninglookup0 { - markClass gravecomb @top; - markClass acutecomb @top; - markClass uni0302 @top; - markClass tildecomb @top; - markClass uni0304 @top; - markClass uni0306 @top; - markClass uni0307 @top; - markClass uni0308 @top; - markClass uni030A @top; - markClass uni030B @top; - markClass uni030C @top; - markClass dotbelowcomb @base; - markClass uni0326 @base; - markClass uni0327 @base; - markClass uni0328 @base; - markClass uni0331 @base; + markClass gravecomb @top; + markClass acutecomb @top; + markClass uni0302 @top; + markClass tildecomb @top; + markClass uni0304 @top; + markClass uni0306 @top; + markClass uni0307 @top; + markClass uni0308 @top; + markClass uni030A @top; + markClass uni030B @top; + markClass uni030C @top; + markClass dotbelowcomb @base; + markClass uni0326 @base; + markClass uni0327 @base; + markClass uni0328 @base; + markClass uni0331 @base; pos base A mark @top; pos base C mark @top; pos base D mark @top; @@ -377,9 +377,9 @@ lookup markMarkPositioninglookup0 { pos base uni25CC mark @base; } markMarkPositioninglookup0; lookup abvmAboveBaseMarkinDevanagari2lookup1 { - markClass uni0900 @abvm; - markClass uni0901 @abvm; - markClass uni0902 @abvm; + markClass uni0900 @abvm; + markClass uni0901 @abvm; + markClass uni0902 @abvm; markClass uni0951 @abvm; markClass uni0953 @abvm; markClass uni0954 @abvm; @@ -415,9 +415,8 @@ feature blwm { script dev2; language dflt ; lookup blwmBelowBaseMarkinDevanagari2lookup2; -} blwm; -@GDEF_base = [A AE Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Emacron Eng Eogonek Eth Euro F G Gbreve Gcircumflex Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek Itilde J Jcircumflex K L Lacute Lcaron Ldot Lslash M N Nacute Ncaron Ntilde O OE Oacute Obreve Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Otilde P Q R Racute Rcaron S Sacute Scaron Scedilla Scircumflex T Tcaron Thorn U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ygrave Z Zacute Zcaron Zdotaccent a aacute abreve acircumflex acute adieresis ae agrave amacron ampersand aogonek aring asciicircum asciitilde asterisk at atilde b backslash bar braceleft braceright bracketleft bracketright breve brokenbar bullet c cacute caron ccaron ccedilla ccircumflex cdotaccent cedilla cent circumflex colon comma copyright currency d dagger daggerdbl dcaron dcroat degree dieresis divide dollar dotaccent dotlessi e eacute ebreve ecaron ecircumflex edieresis edotaccent egrave eight ellipsis emacron emdash endash eng eogonek equal eth exclam exclamdown f five four g gbreve gcircumflex gdotaccent germandbls grave greater guillemotleft guillemotright guilsinglleft guilsinglright h hbar hcircumflex hookabovecomb hungarumlaut hyphen i iacute ibreve icircumflex idieresis igrave ij imacron iogonek itilde j jcircumflex k l lacute lcaron ldot less logicalnot lslash m macron minus mu multiply n nacute ncaron nine ntilde numbersign o oacute obreve ocircumflex odieresis oe ogonek ograve ohungarumlaut omacron one onehalf onequarter ordfeminine ordmasculine oslash otilde p paragraph parenleft parenright percent period periodcentered perthousand plus plusminus q question questiondown quotedbl quotedblbase quotedblleft quotedblright quoteleft quoteright quotesinglbase quotesingle r racute rcaron registered ring s sacute scaron scedilla scircumflex section semicolon seven six slash space sterling t tcaron thorn three threequarters tilde trademark two u uacute ubreve ucircumflex udieresis ugrave uhungarumlaut umacron underscore uni00A0 uni00B2 uni00B3 uni00B9 uni0122 uni0123 uni0136 uni0137 uni013B uni013C uni0145 uni0146 uni0156 uni0157 uni0162 uni0163 uni0192 uni01C4 uni01C5 uni01C6 uni0218 uni0219 uni021A uni021B uni0237 uni02B9 uni02BA uni02BC uni02C9 uni02CA uni02CB uni0305 uni0903 uni0904 uni0905 uni0906 uni0907 uni0908 uni0909 uni090A uni090B uni090C uni090D uni090E uni090F uni0910 uni0911 uni0912 uni0913 uni0914 uni0915 uni0915_uni094D.half uni0915_uni094D_uni0937_uni094D uni0916 uni0916_uni094D.half uni0917 uni0918 uni0919 uni091A uni091A_uni0930_uni094D.vatu uni091B uni091C uni091C_uni0930_uni094D.vatu uni091C_uni094D_uni091E_uni094D uni091D uni091E uni091F uni0920 uni0921 uni0922 uni0922_uni0930_uni094D.vatu uni0923 uni0923_uni0930_uni094D.vatu uni0924 uni0925 uni0926 uni0927 uni0928 uni0929 uni092A uni092B uni092C uni092D uni092E uni092F uni0930 uni0930_uni094D.abvs uni0930_uni094D.haln uni0930_uni094D.vatu uni0931 uni0932 uni0933 uni0934 uni0935 uni0936 uni0936_uni094D.haln uni0937 uni0938 uni0938_uni0930_uni094D.vatu uni0938_uni094D.haln uni0939 uni0939_uni0930_uni094D.vatu uni093B uni093D uni093E uni093F uni0940 uni0940_uni0930_uni094D.abvs uni0945_uni0930_uni094D.abvs uni0946_uni0930_uni094D.abvs uni0947_uni0930_uni094D.abvs uni0948_uni0930_uni094D.abvs uni0949 uni0949_uni0930_uni094D.abvs uni094A uni094A_uni0930_uni094D.abvs uni094B uni094B_uni0930_uni094D.abvs uni094C uni094C_uni0930_uni094D.abvs uni094E uni094F uni0950 uni0958 uni0959 uni095A uni095A_uni094D.haln uni095B uni095C uni095D uni095E uni095E_uni0930_uni094D.vatu uni095F uni095F_uni0930_uni094D.vatu uni0960 uni0961 uni0964 uni0965 uni0966 uni0967 uni0968 uni0969 uni096A uni096B uni096C uni096D uni096E uni096F uni0970 uni0971 uni0972 uni0973 uni0974 uni0975 uni0976 uni0977 uni0978 uni0979 uni097A uni097B uni097C uni097D uni097E uni097F uni1E0C uni1E0D uni1E34 uni1E35 uni1E36 uni1E37 uni1E38 uni1E39 uni1E3A uni1E3B uni1E42 uni1E43 uni1E44 uni1E45 uni1E46 uni1E47 uni1E48 uni1E49 uni1E4C uni1E4D uni1E58 uni1E59 uni1E5A uni1E5B uni1E5C uni1E5D uni1E5E uni1E5F uni1E62 uni1E63 uni1E6C uni1E6D uni1E8E uni1E8F uni1E9E uni200C uni200D uni2044 uni20B9 uni25CC uogonek uring utilde v w wacute wcircumflex wdieresis wgrave x y yacute ycircumflex ydieresis yen ygrave z zacute zcaron zdotaccent zero]; -@GDEF_mark = [acutecomb dotbelowcomb glyph094D gravecomb tildecomb uni0302 uni0304 uni0306 uni0307 uni0308 uni030A uni030B uni030C uni0326 uni0327 uni0328 uni0331 uni0900 uni0901 uni0902 uni0930_uni094D.blwf uni0930_uni094D.rphf uni093A uni093C uni0941 uni0942 uni0943 uni0944 uni0945 uni0946 uni0947 uni0948 uni094D uni0951 uni0952 uni0953 uni0954 uni0955 uni0956 uni0957 uni0962 uni0963]; +} blwm;@GDEF_base = [A AE Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Emacron Eng Eogonek Eth Euro F G Gbreve Gcircumflex Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek Itilde J Jcircumflex K L Lacute Lcaron Ldot Lslash M N Nacute Ncaron Ntilde O OE Oacute Obreve Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Otilde P Q R Racute Rcaron S Sacute Scaron Scedilla Scircumflex T Tcaron Thorn U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ygrave Z Zacute Zcaron Zdotaccent a aacute abreve acircumflex acute adieresis ae agrave amacron ampersand aogonek aring asciicircum asciitilde asterisk at atilde b backslash bar braceleft braceright bracketleft bracketright breve brokenbar bullet c cacute caron ccaron ccedilla ccircumflex cdotaccent cedilla cent circumflex colon comma copyright currency d dagger daggerdbl dcaron dcroat degree dieresis divide dollar dotaccent dotlessi e eacute ebreve ecaron ecircumflex edieresis edotaccent egrave eight ellipsis emacron emdash endash eng eogonek equal eth exclam exclamdown f five four g gbreve gcircumflex gdotaccent germandbls grave greater guillemotleft guillemotright guilsinglleft guilsinglright h hbar hcircumflex hungarumlaut hyphen i iacute ibreve icircumflex idieresis igrave ij imacron iogonek itilde j jcircumflex k l lacute lcaron ldot less logicalnot lslash m macron minus mu multiply n nacute ncaron nine ntilde numbersign o oacute obreve ocircumflex odieresis oe ogonek ograve ohungarumlaut omacron one onehalf onequarter ordfeminine ordmasculine oslash otilde p paragraph parenleft parenright percent period periodcentered perthousand plus plusminus q question questiondown quotedbl quotedblbase quotedblleft quotedblright quoteleft quoteright quotesinglbase quotesingle r racute rcaron registered ring s sacute scaron scedilla scircumflex section semicolon seven six slash space sterling t tcaron thorn three threequarters tilde trademark two u uacute ubreve ucircumflex udieresis ugrave uhungarumlaut umacron underscore uni00A0 uni00B2 uni00B3 uni00B9 uni0122 uni0123 uni0136 uni0137 uni013B uni013C uni0145 uni0146 uni0156 uni0157 uni0162 uni0163 uni0192 uni01C4 uni01C5 uni01C6 uni0218 uni0219 uni021A uni021B uni0237 uni02B9 uni02BA uni02BC uni02C9 uni02CA uni02CB uni0903 uni0904 uni0905 uni0906 uni0907 uni0908 uni0909 uni090A uni090B uni090C uni090D uni090E uni090F uni0910 uni0911 uni0912 uni0913 uni0914 uni0915 uni0915_uni094D.half uni0915_uni094D_uni0937_uni094D uni0916 uni0916_uni094D.half uni0917 uni0918 uni0919 uni091A uni091A_uni0930_uni094D.vatu uni091B uni091C uni091C_uni0930_uni094D.vatu uni091C_uni094D_uni091E_uni094D uni091D uni091E uni091F uni0920 uni0921 uni0922 uni0922_uni0930_uni094D.vatu uni0923 uni0923_uni0930_uni094D.vatu uni0924 uni0925 uni0926 uni0927 uni0928 uni0929 uni092A uni092B uni092C uni092D uni092E uni092F uni0930 uni0930_uni094D.haln uni0931 uni0932 uni0933 uni0934 uni0935 uni0936 uni0936_uni094D.haln uni0937 uni0938 uni0938_uni0930_uni094D.vatu uni0938_uni094D.haln uni0939 uni0939_uni0930_uni094D.vatu uni093B uni093D uni093E uni093F uni0940 uni0940_uni0930_uni094D.abvs uni0945_uni0930_uni094D.abvs uni0946_uni0930_uni094D.abvs uni0947_uni0930_uni094D.abvs uni0948_uni0930_uni094D.abvs uni0949 uni0949_uni0930_uni094D.abvs uni094A uni094A_uni0930_uni094D.abvs uni094B uni094B_uni0930_uni094D.abvs uni094C uni094C_uni0930_uni094D.abvs uni094E uni094F uni0950 uni0958 uni0959 uni095A uni095A_uni094D.haln uni095B uni095C uni095D uni095E uni095E_uni0930_uni094D.vatu uni095F uni095F_uni0930_uni094D.vatu uni0960 uni0961 uni0964 uni0965 uni0966 uni0967 uni0968 uni0969 uni096A uni096B uni096C uni096D uni096E uni096F uni0970 uni0971 uni0972 uni0973 uni0974 uni0975 uni0976 uni0977 uni0978 uni0979 uni097A uni097B uni097C uni097D uni097E uni097F uni1E0C uni1E0D uni1E34 uni1E35 uni1E36 uni1E37 uni1E38 uni1E39 uni1E3A uni1E3B uni1E42 uni1E43 uni1E44 uni1E45 uni1E46 uni1E47 uni1E48 uni1E49 uni1E4C uni1E4D uni1E58 uni1E59 uni1E5A uni1E5B uni1E5C uni1E5D uni1E5E uni1E5F uni1E62 uni1E63 uni1E6C uni1E6D uni1E8E uni1E8F uni1E9E uni200C uni200D uni2044 uni20B9 uni25CC uogonek uring utilde v w wacute wcircumflex wdieresis wgrave x y yacute ycircumflex ydieresis yen ygrave z zacute zcaron zdotaccent zero]; +@GDEF_mark = [acutecomb dotbelowcomb gravecomb hookabovecomb tildecomb uni0302 uni0304 uni0305 uni0306 uni0307 uni0308 uni030A uni030B uni030C uni0326 uni0327 uni0328 uni0331 uni0900 uni0901 uni0902 uni0930_uni094D.blwf uni0930_uni094D.rphf uni093A uni093C uni0941 uni0942 uni0943 uni0944 uni0945 uni0946 uni0947 uni0948 uni094D uni0951 uni0952 uni0953 uni0954 uni0955 uni0956 uni0957 uni0962 uni0963]; @GDEF_ligature = [uni0915_uni0930_uni094D.vatu uni0915_uni094D.haln uni0915_uni094D_uni0937.akhn uni0915_uni094D_uni0937.half uni0916_uni0930_uni094D.vatu uni0916_uni094D.haln uni0917_uni0930_uni094D.vatu uni0917_uni094D.half uni0917_uni094D.haln uni0918_uni0930_uni094D.vatu uni0918_uni094D.half uni0918_uni094D.haln uni0919_uni0930_uni094D.vatu uni0919_uni094D.half uni0919_uni094D.haln uni091A_uni094D.half uni091A_uni094D.haln uni091B_uni0930_uni094D.vatu uni091B_uni094D.half uni091B_uni094D.haln uni091C_uni094D.half uni091C_uni094D.haln uni091C_uni094D_uni091E.akhn uni091C_uni094D_uni091E.half uni091D_uni0930_uni094D.vatu uni091D_uni094D.half uni091D_uni094D.haln uni091E_uni0930_uni094D.vatu uni091E_uni094D.half uni091E_uni094D.haln uni091F_uni0930_uni094D.vatu uni091F_uni094D.haln uni0920_uni0930_uni094D.vatu uni0920_uni094D.haln uni0921_uni0930_uni094D.vatu uni0921_uni094D.haln uni0922_uni094D.haln uni0923_uni094D.half uni0923_uni094D.haln uni0924_uni0930_uni094D.vatu uni0924_uni094D.half uni0924_uni094D.haln uni0924_uni094D_uni0924.pres uni0925_uni0930_uni094D.vatu uni0925_uni094D.half uni0925_uni094D.haln uni0926_uni0930_uni094D.vatu uni0926_uni094D.half uni0926_uni094D.haln uni0926_uni094D_uni0926.pres uni0926_uni094D_uni0927.pres uni0926_uni094D_uni092F.pres uni0926_uni094D_uni0935.pres uni0927_uni0930_uni094D.vatu uni0927_uni094D.half uni0927_uni094D.haln uni0928_uni0930_uni094D.vatu uni0928_uni094D.half uni0928_uni094D.haln uni0929_uni0930_uni094D.vatu uni0929_uni094D.half uni0929_uni094D.haln uni092A_uni0930_uni094D.vatu uni092A_uni094D.half uni092A_uni094D.haln uni092B_uni0930_uni094D.vatu uni092B_uni094D.half uni092B_uni094D.haln uni092C_uni0930_uni094D.vatu uni092C_uni094D.half uni092C_uni094D.haln uni092D_uni0930_uni094D.vatu uni092D_uni094D.half uni092D_uni094D.haln uni092E_uni0930_uni094D.vatu uni092E_uni094D.half uni092E_uni094D.haln uni092F_uni0930_uni094D.vatu uni092F_uni094D.half uni092F_uni094D.haln uni0930_uni0930_uni094D.vatu uni0930_uni0941.blws uni0930_uni0942.blws uni0930_uni094D.half uni0931_uni0930_uni094D.vatu uni0931_uni094D.haln uni0932_uni0930_uni094D.vatu uni0932_uni094D.half uni0932_uni094D.haln uni0933_uni0930_uni094D.vatu uni0933_uni094D.half uni0933_uni094D.haln uni0934_uni0930_uni094D.vatu uni0934_uni094D.half uni0934_uni094D.haln uni0935_uni0930_uni094D.vatu uni0935_uni094D.half uni0935_uni094D.haln uni0936_uni0930_uni094D.vatu uni0936_uni094D.half uni0937_uni0930_uni094D.vatu uni0937_uni094D.half uni0937_uni094D.haln uni0938_uni094D.half uni0939_uni0943.blws uni0939_uni094D.half uni0939_uni094D.haln uni0939_uni094D_uni092E.pres uni093E_uni0930_uni094D.abvs uni0940_uni0902.abvs uni0945_uni0902.abvs uni0946_uni0902.abvs uni0947_uni0902.abvs uni0948_uni0902.abvs uni0949_uni0902.abvs uni094A_uni0902.abvs uni094B_uni0902.abvs uni094C_uni0902.abvs uni0958_uni0930_uni094D.vatu uni0958_uni094D.half uni0958_uni094D.haln uni0959_uni0930_uni094D.vatu uni0959_uni094D.half uni0959_uni094D.haln uni095A_uni0930_uni094D.vatu uni095A_uni094D.half uni095B_uni0930_uni094D.vatu uni095B_uni094D.half uni095B_uni094D.haln uni095C_uni0930_uni094D.vatu uni095C_uni094D.haln uni095D_uni0930_uni094D.vatu uni095D_uni094D.haln uni095E_uni094D.half uni095E_uni094D.haln uni095F_uni094D.half uni095F_uni094D.haln uniFB01 uniFB02]; @GDEF_component = []; @@ -428,4 +427,4 @@ feature blwm { @GDEF_component; LigatureCaretByPos uniFB01 32; LigatureCaretByPos uniFB02 84; -} GDEF; +} GDEF; \ No newline at end of file diff --git a/sources/Samaano-Thin-Slanted.ufo/fontinfo.plist b/sources/Samaano-Thin-Slanted.ufo/fontinfo.plist index d74c7882b..420a9ae6a 100644 --- a/sources/Samaano-Thin-Slanted.ufo/fontinfo.plist +++ b/sources/Samaano-Thin-Slanted.ufo/fontinfo.plist @@ -46,11 +46,14 @@ openTypeNameDesignerURL https://github.com/mitradranirban openTypeNameLicense - Copyright 2024 The Samaano Project Authors (https://github.com/mitradranirban/samaano-fonts) -This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://openfontlicences.org + Copyright 2024 The Samaano Project Authors (https://github.com/mitradranirban/samaano-fonts) + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is available with a FAQ at: http://scripts.sil.org/OFL + openTypeNameLicenseURL - https://openfontlicences.org + http://scripts.sil.org/OFL openTypeNameManufacturer Dr Anirban Mitra openTypeNameManufacturerURL diff --git a/sources/Samaano-Thin-Slanted.ufo/glyphs/acutecomb.glif b/sources/Samaano-Thin-Slanted.ufo/glyphs/acutecomb.glif index 91e3ad60d..0c5b8ad44 100644 --- a/sources/Samaano-Thin-Slanted.ufo/glyphs/acutecomb.glif +++ b/sources/Samaano-Thin-Slanted.ufo/glyphs/acutecomb.glif @@ -1,13 +1,12 @@ - - - - - + + + + diff --git a/sources/Samaano-Thin-Slanted.ufo/glyphs/contents.plist b/sources/Samaano-Thin-Slanted.ufo/glyphs/contents.plist index 43e9c29e9..cb08942a7 100644 --- a/sources/Samaano-Thin-Slanted.ufo/glyphs/contents.plist +++ b/sources/Samaano-Thin-Slanted.ufo/glyphs/contents.plist @@ -1004,8 +1004,6 @@ uni0930_uni0941.blws.glif uni0930_uni0942.blws uni0930_uni0942.blws.glif - uni0930_uni094D.abvs - uni0930_uni094D_.abvs.glif uni0930_uni094D.blwf uni0930_uni094D_.blwf.glif uni0930_uni094D.half @@ -1014,8 +1012,6 @@ uni0930_uni094D_.haln.glif uni0930_uni094D.rphf uni0930_uni094D_.rphf.glif - uni0930_uni094D.vatu - uni0930_uni094D_.vatu.glif uni0931 uni0931.glif uni0931_uni0930_uni094D.vatu diff --git a/sources/Samaano-Thin-Slanted.ufo/glyphs/dotbelowcomb.glif b/sources/Samaano-Thin-Slanted.ufo/glyphs/dotbelowcomb.glif index 2942f0848..fced18b8f 100644 --- a/sources/Samaano-Thin-Slanted.ufo/glyphs/dotbelowcomb.glif +++ b/sources/Samaano-Thin-Slanted.ufo/glyphs/dotbelowcomb.glif @@ -1,13 +1,12 @@ - - - - - + + + + diff --git a/sources/Samaano-Thin-Slanted.ufo/glyphs/gravecomb.glif b/sources/Samaano-Thin-Slanted.ufo/glyphs/gravecomb.glif index 96a4ed553..d84707f74 100644 --- a/sources/Samaano-Thin-Slanted.ufo/glyphs/gravecomb.glif +++ b/sources/Samaano-Thin-Slanted.ufo/glyphs/gravecomb.glif @@ -3,10 +3,10 @@ - - - - + + + + diff --git a/sources/Samaano-Thin-Slanted.ufo/glyphs/hookabovecomb.glif b/sources/Samaano-Thin-Slanted.ufo/glyphs/hookabovecomb.glif index 742f79b62..9ec14169e 100644 --- a/sources/Samaano-Thin-Slanted.ufo/glyphs/hookabovecomb.glif +++ b/sources/Samaano-Thin-Slanted.ufo/glyphs/hookabovecomb.glif @@ -3,28 +3,28 @@ - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Thin-Slanted.ufo/glyphs/tildecomb.glif b/sources/Samaano-Thin-Slanted.ufo/glyphs/tildecomb.glif index 30c4c09af..06b8ed970 100644 --- a/sources/Samaano-Thin-Slanted.ufo/glyphs/tildecomb.glif +++ b/sources/Samaano-Thin-Slanted.ufo/glyphs/tildecomb.glif @@ -1,25 +1,24 @@ - - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0302.glif b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0302.glif index e772fc679..0ee102d11 100644 --- a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0302.glif +++ b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0302.glif @@ -1,19 +1,18 @@ - - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0304.glif b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0304.glif index ab29873ed..cecbff07f 100644 --- a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0304.glif +++ b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0304.glif @@ -1,13 +1,12 @@ - - - - - + + + + diff --git a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0305.glif b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0305.glif index 14f8b8c38..15e603bdd 100644 --- a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0305.glif +++ b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0305.glif @@ -3,10 +3,10 @@ - - - - + + + + diff --git a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0306.glif b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0306.glif index c52df6e6c..63f7f1262 100644 --- a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0306.glif +++ b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0306.glif @@ -1,25 +1,24 @@ - - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0307.glif b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0307.glif index 350c6294a..56b2084fc 100644 --- a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0307.glif +++ b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0307.glif @@ -1,13 +1,12 @@ - - - - - + + + + diff --git a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0308.glif b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0308.glif index d4a975dc8..4e7f6ddbe 100644 --- a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0308.glif +++ b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0308.glif @@ -1,19 +1,18 @@ - - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni030A_.glif b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni030A_.glif index 82c102fdc..bdc75c345 100644 --- a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni030A_.glif +++ b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni030A_.glif @@ -1,19 +1,18 @@ - - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni030B_.glif b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni030B_.glif index a77f7f978..ca9baea9c 100644 --- a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni030B_.glif +++ b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni030B_.glif @@ -1,8 +1,7 @@ - - + diff --git a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni030C_.glif b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni030C_.glif index c8fa388f6..c67faf8fb 100644 --- a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni030C_.glif +++ b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni030C_.glif @@ -3,16 +3,16 @@ - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0326.glif b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0326.glif index 998c27ac5..ba61f9a77 100644 --- a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0326.glif +++ b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0326.glif @@ -1,19 +1,18 @@ - - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0327.glif b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0327.glif index 50e103edf..6d9cd75c3 100644 --- a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0327.glif +++ b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0327.glif @@ -1,31 +1,30 @@ - - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0328.glif b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0328.glif index 8453c5d9b..c978471c2 100644 --- a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0328.glif +++ b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0328.glif @@ -1,25 +1,24 @@ - - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0331.glif b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0331.glif index 3912634f6..6f9ddae5e 100644 --- a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0331.glif +++ b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0331.glif @@ -1,13 +1,12 @@ - - - - - + + + + diff --git a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0900.glif b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0900.glif index a0b7fac12..acc27eb5d 100644 --- a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0900.glif +++ b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0900.glif @@ -3,28 +3,28 @@ - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0901.glif b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0901.glif index 286f0fb8c..5c7a367f0 100644 --- a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0901.glif +++ b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0901.glif @@ -3,28 +3,28 @@ - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0902.glif b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0902.glif index fb8eccce6..271769fec 100644 --- a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0902.glif +++ b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0902.glif @@ -3,10 +3,10 @@ - - - - + + + + diff --git a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0930_uni094D_.abvs.glif b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0930_uni094D_.abvs.glif deleted file mode 100644 index 8eb1c0643..000000000 --- a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0930_uni094D_.abvs.glif +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0930_uni094D_.vatu.glif b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0930_uni094D_.vatu.glif deleted file mode 100644 index 4e161be3d..000000000 --- a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0930_uni094D_.vatu.glif +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0951.glif b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0951.glif index 2350f1186..c2c8e7d1a 100644 --- a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0951.glif +++ b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0951.glif @@ -1,13 +1,12 @@ - - - - - + + + + diff --git a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0952.glif b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0952.glif index ea7404669..24b0db81c 100644 --- a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0952.glif +++ b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0952.glif @@ -1,13 +1,12 @@ - - - - - + + + + diff --git a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0953.glif b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0953.glif index 8da5c5635..7b4b01a28 100644 --- a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0953.glif +++ b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0953.glif @@ -1,13 +1,12 @@ - - - - - + + + + diff --git a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0954.glif b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0954.glif index 75acd3ab9..ce4489eb1 100644 --- a/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0954.glif +++ b/sources/Samaano-Thin-Slanted.ufo/glyphs/uni0954.glif @@ -1,13 +1,12 @@ - - - - - + + + + diff --git a/sources/Samaano-Thin-Slanted.ufo/lib.plist b/sources/Samaano-Thin-Slanted.ufo/lib.plist index 6e1caed4e..5c691cd45 100644 --- a/sources/Samaano-Thin-Slanted.ufo/lib.plist +++ b/sources/Samaano-Thin-Slanted.ufo/lib.plist @@ -647,12 +647,10 @@ uni0930_uni0930_uni094D.vatu uni0930_uni0941.blws uni0930_uni0942.blws - uni0930_uni094D.abvs uni0930_uni094D.blwf uni0930_uni094D.half uni0930_uni094D.haln uni0930_uni094D.rphf - uni0930_uni094D.vatu uni0931_uni0930_uni094D.vatu uni0931_uni094D.haln uni0932_uni0930_uni094D.vatu @@ -1725,8 +1723,6 @@ base uni0930_uni0942.blws base - uni0930_uni094D.abvs - base uni0930_uni094D.blwf base uni0930_uni094D.half @@ -1735,8 +1731,6 @@ base uni0930_uni094D.rphf base - uni0930_uni094D.vatu - base uni0931 base uni0931_uni0930_uni094D.vatu diff --git a/sources/Samaano-Thin.sfd b/sources/Samaano-Thin.sfd index c5de1c5e2..ffda74ae4 100644 --- a/sources/Samaano-Thin.sfd +++ b/sources/Samaano-Thin.sfd @@ -23,8 +23,8 @@ OS2Version: 0 OS2_WeightWidthSlopeOnly: 0 OS2_UseTypoMetrics: 0 CreationTime: 1729163604 -ModificationTime: 1729263710 -PfmFamily: 16 +ModificationTime: 1729498444 +PfmFamily: 17 TTFWeight: 100 TTFWidth: 5 LineGap: 0 @@ -37,7 +37,7 @@ OS2TypoDOffset: 0 OS2TypoLinegap: 0 OS2WinAscent: 2476 OS2WinAOffset: 0 -OS2WinDescent: 958 +OS2WinDescent: 978 OS2WinDOffset: 0 HheadAscent: 2457 HheadAOffset: 0 @@ -4625,7 +4625,7 @@ NameList: AGL For New Fonts DisplaySize: -96 AntiAlias: 1 FitToEm: 1 -WinInfo: 416 13 5 +WinInfo: 624 13 5 BeginPrivate: 0 EndPrivate Grid @@ -4637,7 +4637,7 @@ Grid 2048 1024 l 1024 EndSplineSet AnchorClass2: "blwm" "'blwm' Below Base Mark in Devanagari2 lookup 2-1" "abvm" "'abvm' Above Base Mark in Devanagari2 lookup 1-1" "base" "markMarkPositioninglookup0 subtable" "top" "markMarkPositioninglookup0 subtable" "base""" "top""" -BeginChars: 65711 718 +BeginChars: 65711 716 StartChar: .notdef Encoding: 0 0 0 @@ -4753,7 +4753,7 @@ GlifName: A_acute Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 32 946 2 @@ -4766,7 +4766,7 @@ GlifName: A_breve Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 349 774 N 1 0 0 1 20 196 2 @@ -4792,7 +4792,7 @@ GlifName: A_dieresis Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 351 776 N 1 0 0 1 20 39 2 @@ -4805,7 +4805,7 @@ GlifName: A_grave Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 201 768 N 1 0 0 1 -13 1003 2 @@ -4818,7 +4818,7 @@ GlifName: A_macron Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 348 772 N 1 0 0 1 20 124 2 @@ -4831,7 +4831,7 @@ GlifName: A_ogonek Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 357 808 N 1 0 0 1 241 0 2 @@ -4844,7 +4844,7 @@ GlifName: A_ring Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 352 778 N 1 0 0 1 20 92 2 @@ -4857,7 +4857,7 @@ GlifName: A_tilde Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 304 771 N 1 0 0 1 20 -169 2 @@ -4958,7 +4958,7 @@ GlifName: C_acute Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 13 946 2 @@ -4984,7 +4984,7 @@ GlifName: C_cedilla Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 356 807 N 1 0 0 1 213 -162 2 @@ -5010,7 +5010,7 @@ GlifName: C_dotaccent Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 350 775 N 1 0 0 1 0 39 2 @@ -5155,7 +5155,7 @@ GlifName: E_acute Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 24 946 2 @@ -5168,7 +5168,7 @@ GlifName: E_breve Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 349 774 N 1 0 0 1 10 196 2 @@ -5207,7 +5207,7 @@ GlifName: E_dieresis Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 351 776 N 1 0 0 1 10 39 2 @@ -5220,7 +5220,7 @@ GlifName: E_dotaccent Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 350 775 N 1 0 0 1 10 39 2 @@ -5233,7 +5233,7 @@ GlifName: E_grave Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 201 768 N 1 0 0 1 -22 1003 2 @@ -5246,7 +5246,7 @@ GlifName: E_macron Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 348 772 N 1 0 0 1 10 124 2 @@ -5292,7 +5292,7 @@ GlifName: E_ogonek Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 357 808 N 1 0 0 1 292 13 2 @@ -5450,7 +5450,7 @@ GlifName: G_breve Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 349 774 N 1 0 0 1 -18 196 2 @@ -5476,7 +5476,7 @@ GlifName: G_dotaccent Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 350 775 N 1 0 0 1 -18 39 2 @@ -5609,7 +5609,7 @@ GlifName: I_acute Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 6 946 2 @@ -5622,7 +5622,7 @@ GlifName: I_breve Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 349 774 N 1 0 0 1 -8 196 2 @@ -5648,7 +5648,7 @@ GlifName: I_dieresis Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 351 776 N 1 0 0 1 -8 39 2 @@ -5661,7 +5661,7 @@ GlifName: I_dotaccent Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 350 775 N 1 0 0 1 -8 39 2 @@ -5674,7 +5674,7 @@ GlifName: I_grave Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 201 768 N 1 0 0 1 -40 1003 2 @@ -5687,7 +5687,7 @@ GlifName: I_macron Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 348 772 N 1 0 0 1 -8 124 2 @@ -5700,7 +5700,7 @@ GlifName: I_ogonek Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 357 808 N 1 0 0 1 0 20 2 @@ -5713,7 +5713,7 @@ GlifName: I_tilde Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 304 771 N 1 0 0 1 -8 -169 2 @@ -5822,7 +5822,7 @@ GlifName: L_acute Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 13 946 2 @@ -5968,7 +5968,7 @@ GlifName: N_acute Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 12 946 2 @@ -5994,7 +5994,7 @@ GlifName: N_tilde Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 304 771 N 1 0 0 1 0 -169 2 @@ -6080,7 +6080,7 @@ GlifName: O_acute Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 13 946 2 @@ -6093,7 +6093,7 @@ GlifName: O_breve Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 349 774 N 1 0 0 1 0 196 2 @@ -6119,7 +6119,7 @@ GlifName: O_dieresis Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 351 776 N 1 0 0 1 0 39 2 @@ -6132,7 +6132,7 @@ GlifName: O_grave Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 201 768 N 1 0 0 1 -32 1003 2 @@ -6145,7 +6145,7 @@ GlifName: O_hungarumlaut Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 353 779 N 1 0 0 1 78 350 2 @@ -6158,7 +6158,7 @@ GlifName: O_macron Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 348 772 N 1 0 0 1 0 124 2 @@ -6209,7 +6209,7 @@ GlifName: O_tilde Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 304 771 N 1 0 0 1 0 -169 2 @@ -6333,7 +6333,7 @@ GlifName: R_acute Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 24 946 2 @@ -6399,7 +6399,7 @@ GlifName: S_acute Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 -74 946 2 @@ -6425,7 +6425,7 @@ GlifName: S_cedilla Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 356 807 N 1 0 0 1 211 -160 2 @@ -6552,7 +6552,7 @@ GlifName: U_acute Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 89 946 2 @@ -6565,7 +6565,7 @@ GlifName: U_breve Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 349 774 N 1 0 0 1 10 196 2 @@ -6591,7 +6591,7 @@ GlifName: U_dieresis Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 351 776 N 1 0 0 1 -24 39 2 @@ -6604,7 +6604,7 @@ GlifName: U_grave Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 201 768 N 1 0 0 1 -56 1003 2 @@ -6617,7 +6617,7 @@ GlifName: U_hungarumlaut Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 353 779 N 1 0 0 1 54 350 2 @@ -6630,7 +6630,7 @@ GlifName: U_macron Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 348 772 N 1 0 0 1 -24 124 2 @@ -6643,7 +6643,7 @@ GlifName: U_ogonek Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 357 808 N 1 0 0 1 0 14 2 @@ -6656,7 +6656,7 @@ GlifName: U_ring Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 352 778 N 1 0 0 1 -24 138 2 @@ -6669,7 +6669,7 @@ GlifName: U_tilde Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 304 771 N 1 0 0 1 -30 -169 2 @@ -6741,7 +6741,7 @@ GlifName: W_acute Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 -22 810 2 @@ -6767,7 +6767,7 @@ GlifName: W_dieresis Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 351 776 N 1 0 0 1 -11 7 2 @@ -6780,7 +6780,7 @@ GlifName: W_grave Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 201 768 N 1 0 0 1 28 883 2 @@ -6851,7 +6851,7 @@ GlifName: Y_acute Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 2 946 2 @@ -6877,7 +6877,7 @@ GlifName: Y_dieresis Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 351 776 N 1 0 0 1 -10 39 2 @@ -6890,7 +6890,7 @@ GlifName: Y_grave Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 201 768 N 1 0 0 1 -31 971 2 @@ -6933,7 +6933,7 @@ GlifName: Z_acute Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 13 946 2 @@ -6959,7 +6959,7 @@ GlifName: Z_dotaccent Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 350 775 N 1 0 0 1 0 39 2 @@ -7012,7 +7012,7 @@ GlifName: aacute Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 118 419 2 @@ -7025,7 +7025,7 @@ GlifName: abreve Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 349 774 N 1 0 0 0.909091 18 -181 2 @@ -7066,20 +7066,20 @@ EndChar StartChar: acutecomb Encoding: 769 769 123 GlifName: acutecomb -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 2 -Flags: W -AnchorPoint: "top" 464 710 mark 0 -AnchorPoint: "top" 454 700 mark 0 +Flags: HW +AnchorPoint: "top" -48 710 mark 0 +AnchorPoint: "top" -58 700 mark 0 LayerCount: 2 Fore SplineSet -525 949 m 257 - 446 764 l 257 - 499 730 l 257 - 578 915 l 257 - 525 949 l 257 +13 949 m 257 + -66 764 l 257 + -13 730 l 257 + 66 915 l 257 + 13 949 l 257 EndSplineSet EndChar @@ -7089,7 +7089,7 @@ GlifName: adieresis Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 351 776 N 1 0 0 1 6 -488 2 @@ -7145,7 +7145,7 @@ GlifName: agrave Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 201 768 N 1 0 0 1 -27 476 2 @@ -7158,7 +7158,7 @@ GlifName: amacron Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 348 772 N 1 0 0 1 6 -403 2 @@ -7214,7 +7214,7 @@ GlifName: aogonek Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 357 808 N 1 0 0 1 268 13 2 @@ -7227,7 +7227,7 @@ GlifName: aring Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 352 778 N 1 0 0 1 6 -389 2 @@ -7377,7 +7377,7 @@ GlifName: atilde Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 304 771 N 1 0 0 1 -6 -696 2 @@ -7700,7 +7700,7 @@ GlifName: cacute Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 13 419 2 @@ -7749,7 +7749,7 @@ GlifName: ccedilla Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 356 807 N 1 0 0 1 196 -160 2 @@ -7775,7 +7775,7 @@ GlifName: cdotaccent Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 350 775 N 1 0 0 1 0 -488 2 @@ -8317,20 +8317,20 @@ EndChar StartChar: dotbelowcomb Encoding: 803 803 170 GlifName: dotbelowcomb -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 2 -Flags: W -AnchorPoint: "base" 498 -187 mark 0 -AnchorPoint: "base" 498 -187 mark 0 +Flags: HW +AnchorPoint: "base" -14 -187 mark 0 +AnchorPoint: "base" -14 -187 mark 0 LayerCount: 2 Fore SplineSet -472 -290 m 257 - 472 -365 l 257 - 552 -365 l 257 - 552 -290 l 257 - 472 -290 l 257 +-40 -290 m 257 + -40 -365 l 257 + 40 -365 l 257 + 40 -290 l 257 + -40 -290 l 257 EndSplineSet EndChar @@ -8412,7 +8412,7 @@ GlifName: eacute Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 38 419 2 @@ -8425,7 +8425,7 @@ GlifName: ebreve Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 349 774 N 1 0 0 1 26 -331 2 @@ -8464,7 +8464,7 @@ GlifName: edieresis Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 351 776 N 1 0 0 1 26 -488 2 @@ -8477,7 +8477,7 @@ GlifName: edotaccent Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 350 775 N 1 0 0 1 26 -488 2 @@ -8490,7 +8490,7 @@ GlifName: egrave Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 201 768 N 1 0 0 1 -7 476 2 @@ -8559,7 +8559,7 @@ GlifName: emacron Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 348 772 N 1 0 0 1 26 -403 2 @@ -8641,7 +8641,7 @@ GlifName: eogonek Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 357 808 N 1 0 0 1 -2 14 2 @@ -8877,7 +8877,7 @@ GlifName: gbreve Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 349 774 N 1 0 0 1 -41 -331 2 @@ -8903,7 +8903,7 @@ GlifName: gdotaccent Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 350 775 N 1 0 0 1 -41 -488 2 @@ -9002,20 +9002,20 @@ EndChar StartChar: gravecomb Encoding: 768 768 201 GlifName: gravecomb -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 2 -Flags: W -AnchorPoint: "top" 546 669 mark 0 -AnchorPoint: "top" 584 657 mark 0 +Flags: HW +AnchorPoint: "top" 34 669 mark 0 +AnchorPoint: "top" 72 657 mark 0 LayerCount: 2 Fore SplineSet -420 877 m 257 - 544 673 l 257 - 604 727 l 257 - 480 932 l 257 - 420 877 l 257 +-92 877 m 257 + 32 673 l 257 + 92 727 l 257 + -32 932 l 257 + -92 877 l 257 EndSplineSet EndChar @@ -9311,7 +9311,7 @@ GlifName: iacute Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 -118 419 2 @@ -9324,7 +9324,7 @@ GlifName: ibreve Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 349 774 N 1 0 0 1 -32 -331 2 @@ -9350,7 +9350,7 @@ GlifName: idieresis Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 351 776 N 1 0 0 1 -132 -488 2 @@ -9363,7 +9363,7 @@ GlifName: igrave Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 201 768 N 1 0 0 1 -164 476 2 @@ -9389,7 +9389,7 @@ GlifName: imacron Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 348 772 N 1 0 0 1 -132 -403 2 @@ -9402,7 +9402,7 @@ GlifName: iogonek Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 357 808 N 1 0 0 1 0 15 2 @@ -9415,7 +9415,7 @@ GlifName: itilde Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 304 771 N 1 0 0 1 -4 -696 2 @@ -9461,7 +9461,7 @@ GlifName: jcircumflex Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 347 770 N 1 0 0 1 320 -832 2 @@ -9532,7 +9532,7 @@ GlifName: lacute Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 -100 945 2 @@ -9814,7 +9814,7 @@ GlifName: nacute Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 13 419 2 @@ -9868,7 +9868,7 @@ GlifName: ntilde Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 304 771 N 1 0 0 1 0 -696 2 @@ -9949,7 +9949,7 @@ GlifName: oacute Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 16 419 2 @@ -9962,7 +9962,7 @@ GlifName: obreve Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 349 774 N 1 0 0 1 2 -331 2 @@ -9988,7 +9988,7 @@ GlifName: odieresis Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 351 776 N 1 0 0 1 2 -488 2 @@ -10072,7 +10072,7 @@ GlifName: ograve Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 201 768 N 1 0 0 1 -30 476 2 @@ -10085,7 +10085,7 @@ GlifName: ohungarumlaut Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 353 779 N 1 0 0 1 81 -177 2 @@ -10098,7 +10098,7 @@ GlifName: omacron Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 348 772 N 1 0 0 1 2 -403 2 @@ -10333,7 +10333,7 @@ GlifName: otilde Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 304 771 N 1 0 0 1 2 -696 2 @@ -11050,7 +11050,7 @@ GlifName: racute Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 13 419 2 @@ -11197,7 +11197,7 @@ GlifName: sacute Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 13 419 2 @@ -11223,7 +11223,7 @@ GlifName: scedilla Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 356 807 N 1 0 0 1 196 -160 2 @@ -11641,27 +11641,27 @@ GlifName: tildecomb Width: 0 VWidth: 0 GlyphClass: 2 -Flags: W -AnchorPoint: "top" 492 1855 mark 0 -AnchorPoint: "top" 492 1855 mark 0 +Flags: HW +AnchorPoint: "top" -20 1855 mark 0 +AnchorPoint: "top" -20 1855 mark 0 LayerCount: 2 Fore SplineSet -366 1966 m 257 - 366 1916 l 257 - 716 1845 l 257 - 716 1895 l 257 - 366 1966 l 257 -126 1910 m 257 - 140 1852 l 257 - 366 1916 l 257 - 366 1966 l 257 - 126 1910 l 257 -716 1895 m 257 - 716 1845 l 257 - 898 1996 l 257 - 884 2043 l 257 - 716 1895 l 257 +-146 1966 m 257 + -146 1916 l 257 + 204 1845 l 257 + 204 1895 l 257 + -146 1966 l 257 +-386 1910 m 257 + -372 1852 l 257 + -146 1916 l 257 + -146 1966 l 257 + -386 1910 l 257 +204 1895 m 257 + 204 1845 l 257 + 386 1996 l 257 + 372 2043 l 257 + 204 1895 l 257 EndSplineSet EndChar @@ -11740,7 +11740,7 @@ GlifName: uacute Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 -32 426 2 @@ -11753,7 +11753,7 @@ GlifName: ubreve Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 349 774 N 1 0 0 1 -44 -324 2 @@ -11779,7 +11779,7 @@ GlifName: udieresis Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 351 776 N 1 0 0 1 -44 -481 2 @@ -11792,7 +11792,7 @@ GlifName: ugrave Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 201 768 N 1 0 0 1 -77 483 2 @@ -11805,7 +11805,7 @@ GlifName: uhungarumlaut Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 353 779 N 1 0 0 1 34 -170 2 @@ -11818,7 +11818,7 @@ GlifName: umacron Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 348 772 N 1 0 0 1 -44 -396 2 @@ -11934,7 +11934,7 @@ GlifName: uni0122 Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 355 806 N 1 0 0 1 -68 -125 2 @@ -11990,7 +11990,7 @@ GlifName: uni0136 Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 355 806 N 1 0 0 1 31 -112 2 @@ -12003,7 +12003,7 @@ GlifName: uni0137 Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 355 806 N 1 0 0 1 22 -109 2 @@ -12016,7 +12016,7 @@ GlifName: uni013B_ Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 355 806 N 1 0 0 1 0 -121 2 @@ -12029,7 +12029,7 @@ GlifName: uni013C_ Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 355 806 N 1 0 0 1 0 -120 2 @@ -12042,7 +12042,7 @@ GlifName: uni0145 Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 355 806 N 1 0 0 1 0 -121 2 @@ -12055,7 +12055,7 @@ GlifName: uni0146 Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 355 806 N 1 0 0 1 120 -123 2 @@ -12068,7 +12068,7 @@ GlifName: uni0156 Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 355 806 N 1 0 0 1 -60 -122 2 @@ -12081,7 +12081,7 @@ GlifName: uni0157 Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 355 806 N 1 0 0 1 -122 -123 2 @@ -12094,7 +12094,7 @@ GlifName: uni0162 Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 356 807 N 1 0 0 1 198 -148 2 @@ -12107,7 +12107,7 @@ GlifName: uni0163 Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 356 807 N 1 0 0 1 350 -160 2 @@ -12169,7 +12169,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 713 382 N 0.5 0 0 1 512.5 0 2 +Refer: 711 382 N 0.5 0 0 1 512.5 0 2 Refer: 19 68 N 0.5 0 0 1 0.5 0 2 EndChar @@ -12182,7 +12182,7 @@ GlyphClass: 2 Flags: HW LayerCount: 2 Fore -Refer: 713 382 N 0.5 0 0 1 503.5 0 2 +Refer: 711 382 N 0.5 0 0 1 503.5 0 2 Refer: 160 100 N 0.5 0 0 1 -8.5 0 2 EndChar @@ -12192,7 +12192,7 @@ GlifName: uni0218 Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 355 806 N 1 0 0 1 14 -121 2 @@ -12205,7 +12205,7 @@ GlifName: uni0219 Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 355 806 N 1 0 0 1 -1 -121 2 @@ -12218,7 +12218,7 @@ GlifName: uni021A_ Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 355 806 N 1 0 0 1 1 -109 2 @@ -12231,7 +12231,7 @@ GlifName: uni021B_ Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 355 806 N 1 0 0 1 154 -121 2 @@ -12364,41 +12364,42 @@ GlifName: uni0302 Width: 0 VWidth: 0 GlyphClass: 2 -AnchorPoint: "top" 506 1427 mark 0 -AnchorPoint: "top" 539 1333 mark 0 +Flags: HW +AnchorPoint: "top" -34 1427 mark 0 +AnchorPoint: "top" -1 1333 mark 0 LayerCount: 2 Fore SplineSet -539 1701 m 257 - 503 1701 l 257 - 371 1391 l 257 - 398 1374 l 257 - 539 1701 l 257 -506 1703 m 257 - 668 1369 l 257 - 709 1387 l 257 - 543 1703 l 257 - 506 1703 l 257 +-1 1701 m 257 + -37 1701 l 257 + -169 1391 l 257 + -142 1374 l 257 + -1 1701 l 257 +-34 1703 m 257 + 128 1369 l 257 + 169 1387 l 257 + 3 1703 l 257 + -34 1703 l 257 EndSplineSet EndChar StartChar: uni0304 Encoding: 772 772 348 GlifName: uni0304 -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 2 -Flags: W -AnchorPoint: "top" 488 1532 mark 0 -AnchorPoint: "top" 488 1532 mark 0 +Flags: HW +AnchorPoint: "top" -24 1532 mark 0 +AnchorPoint: "top" -24 1532 mark 0 LayerCount: 2 Fore SplineSet -232 1602 m 257 - 232 1550 l 257 - 792 1550 l 257 - 792 1602 l 257 - 232 1602 l 257 +-280 1602 m 257 + -280 1550 l 257 + 280 1550 l 257 + 280 1602 l 257 + -280 1602 l 257 EndSplineSet EndChar @@ -12408,27 +12409,27 @@ GlifName: uni0306 Width: 0 VWidth: 0 GlyphClass: 2 -Flags: W -AnchorPoint: "top" 496 1440 mark 0 -AnchorPoint: "top" 496 1440 mark 0 +Flags: HW +AnchorPoint: "top" -16 1440 mark 0 +AnchorPoint: "top" -16 1440 mark 0 LayerCount: 2 Fore SplineSet -677 1550 m 257 - 677 1480 l 257 - 842 1550 l 257 - 842 1645 l 257 - 677 1550 l 257 -353 1550 m 257 - 353 1480 l 257 - 677 1480 l 257 - 677 1550 l 257 - 353 1550 l 257 -182 1630 m 257 - 182 1550 l 257 - 353 1480 l 257 - 353 1550 l 257 - 182 1630 l 257 +165 1550 m 257 + 165 1480 l 257 + 330 1550 l 257 + 330 1645 l 257 + 165 1550 l 257 +-159 1550 m 257 + -159 1480 l 257 + 165 1480 l 257 + 165 1550 l 257 + -159 1550 l 257 +-330 1630 m 257 + -330 1550 l 257 + -159 1480 l 257 + -159 1550 l 257 + -330 1630 l 257 EndSplineSet EndChar @@ -12438,216 +12439,216 @@ GlifName: uni0307 Width: 0 VWidth: 0 GlyphClass: 2 -Flags: W -AnchorPoint: "top" 508 1542 mark 0 -AnchorPoint: "top" 508 1542 mark 0 +Flags: HW +AnchorPoint: "top" -4 1542 mark 0 +AnchorPoint: "top" -4 1542 mark 0 LayerCount: 2 Fore SplineSet -456 1738 m 257 - 456 1637 l 257 - 568 1637 l 257 - 568 1738 l 257 - 456 1738 l 257 +-56 1738 m 257 + -56 1637 l 257 + 56 1637 l 257 + 56 1738 l 257 + -56 1738 l 257 EndSplineSet EndChar StartChar: uni0308 Encoding: 776 776 351 GlifName: uni0308 -Width: 6 +Width: 0 VWidth: 0 GlyphClass: 2 -Flags: W -AnchorPoint: "top" 516 1592 mark 0 -AnchorPoint: "top" 516 1592 mark 0 +Flags: HW +AnchorPoint: "top" 4 1592 mark 0 +AnchorPoint: "top" 4 1592 mark 0 LayerCount: 2 Fore SplineSet -335 1738 m 257 - 335 1637 l 257 - 447 1637 l 257 - 447 1738 l 257 - 335 1738 l 257 -577 1738 m 257 - 577 1637 l 257 - 689 1637 l 257 - 689 1738 l 257 - 577 1738 l 257 +-177 1738 m 257 + -177 1637 l 257 + -65 1637 l 257 + -65 1738 l 257 + -177 1738 l 257 +65 1738 m 257 + 65 1637 l 257 + 177 1637 l 257 + 177 1738 l 257 + 65 1738 l 257 EndSplineSet EndChar StartChar: uni030A Encoding: 778 778 352 GlifName: uni030A_ -Width: 6 +Width: 0 VWidth: 0 GlyphClass: 2 -Flags: W -AnchorPoint: "top" 541 1536 mark 0 -AnchorPoint: "top" 541 1536 mark 0 +Flags: HW +AnchorPoint: "top" 29 1536 mark 0 +AnchorPoint: "top" 29 1536 mark 0 LayerCount: 2 Fore SplineSet -366 1818 m 257 - 656 1818 l 257 - 656 1565 l 257 - 366 1565 l 257 - 366 1818 l 257 -332 1847 m 257 - 332 1538 l 257 - 692 1538 l 257 - 692 1847 l 257 - 332 1847 l 257 +-146 1818 m 257 + 144 1818 l 257 + 144 1565 l 257 + -146 1565 l 257 + -146 1818 l 257 +-180 1847 m 257 + -180 1538 l 257 + 180 1538 l 257 + 180 1847 l 257 + -180 1847 l 257 EndSplineSet EndChar StartChar: uni030B Encoding: 779 779 353 GlifName: uni030B_ -Width: 12 +Width: 0 VWidth: 0 GlyphClass: 2 -Flags: W -AnchorPoint: "top" 493 1280 mark 0 -AnchorPoint: "top" 493 1280 mark 0 +Flags: HW +AnchorPoint: "top" 59 1280 mark 0 +AnchorPoint: "top" 59 1280 mark 0 LayerCount: 2 Fore -Refer: 273 34 N 1 0 0 1 -78 0 2 +Refer: 273 34 N 1 0 0 1 -512 0 2 EndChar StartChar: uni030C Encoding: 780 780 354 GlifName: uni030C_ -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 2 -Flags: W -AnchorPoint: "top" 504 1315 mark 0 -AnchorPoint: "top" 518 1280 mark 0 +Flags: HW +AnchorPoint: "top" -29 1315 mark 0 +AnchorPoint: "top" -15 1280 mark 0 LayerCount: 2 Fore SplineSet -532 1286 m 257 - 391 1613 l 257 - 364 1596 l 257 - 496 1286 l 257 - 532 1286 l 257 -499 1285 m 257 - 536 1285 l 257 - 702 1600 l 257 - 661 1618 l 257 - 499 1285 l 257 +-1 1286 m 257 + -142 1613 l 257 + -169 1596 l 257 + -37 1286 l 257 + -1 1286 l 257 +-34 1285 m 257 + 3 1285 l 257 + 169 1600 l 257 + 128 1618 l 257 + -34 1285 l 257 EndSplineSet EndChar StartChar: uni0326 Encoding: 806 806 355 GlifName: uni0326 -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 2 -Flags: W -AnchorPoint: "base" 534 -5 mark 0 -AnchorPoint: "base" 534 -5 mark 0 +Flags: HW +AnchorPoint: "base" 22 -5 mark 0 +AnchorPoint: "base" 22 -5 mark 0 LayerCount: 2 Fore SplineSet -478 0 m 257 - 478 -132 l 257 - 590 -132 l 257 - 590 0 l 257 - 478 0 l 257 -478 -132 m 257 - 434 -246 l 257 - 498 -273 l 257 - 590 -132 l 257 - 478 -132 l 257 +-34 0 m 257 + -34 -132 l 257 + 78 -132 l 257 + 78 0 l 257 + -34 0 l 257 +-34 -132 m 257 + -78 -246 l 257 + -14 -273 l 257 + 78 -132 l 257 + -34 -132 l 257 EndSplineSet EndChar StartChar: uni0327 Encoding: 807 807 356 GlifName: uni0327 -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 2 -Flags: W -AnchorPoint: "base" 654 191 mark 0 -AnchorPoint: "base" 654 191 mark 0 -LayerCount: 2 -Fore -SplineSet -286 180 m 257 - 286 -60 l 257 - 344 -60 l 257 - 344 180 l 257 - 286 180 l 257 -292 -347 m 257 - 292 -406 l 257 - 738 -406 l 257 - 738 -347 l 257 - 292 -347 l 257 -679 0 m 257 - 679 -372 l 257 - 738 -372 l 257 - 738 0 l 257 - 679 0 l 257 -292 0 m 257 - 292 -60 l 257 - 738 -60 l 257 - 738 0 l 257 - 292 0 l 257 +Flags: HW +AnchorPoint: "base" 142 191 mark 0 +AnchorPoint: "base" 142 191 mark 0 +LayerCount: 2 +Fore +SplineSet +-226 180 m 257 + -226 -60 l 257 + -168 -60 l 257 + -168 180 l 257 + -226 180 l 257 +-220 -347 m 257 + -220 -406 l 257 + 226 -406 l 257 + 226 -347 l 257 + -220 -347 l 257 +167 0 m 257 + 167 -372 l 257 + 226 -372 l 257 + 226 0 l 257 + 167 0 l 257 +-220 0 m 257 + -220 -60 l 257 + 226 -60 l 257 + 226 0 l 257 + -220 0 l 257 EndSplineSet EndChar StartChar: uni0328 Encoding: 808 808 357 GlifName: uni0328 -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 2 -Flags: W -AnchorPoint: "base" 990 23 mark 0 -AnchorPoint: "base" 990 23 mark 0 +Flags: HW +AnchorPoint: "base" 478 23 mark 0 +AnchorPoint: "base" 478 23 mark 0 LayerCount: 2 Fore SplineSet -241 -351 m 257 - 241 -411 l 257 - 782 -411 l 257 - 782 -351 l 257 - 241 -351 l 257 -241 0 m 257 - 241 -411 l 257 - 301 -411 l 257 - 301 0 l 257 - 241 0 l 257 -241 0 m 257 - 241 -59 l 257 - 783 -59 l 257 - 783 0 l 257 - 241 0 l 257 +-271 -351 m 257 + -271 -411 l 257 + 270 -411 l 257 + 270 -351 l 257 + -271 -351 l 257 +-271 0 m 257 + -271 -411 l 257 + -211 -411 l 257 + -211 0 l 257 + -271 0 l 257 +-271 0 m 257 + -271 -59 l 257 + 271 -59 l 257 + 271 0 l 257 + -271 0 l 257 EndSplineSet EndChar StartChar: uni0331 Encoding: 817 817 358 GlifName: uni0331 -Width: 1024 +Width: 0 VWidth: 0 GlyphClass: 2 -Flags: W -AnchorPoint: "base" 510 -163 mark 0 -AnchorPoint: "base" 510 -163 mark 0 +Flags: HW +AnchorPoint: "base" 4 -163 mark 0 +AnchorPoint: "base" 4 -163 mark 0 LayerCount: 2 Fore SplineSet -226 -204 m 257 - 226 -248 l 257 - 786 -248 l 257 - 786 -204 l 257 - 226 -204 l 257 +-280 -204 m 257 + -280 -248 l 257 + 280 -248 l 257 + 280 -204 l 257 + -280 -204 l 257 EndSplineSet EndChar @@ -12658,30 +12659,30 @@ Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "abvm" 520 1622 mark 0 +AnchorPoint: "abvm" 2.5 1622 mark 0 LayerCount: 2 Fore SplineSet -185 2121 m 257 - 185 1639 l 257 - 245 1639 l 257 - 245 2121 l 257 - 185 2121 l 257 -199 2122 m 257 - 199 2061 l 257 - 812 2061 l 257 - 812 2122 l 257 - 199 2122 l 257 -471 1919 m 257 - 471 1796 l 257 - 588 1796 l 257 - 588 1919 l 257 - 471 1919 l 257 -790 2122 m 257 - 790 1636 l 257 - 850 1636 l 257 - 850 2122 l 257 - 790 2122 l 257 +-332.5 2121 m 257 + -332.5 1639 l 257 + -272.5 1639 l 257 + -272.5 2121 l 257 + -332.5 2121 l 257 +-318.5 2122 m 257 + -318.5 2061 l 257 + 294.5 2061 l 257 + 294.5 2122 l 257 + -318.5 2122 l 257 +-46.5 1919 m 257 + -46.5 1796 l 257 + 70.5 1796 l 257 + 70.5 1919 l 257 + -46.5 1919 l 257 +272.5 2122 m 257 + 272.5 1636 l 257 + 332.5 1636 l 257 + 332.5 2122 l 257 + 272.5 2122 l 257 EndSplineSet EndChar @@ -12692,30 +12693,30 @@ Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "abvm" 540 1617 mark 0 +AnchorPoint: "abvm" 55 1617 mark 0 LayerCount: 2 Fore SplineSet -136 2124 m 257 - 136 1639 l 257 - 196 1639 l 257 - 196 2124 l 257 - 136 2124 l 257 -171 1699 m 257 - 171 1639 l 257 - 805 1639 l 257 - 805 1699 l 257 - 171 1699 l 257 -438 1962 m 257 - 438 1839 l 257 - 555 1839 l 257 - 555 1962 l 257 - 438 1962 l 257 -774 2130 m 257 - 774 1639 l 257 - 834 1639 l 257 - 834 2130 l 257 - 774 2130 l 257 +-349 2124 m 257 + -349 1639 l 257 + -289 1639 l 257 + -289 2124 l 257 + -349 2124 l 257 +-314 1699 m 257 + -314 1639 l 257 + 320 1639 l 257 + 320 1699 l 257 + -314 1699 l 257 +-47 1962 m 257 + -47 1839 l 257 + 70 1839 l 257 + 70 1962 l 257 + -47 1962 l 257 +289 2130 m 257 + 289 1639 l 257 + 349 1639 l 257 + 349 2130 l 257 + 289 2130 l 257 EndSplineSet EndChar @@ -12726,15 +12727,15 @@ Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "abvm" 295 1534 mark 0 +AnchorPoint: "abvm" -15 1534 mark 0 LayerCount: 2 Fore SplineSet -250 1700 m 257 - 250 1580 l 257 - 370 1580 l 257 - 370 1700 l 257 - 250 1700 l 257 +-60 1700 m 257 + -60 1580 l 257 + 60 1580 l 257 + 60 1700 l 257 + -60 1700 l 257 EndSplineSet EndChar @@ -19421,36 +19422,8 @@ EndSplineSet Ligature2: "blwsBelowBaseSubstitutionsinDevanagarilookup12 subtable" uni0930 uni0942 EndChar -StartChar: uni0930_uni094D.abvs -Encoding: 65628 -1 499 -GlifName: uni0930_uni094D_.abvs -Width: 1024 -VWidth: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -120 1550 m 257 - 180 1550 l 257 - 180 1869 l 257 - 120 1869 l 257 - 120 1550 l 257 -244 2002 m 257 - 244 1942 l 257 - 572 1942 l 257 - 572 2002 l 257 - 244 2002 l 257 -244 2002 m 257 - 120 1869 l 257 - 180 1869 l 257 - 244 1942 l 257 - 244 2002 l 257 -EndSplineSet -EndChar - StartChar: uni0930_uni094D.blwf -Encoding: 65629 -1 500 +Encoding: 65629 -1 499 GlifName: uni0930_uni094D_.blwf Width: 1024 VWidth: 0 @@ -19479,7 +19452,7 @@ Ligature2: "blwfBelowBaseFormsinDevanagarilookup0 subtable" uni094D uni0930 EndChar StartChar: uni0930_uni094D.half -Encoding: 65630 -1 501 +Encoding: 65630 -1 500 GlifName: uni0930_uni094D_.half Width: 1024 VWidth: 0 @@ -19514,7 +19487,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0930 uni094D EndChar StartChar: uni0930_uni094D.haln -Encoding: 65631 -1 502 +Encoding: 65631 -1 501 GlifName: uni0930_uni094D_.haln Width: 1024 VWidth: 0 @@ -19558,7 +19531,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0930 uni094D EndChar StartChar: uni0930_uni094D.rphf -Encoding: 65632 -1 503 +Encoding: 65632 -1 502 GlifName: uni0930_uni094D_.rphf Width: 1024 VWidth: 0 @@ -19591,26 +19564,8 @@ EndSplineSet Ligature2: "rphfRephForminDevanagarilookup0 subtable" uni0930 uni094D EndChar -StartChar: uni0930_uni094D.vatu -Encoding: 65633 -1 504 -GlifName: uni0930_uni094D_.vatu -Width: 1024 -VWidth: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -208 0 m 257 - 328 0 l 257 - 805 215 l 257 - 805 285 l 257 - 208 0 l 257 -EndSplineSet -EndChar - StartChar: uni0931 -Encoding: 2353 2353 505 +Encoding: 2353 2353 503 GlifName: uni0931 Width: 1024 VWidth: 0 @@ -19649,7 +19604,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0930 uni093C EndChar StartChar: uni0931_uni0930_uni094D.vatu -Encoding: 65634 -1 506 +Encoding: 65634 -1 504 GlifName: uni0931_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -19693,7 +19648,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0931 uni0930_uni09 EndChar StartChar: uni0931_uni094D.haln -Encoding: 65635 -1 507 +Encoding: 65635 -1 505 GlifName: uni0931_uni094D_.haln Width: 1024 VWidth: 0 @@ -19742,7 +19697,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0931 uni094D EndChar StartChar: uni0932 -Encoding: 2354 2354 508 +Encoding: 2354 2354 506 GlifName: uni0932 Width: 1024 VWidth: 0 @@ -19780,7 +19735,7 @@ EndSplineSet EndChar StartChar: uni0932_uni0930_uni094D.vatu -Encoding: 65636 -1 509 +Encoding: 65636 -1 507 GlifName: uni0932_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -19824,7 +19779,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0932 uni0930_uni09 EndChar StartChar: uni0932_uni094D.half -Encoding: 65637 -1 510 +Encoding: 65637 -1 508 GlifName: uni0932_uni094D_.half Width: 1024 VWidth: 0 @@ -19858,7 +19813,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0932 uni094D EndChar StartChar: uni0932_uni094D.haln -Encoding: 65638 -1 511 +Encoding: 65638 -1 509 GlifName: uni0932_uni094D_.haln Width: 1024 VWidth: 0 @@ -19907,7 +19862,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0932 uni094D EndChar StartChar: uni0933 -Encoding: 2355 2355 512 +Encoding: 2355 2355 510 GlifName: uni0933 Width: 1024 VWidth: 0 @@ -19950,7 +19905,7 @@ EndSplineSet EndChar StartChar: uni0933_uni0930_uni094D.vatu -Encoding: 65639 -1 513 +Encoding: 65639 -1 511 GlifName: uni0933_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -20004,7 +19959,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0933 uni0930_uni09 EndChar StartChar: uni0933_uni094D.half -Encoding: 65640 -1 514 +Encoding: 65640 -1 512 GlifName: uni0933_uni094D_.half Width: 1024 VWidth: 0 @@ -20048,7 +20003,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0933 uni094D EndChar StartChar: uni0933_uni094D.haln -Encoding: 65641 -1 515 +Encoding: 65641 -1 513 GlifName: uni0933_uni094D_.haln Width: 1024 VWidth: 0 @@ -20102,7 +20057,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0933 uni094D EndChar StartChar: uni0934 -Encoding: 2356 2356 516 +Encoding: 2356 2356 514 GlifName: uni0934 Width: 1024 VWidth: 0 @@ -20151,7 +20106,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0933 uni093C EndChar StartChar: uni0934_uni0930_uni094D.vatu -Encoding: 65642 -1 517 +Encoding: 65642 -1 515 GlifName: uni0934_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -20210,7 +20165,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0934 uni0930_uni09 EndChar StartChar: uni0934_uni094D.half -Encoding: 65643 -1 518 +Encoding: 65643 -1 516 GlifName: uni0934_uni094D_.half Width: 1024 VWidth: 0 @@ -20259,7 +20214,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0934 uni094D EndChar StartChar: uni0934_uni094D.haln -Encoding: 65644 -1 519 +Encoding: 65644 -1 517 GlifName: uni0934_uni094D_.haln Width: 1024 VWidth: 0 @@ -20318,7 +20273,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0934 uni094D EndChar StartChar: uni0935 -Encoding: 2357 2357 520 +Encoding: 2357 2357 518 GlifName: uni0935 Width: 1024 VWidth: 0 @@ -20356,7 +20311,7 @@ EndSplineSet EndChar StartChar: uni0935_uni0930_uni094D.vatu -Encoding: 65645 -1 521 +Encoding: 65645 -1 519 GlifName: uni0935_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -20400,7 +20355,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0935 uni0930_uni09 EndChar StartChar: uni0935_uni094D.half -Encoding: 65646 -1 522 +Encoding: 65646 -1 520 GlifName: uni0935_uni094D_.half Width: 1024 VWidth: 0 @@ -20434,7 +20389,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0935 uni094D EndChar StartChar: uni0935_uni094D.haln -Encoding: 65647 -1 523 +Encoding: 65647 -1 521 GlifName: uni0935_uni094D_.haln Width: 1024 VWidth: 0 @@ -20483,7 +20438,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0935 uni094D EndChar StartChar: uni0936 -Encoding: 2358 2358 524 +Encoding: 2358 2358 522 GlifName: uni0936 Width: 1024 VWidth: 0 @@ -20531,7 +20486,7 @@ EndSplineSet EndChar StartChar: uni0936_uni0930_uni094D.vatu -Encoding: 65648 -1 525 +Encoding: 65648 -1 523 GlifName: uni0936_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -20585,7 +20540,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0936 uni0930_uni09 EndChar StartChar: uni0936_uni094D.half -Encoding: 65649 -1 526 +Encoding: 65649 -1 524 GlifName: uni0936_uni094D_.half Width: 1024 VWidth: 0 @@ -20624,7 +20579,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0936 uni094D EndChar StartChar: uni0936_uni094D.haln -Encoding: 65650 -1 527 +Encoding: 65650 -1 525 GlifName: uni0936_uni094D_.haln Width: 1024 VWidth: 0 @@ -20683,7 +20638,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0936 uni094D EndChar StartChar: uni0937 -Encoding: 2359 2359 528 +Encoding: 2359 2359 526 GlifName: uni0937 Width: 1024 VWidth: 0 @@ -20721,7 +20676,7 @@ EndSplineSet EndChar StartChar: uni0937_uni0930_uni094D.vatu -Encoding: 65651 -1 529 +Encoding: 65651 -1 527 GlifName: uni0937_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -20765,7 +20720,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0937 uni0930_uni09 EndChar StartChar: uni0937_uni094D.half -Encoding: 65652 -1 530 +Encoding: 65652 -1 528 GlifName: uni0937_uni094D_.half Width: 1024 VWidth: 0 @@ -20799,7 +20754,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0937 uni094D EndChar StartChar: uni0937_uni094D.haln -Encoding: 65653 -1 531 +Encoding: 65653 -1 529 GlifName: uni0937_uni094D_.haln Width: 1024 VWidth: 0 @@ -20848,7 +20803,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0937 uni094D EndChar StartChar: uni0938 -Encoding: 2360 2360 532 +Encoding: 2360 2360 530 GlifName: uni0938 Width: 1024 VWidth: 0 @@ -20886,7 +20841,7 @@ EndSplineSet EndChar StartChar: uni0938_uni0930_uni094D.vatu -Encoding: 65654 -1 533 +Encoding: 65654 -1 531 GlifName: uni0938_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -20930,7 +20885,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0938 uni0930_uni09 EndChar StartChar: uni0938_uni094D.half -Encoding: 65655 -1 534 +Encoding: 65655 -1 532 GlifName: uni0938_uni094D_.half Width: 1024 VWidth: 0 @@ -20964,7 +20919,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0938 uni094D EndChar StartChar: uni0938_uni094D.haln -Encoding: 65656 -1 535 +Encoding: 65656 -1 533 GlifName: uni0938_uni094D_.haln Width: 1024 VWidth: 0 @@ -21013,7 +20968,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0938 uni094D EndChar StartChar: uni0939 -Encoding: 2361 2361 536 +Encoding: 2361 2361 534 GlifName: uni0939 Width: 1024 VWidth: 0 @@ -21066,7 +21021,7 @@ EndSplineSet EndChar StartChar: uni0939_uni0930_uni094D.vatu -Encoding: 65657 -1 537 +Encoding: 65657 -1 535 GlifName: uni0939_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -21125,7 +21080,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0939 uni0930_uni09 EndChar StartChar: uni0939_uni0943.blws -Encoding: 65658 -1 538 +Encoding: 65658 -1 536 GlifName: uni0939_uni0943.blws Width: 1024 VWidth: 0 @@ -21184,7 +21139,7 @@ Ligature2: "blwsBelowBaseSubstitutionsinDevanagarilookup12 subtable" uni0939 uni EndChar StartChar: uni0939_uni094D.half -Encoding: 65659 -1 539 +Encoding: 65659 -1 537 GlifName: uni0939_uni094D_.half Width: 1024 VWidth: 0 @@ -21233,7 +21188,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0939 uni094D EndChar StartChar: uni0939_uni094D.haln -Encoding: 65660 -1 540 +Encoding: 65660 -1 538 GlifName: uni0939_uni094D_.haln Width: 1024 VWidth: 0 @@ -21297,7 +21252,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0939 uni094D EndChar StartChar: uni0939_uni094D_uni092E.pres -Encoding: 65661 -1 541 +Encoding: 65661 -1 539 GlifName: uni0939_uni094D__uni092E_.pres Width: 1024 VWidth: 0 @@ -21371,7 +21326,7 @@ Ligature2: "presPreBaseSubstitutionsinDevanagarilookup0 subtable" uni0939_uni094 EndChar StartChar: uni093A -Encoding: 2362 2362 542 +Encoding: 2362 2362 540 GlifName: uni093A_ Width: 1024 VWidth: 0 @@ -21389,7 +21344,7 @@ EndSplineSet EndChar StartChar: uni093B -Encoding: 2363 2363 543 +Encoding: 2363 2363 541 GlifName: uni093B_ Width: 1024 VWidth: 0 @@ -21412,7 +21367,7 @@ EndSplineSet EndChar StartChar: uni093C -Encoding: 2364 2364 544 +Encoding: 2364 2364 542 GlifName: uni093C_ Width: 1024 VWidth: 0 @@ -21430,7 +21385,7 @@ EndSplineSet EndChar StartChar: uni093D -Encoding: 2365 2365 545 +Encoding: 2365 2365 543 GlifName: uni093D_ Width: 1024 VWidth: 0 @@ -21463,7 +21418,7 @@ EndSplineSet EndChar StartChar: uni093E -Encoding: 2366 2366 546 +Encoding: 2366 2366 544 GlifName: uni093E_ Width: 1024 VWidth: 0 @@ -21486,7 +21441,7 @@ EndSplineSet EndChar StartChar: uni093E_uni0930_uni094D.abvs -Encoding: 65662 -1 547 +Encoding: 65662 -1 545 GlifName: uni093E__uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -21525,7 +21480,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni093E uni0 EndChar StartChar: uni093F -Encoding: 2367 2367 548 +Encoding: 2367 2367 546 GlifName: uni093F_ Width: 1024 VWidth: 0 @@ -21558,7 +21513,7 @@ EndSplineSet EndChar StartChar: uni0940 -Encoding: 2368 2368 549 +Encoding: 2368 2368 547 GlifName: uni0940 Width: 1024 VWidth: 0 @@ -21591,7 +21546,7 @@ EndSplineSet EndChar StartChar: uni0940_uni0902.abvs -Encoding: 65663 -1 550 +Encoding: 65663 -1 548 GlifName: uni0940_uni0902.abvs Width: 1024 VWidth: 0 @@ -21630,7 +21585,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0940 uni0 EndChar StartChar: uni0940_uni0930_uni094D.abvs -Encoding: 65664 -1 551 +Encoding: 65664 -1 549 GlifName: uni0940_uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -21679,7 +21634,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0940 uni0 EndChar StartChar: uni0941 -Encoding: 2369 2369 552 +Encoding: 2369 2369 550 GlifName: uni0941 Width: 0 VWidth: 0 @@ -21713,7 +21668,7 @@ EndSplineSet EndChar StartChar: uni0942 -Encoding: 2370 2370 553 +Encoding: 2370 2370 551 GlifName: uni0942 Width: 0 VWidth: 0 @@ -21747,7 +21702,7 @@ EndSplineSet EndChar StartChar: uni0943 -Encoding: 2371 2371 554 +Encoding: 2371 2371 552 GlifName: uni0943 Width: 0 VWidth: 0 @@ -21776,7 +21731,7 @@ EndSplineSet EndChar StartChar: uni0944 -Encoding: 2372 2372 555 +Encoding: 2372 2372 553 GlifName: uni0944 Width: 0 VWidth: 0 @@ -21810,7 +21765,7 @@ EndSplineSet EndChar StartChar: uni0945 -Encoding: 2373 2373 556 +Encoding: 2373 2373 554 GlifName: uni0945 Width: 1024 VWidth: 0 @@ -21843,7 +21798,7 @@ EndSplineSet EndChar StartChar: uni0945_uni0902.abvs -Encoding: 65673 -1 557 +Encoding: 65673 -1 555 GlifName: uni0945_uni0902.abvs Width: 1024 VWidth: 0 @@ -21882,7 +21837,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0945 uni0 EndChar StartChar: uni0945_uni0930_uni094D.abvs -Encoding: 65674 -1 558 +Encoding: 65674 -1 556 GlifName: uni0945_uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -21931,7 +21886,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0945 uni0 EndChar StartChar: uni0946 -Encoding: 2374 2374 559 +Encoding: 2374 2374 557 GlifName: uni0946 Width: 1024 VWidth: 0 @@ -21964,7 +21919,7 @@ EndSplineSet EndChar StartChar: uni0946_uni0902.abvs -Encoding: 65675 -1 560 +Encoding: 65675 -1 558 GlifName: uni0946_uni0902.abvs Width: 1024 VWidth: 0 @@ -22003,7 +21958,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0946 uni0 EndChar StartChar: uni0946_uni0930_uni094D.abvs -Encoding: 65676 -1 561 +Encoding: 65676 -1 559 GlifName: uni0946_uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -22052,7 +22007,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0946 uni0 EndChar StartChar: uni0947 -Encoding: 2375 2375 562 +Encoding: 2375 2375 560 GlifName: uni0947 Width: 1024 VWidth: 0 @@ -22075,7 +22030,7 @@ EndSplineSet EndChar StartChar: uni0947_uni0902.abvs -Encoding: 65677 -1 563 +Encoding: 65677 -1 561 GlifName: uni0947_uni0902.abvs Width: 1024 VWidth: 0 @@ -22104,7 +22059,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0947 uni0 EndChar StartChar: uni0947_uni0930_uni094D.abvs -Encoding: 65678 -1 564 +Encoding: 65678 -1 562 GlifName: uni0947_uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -22143,7 +22098,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0947 uni0 EndChar StartChar: uni0948 -Encoding: 2376 2376 565 +Encoding: 2376 2376 563 GlifName: uni0948 Width: 1024 VWidth: 0 @@ -22171,7 +22126,7 @@ EndSplineSet EndChar StartChar: uni0948_uni0902.abvs -Encoding: 65679 -1 566 +Encoding: 65679 -1 564 GlifName: uni0948_uni0902.abvs Width: 1024 VWidth: 0 @@ -22205,7 +22160,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0948 uni0 EndChar StartChar: uni0948_uni0930_uni094D.abvs -Encoding: 65680 -1 567 +Encoding: 65680 -1 565 GlifName: uni0948_uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -22249,7 +22204,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0948 uni0 EndChar StartChar: uni0949 -Encoding: 2377 2377 568 +Encoding: 2377 2377 566 GlifName: uni0949 Width: 1024 VWidth: 0 @@ -22287,7 +22242,7 @@ EndSplineSet EndChar StartChar: uni0949_uni0902.abvs -Encoding: 65681 -1 569 +Encoding: 65681 -1 567 GlifName: uni0949_uni0902.abvs Width: 1024 VWidth: 0 @@ -22331,7 +22286,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0949 uni0 EndChar StartChar: uni0949_uni0930_uni094D.abvs -Encoding: 65682 -1 570 +Encoding: 65682 -1 568 GlifName: uni0949_uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -22385,7 +22340,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0949 uni0 EndChar StartChar: uni094A -Encoding: 2378 2378 571 +Encoding: 2378 2378 569 GlifName: uni094A_ Width: 1024 VWidth: 0 @@ -22423,7 +22378,7 @@ EndSplineSet EndChar StartChar: uni094A_uni0902.abvs -Encoding: 65683 -1 572 +Encoding: 65683 -1 570 GlifName: uni094A__uni0902.abvs Width: 1024 VWidth: 0 @@ -22467,7 +22422,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094A uni0 EndChar StartChar: uni094A_uni0930_uni094D.abvs -Encoding: 65684 -1 573 +Encoding: 65684 -1 571 GlifName: uni094A__uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -22521,7 +22476,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094A uni0 EndChar StartChar: uni094B -Encoding: 2379 2379 574 +Encoding: 2379 2379 572 GlifName: uni094B_ Width: 1024 VWidth: 0 @@ -22549,7 +22504,7 @@ EndSplineSet EndChar StartChar: uni094B_uni0902.abvs -Encoding: 65685 -1 575 +Encoding: 65685 -1 573 GlifName: uni094B__uni0902.abvs Width: 1024 VWidth: 0 @@ -22583,7 +22538,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094B uni0 EndChar StartChar: uni094B_uni0930_uni094D.abvs -Encoding: 65686 -1 576 +Encoding: 65686 -1 574 GlifName: uni094B__uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -22627,7 +22582,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094B uni0 EndChar StartChar: uni094C -Encoding: 2380 2380 577 +Encoding: 2380 2380 575 GlifName: uni094C_ Width: 1024 VWidth: 0 @@ -22660,7 +22615,7 @@ EndSplineSet EndChar StartChar: uni094C_uni0902.abvs -Encoding: 65687 -1 578 +Encoding: 65687 -1 576 GlifName: uni094C__uni0902.abvs Width: 1024 VWidth: 0 @@ -22699,7 +22654,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094C uni0 EndChar StartChar: uni094C_uni0930_uni094D.abvs -Encoding: 65688 -1 579 +Encoding: 65688 -1 577 GlifName: uni094C__uni0930_uni094D_.abvs Width: 1024 VWidth: 0 @@ -22748,12 +22703,12 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094C uni0 EndChar StartChar: uni094D -Encoding: 2381 2381 580 +Encoding: 2381 2381 578 GlifName: uni094D_ Width: 0 VWidth: 0 GlyphClass: 2 -Flags: HWO +Flags: HW AnchorPoint: "blwm" -70 72 mark 0 LayerCount: 2 Fore @@ -22772,7 +22727,7 @@ EndSplineSet EndChar StartChar: uni094E -Encoding: 2382 2382 581 +Encoding: 2382 2382 579 GlifName: uni094E_ Width: 1024 VWidth: 0 @@ -22795,7 +22750,7 @@ EndSplineSet EndChar StartChar: uni094F -Encoding: 2383 2383 582 +Encoding: 2383 2383 580 GlifName: uni094F_ Width: 1024 VWidth: 0 @@ -22848,7 +22803,7 @@ EndSplineSet EndChar StartChar: uni0950 -Encoding: 2384 2384 583 +Encoding: 2384 2384 581 GlifName: uni0950 Width: 1024 VWidth: 0 @@ -22906,7 +22861,7 @@ EndSplineSet EndChar StartChar: uni0951 -Encoding: 2385 2385 584 +Encoding: 2385 2385 582 GlifName: uni0951 Width: 1024 VWidth: 0 @@ -22924,7 +22879,7 @@ EndSplineSet EndChar StartChar: uni0952 -Encoding: 2386 2386 585 +Encoding: 2386 2386 583 GlifName: uni0952 Width: 1024 VWidth: 0 @@ -22943,7 +22898,7 @@ EndSplineSet EndChar StartChar: uni0953 -Encoding: 2387 2387 586 +Encoding: 2387 2387 584 GlifName: uni0953 Width: 1024 VWidth: 0 @@ -22961,7 +22916,7 @@ EndSplineSet EndChar StartChar: uni0954 -Encoding: 2388 2388 587 +Encoding: 2388 2388 585 GlifName: uni0954 Width: 1024 VWidth: 0 @@ -22979,7 +22934,7 @@ EndSplineSet EndChar StartChar: uni0955 -Encoding: 2389 2389 588 +Encoding: 2389 2389 586 GlifName: uni0955 Width: 1024 VWidth: 0 @@ -23017,7 +22972,7 @@ EndSplineSet EndChar StartChar: uni0956 -Encoding: 2390 2390 589 +Encoding: 2390 2390 587 GlifName: uni0956 Width: 1024 VWidth: 0 @@ -23050,7 +23005,7 @@ EndSplineSet EndChar StartChar: uni0957 -Encoding: 2391 2391 590 +Encoding: 2391 2391 588 GlifName: uni0957 Width: 1024 VWidth: 0 @@ -23098,7 +23053,7 @@ EndSplineSet EndChar StartChar: uni0958 -Encoding: 2392 2392 591 +Encoding: 2392 2392 589 GlifName: uni0958 Width: 1024 VWidth: 0 @@ -23152,7 +23107,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0915 uni093C EndChar StartChar: uni0958_uni0930_uni094D.vatu -Encoding: 65689 -1 592 +Encoding: 65689 -1 590 GlifName: uni0958_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -23211,7 +23166,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0958 uni0930_uni09 EndChar StartChar: uni0958_uni094D.half -Encoding: 65690 -1 593 +Encoding: 65690 -1 591 GlifName: uni0958_uni094D_.half Width: 1024 VWidth: 0 @@ -23260,7 +23215,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0958 uni094D EndChar StartChar: uni0958_uni094D.haln -Encoding: 65691 -1 594 +Encoding: 65691 -1 592 GlifName: uni0958_uni094D_.haln Width: 1024 VWidth: 0 @@ -23324,7 +23279,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0958 uni094D EndChar StartChar: uni0959 -Encoding: 2393 2393 595 +Encoding: 2393 2393 593 GlifName: uni0959 Width: 1024 VWidth: 0 @@ -23383,7 +23338,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0916 uni093C EndChar StartChar: uni0959_uni0930_uni094D.vatu -Encoding: 65692 -1 596 +Encoding: 65692 -1 594 GlifName: uni0959_uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -23447,7 +23402,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0959 uni0930_uni09 EndChar StartChar: uni0959_uni094D.half -Encoding: 65693 -1 597 +Encoding: 65693 -1 595 GlifName: uni0959_uni094D_.half Width: 1024 VWidth: 0 @@ -23501,7 +23456,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0959 uni094D EndChar StartChar: uni0959_uni094D.haln -Encoding: 65694 -1 598 +Encoding: 65694 -1 596 GlifName: uni0959_uni094D_.haln Width: 1024 VWidth: 0 @@ -23570,7 +23525,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0959 uni094D EndChar StartChar: uni095A -Encoding: 2394 2394 599 +Encoding: 2394 2394 597 GlifName: uni095A_ Width: 1024 VWidth: 0 @@ -23614,7 +23569,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0917 uni093C EndChar StartChar: uni095A_uni0930_uni094D.vatu -Encoding: 65695 -1 600 +Encoding: 65695 -1 598 GlifName: uni095A__uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -23663,7 +23618,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095A uni0930_uni09 EndChar StartChar: uni095A_uni094D.half -Encoding: 65696 -1 601 +Encoding: 65696 -1 599 GlifName: uni095A__uni094D_.half Width: 1024 VWidth: 0 @@ -23702,7 +23657,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni095A uni094D EndChar StartChar: uni095A_uni094D.haln -Encoding: 65697 -1 602 +Encoding: 65697 -1 600 GlifName: uni095A__uni094D_.haln Width: 1024 VWidth: 0 @@ -23756,7 +23711,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095A uni094D EndChar StartChar: uni095B -Encoding: 2395 2395 603 +Encoding: 2395 2395 601 GlifName: uni095B_ Width: 1024 VWidth: 0 @@ -23805,7 +23760,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni091C uni093C EndChar StartChar: uni095B_uni0930_uni094D.vatu -Encoding: 65698 -1 604 +Encoding: 65698 -1 602 GlifName: uni095B__uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -23859,7 +23814,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095B uni0930_uni09 EndChar StartChar: uni095B_uni094D.half -Encoding: 65699 -1 605 +Encoding: 65699 -1 603 GlifName: uni095B__uni094D_.half Width: 1024 VWidth: 0 @@ -23903,7 +23858,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni095B uni094D EndChar StartChar: uni095B_uni094D.haln -Encoding: 65700 -1 606 +Encoding: 65700 -1 604 GlifName: uni095B__uni094D_.haln Width: 1024 VWidth: 0 @@ -23962,7 +23917,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095B uni094D EndChar StartChar: uni095C -Encoding: 2396 2396 607 +Encoding: 2396 2396 605 GlifName: uni095C_ Width: 1024 VWidth: 0 @@ -24021,7 +23976,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0921 uni093C EndChar StartChar: uni095C_uni0930_uni094D.vatu -Encoding: 65701 -1 608 +Encoding: 65701 -1 606 GlifName: uni095C__uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -24090,7 +24045,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095C uni0930_uni09 EndChar StartChar: uni095C_uni094D.haln -Encoding: 65702 -1 609 +Encoding: 65702 -1 607 GlifName: uni095C__uni094D_.haln Width: 1024 VWidth: 0 @@ -24159,7 +24114,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095C uni094D EndChar StartChar: uni095D -Encoding: 2397 2397 610 +Encoding: 2397 2397 608 GlifName: uni095D_ Width: 1024 VWidth: 0 @@ -24213,7 +24168,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0922 uni093C EndChar StartChar: uni095D_uni0930_uni094D.vatu -Encoding: 65703 -1 611 +Encoding: 65703 -1 609 GlifName: uni095D__uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -24277,7 +24232,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095D uni0930_uni09 EndChar StartChar: uni095D_uni094D.haln -Encoding: 65704 -1 612 +Encoding: 65704 -1 610 GlifName: uni095D__uni094D_.haln Width: 1024 VWidth: 0 @@ -24341,7 +24296,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095D uni094D EndChar StartChar: uni095E -Encoding: 2398 2398 613 +Encoding: 2398 2398 611 GlifName: uni095E_ Width: 1024 VWidth: 0 @@ -24385,7 +24340,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni092B uni093C EndChar StartChar: uni095E_uni0930_uni094D.vatu -Encoding: 65705 -1 614 +Encoding: 65705 -1 612 GlifName: uni095E__uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -24434,7 +24389,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095E uni0930_uni09 EndChar StartChar: uni095E_uni094D.half -Encoding: 65706 -1 615 +Encoding: 65706 -1 613 GlifName: uni095E__uni094D_.half Width: 1024 VWidth: 0 @@ -24473,7 +24428,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni095E uni094D EndChar StartChar: uni095E_uni094D.haln -Encoding: 65707 -1 616 +Encoding: 65707 -1 614 GlifName: uni095E__uni094D_.haln Width: 1024 VWidth: 0 @@ -24527,7 +24482,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095E uni094D EndChar StartChar: uni095F -Encoding: 2399 2399 617 +Encoding: 2399 2399 615 GlifName: uni095F_ Width: 1024 VWidth: 0 @@ -24571,7 +24526,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni092F uni093C EndChar StartChar: uni095F_uni0930_uni094D.vatu -Encoding: 65708 -1 618 +Encoding: 65708 -1 616 GlifName: uni095F__uni0930_uni094D_.vatu Width: 1024 VWidth: 0 @@ -24620,7 +24575,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095F uni0930_uni09 EndChar StartChar: uni095F_uni094D.half -Encoding: 65709 -1 619 +Encoding: 65709 -1 617 GlifName: uni095F__uni094D_.half Width: 1024 VWidth: 0 @@ -24674,7 +24629,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni095F uni094D EndChar StartChar: uni095F_uni094D.haln -Encoding: 65710 -1 620 +Encoding: 65710 -1 618 GlifName: uni095F__uni094D_.haln Width: 1024 VWidth: 0 @@ -24728,7 +24683,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095F uni094D EndChar StartChar: uni0960 -Encoding: 2400 2400 621 +Encoding: 2400 2400 619 GlifName: uni0960 Width: 1024 VWidth: 0 @@ -24786,7 +24741,7 @@ EndSplineSet EndChar StartChar: uni0961 -Encoding: 2401 2401 622 +Encoding: 2401 2401 620 GlifName: uni0961 Width: 1024 VWidth: 0 @@ -24839,7 +24794,7 @@ EndSplineSet EndChar StartChar: uni0962 -Encoding: 2402 2402 623 +Encoding: 2402 2402 621 GlifName: uni0962 Width: 1024 VWidth: 0 @@ -24882,7 +24837,7 @@ EndSplineSet EndChar StartChar: uni0963 -Encoding: 2403 2403 624 +Encoding: 2403 2403 622 GlifName: uni0963 Width: 1024 VWidth: 0 @@ -24930,7 +24885,7 @@ EndSplineSet EndChar StartChar: uni0964 -Encoding: 2404 2404 625 +Encoding: 2404 2404 623 GlifName: uni0964 Width: 1024 VWidth: 0 @@ -24948,7 +24903,7 @@ EndSplineSet EndChar StartChar: uni0965 -Encoding: 2405 2405 626 +Encoding: 2405 2405 624 GlifName: uni0965 Width: 1024 VWidth: 0 @@ -24971,7 +24926,7 @@ EndSplineSet EndChar StartChar: uni0966 -Encoding: 2406 2406 627 +Encoding: 2406 2406 625 GlifName: uni0966 Width: 1024 VWidth: 0 @@ -25004,7 +24959,7 @@ EndSplineSet EndChar StartChar: uni0967 -Encoding: 2407 2407 628 +Encoding: 2407 2407 626 GlifName: uni0967 Width: 1024 VWidth: 0 @@ -25037,7 +24992,7 @@ EndSplineSet EndChar StartChar: uni0968 -Encoding: 2408 2408 629 +Encoding: 2408 2408 627 GlifName: uni0968 Width: 1024 VWidth: 0 @@ -25075,7 +25030,7 @@ EndSplineSet EndChar StartChar: uni0969 -Encoding: 2409 2409 630 +Encoding: 2409 2409 628 GlifName: uni0969 Width: 1024 VWidth: 0 @@ -25113,7 +25068,7 @@ EndSplineSet EndChar StartChar: uni096A -Encoding: 2410 2410 631 +Encoding: 2410 2410 629 GlifName: uni096A_ Width: 1024 VWidth: 0 @@ -25161,7 +25116,7 @@ EndSplineSet EndChar StartChar: uni096B -Encoding: 2411 2411 632 +Encoding: 2411 2411 630 GlifName: uni096B_ Width: 1024 VWidth: 0 @@ -25194,7 +25149,7 @@ EndSplineSet EndChar StartChar: uni096C -Encoding: 2412 2412 633 +Encoding: 2412 2412 631 GlifName: uni096C_ Width: 1024 VWidth: 0 @@ -25232,7 +25187,7 @@ EndSplineSet EndChar StartChar: uni096D -Encoding: 2413 2413 634 +Encoding: 2413 2413 632 GlifName: uni096D_ Width: 1024 VWidth: 0 @@ -25270,7 +25225,7 @@ EndSplineSet EndChar StartChar: uni096E -Encoding: 2414 2414 635 +Encoding: 2414 2414 633 GlifName: uni096E_ Width: 1024 VWidth: 0 @@ -25298,7 +25253,7 @@ EndSplineSet EndChar StartChar: uni096F -Encoding: 2415 2415 636 +Encoding: 2415 2415 634 GlifName: uni096F_ Width: 1024 VWidth: 0 @@ -25336,7 +25291,7 @@ EndSplineSet EndChar StartChar: uni0970 -Encoding: 2416 2416 637 +Encoding: 2416 2416 635 GlifName: uni0970 Width: 1024 VWidth: 0 @@ -25354,7 +25309,7 @@ EndSplineSet EndChar StartChar: uni0971 -Encoding: 2417 2417 638 +Encoding: 2417 2417 636 GlifName: uni0971 Width: 1024 VWidth: 0 @@ -25372,7 +25327,7 @@ EndSplineSet EndChar StartChar: uni0972 -Encoding: 2418 2418 639 +Encoding: 2418 2418 637 GlifName: uni0972 Width: 1024 VWidth: 0 @@ -25430,7 +25385,7 @@ EndSplineSet EndChar StartChar: uni0973 -Encoding: 2419 2419 640 +Encoding: 2419 2419 638 GlifName: uni0973 Width: 1024 VWidth: 0 @@ -25478,7 +25433,7 @@ EndSplineSet EndChar StartChar: uni0974 -Encoding: 2420 2420 641 +Encoding: 2420 2420 639 GlifName: uni0974 Width: 1024 VWidth: 0 @@ -25526,7 +25481,7 @@ EndSplineSet EndChar StartChar: uni0975 -Encoding: 2421 2421 642 +Encoding: 2421 2421 640 GlifName: uni0975 Width: 1024 VWidth: 0 @@ -25599,7 +25554,7 @@ EndSplineSet EndChar StartChar: uni0976 -Encoding: 2422 2422 643 +Encoding: 2422 2422 641 GlifName: uni0976 Width: 1024 VWidth: 0 @@ -25657,7 +25612,7 @@ EndSplineSet EndChar StartChar: uni0977 -Encoding: 2423 2423 644 +Encoding: 2423 2423 642 GlifName: uni0977 Width: 1024 VWidth: 0 @@ -25730,7 +25685,7 @@ EndSplineSet EndChar StartChar: uni0978 -Encoding: 2424 2424 645 +Encoding: 2424 2424 643 GlifName: uni0978 Width: 1024 VWidth: 0 @@ -25763,7 +25718,7 @@ EndSplineSet EndChar StartChar: uni0979 -Encoding: 2425 2425 646 +Encoding: 2425 2425 644 GlifName: uni0979 Width: 1024 VWidth: 0 @@ -25821,7 +25776,7 @@ EndSplineSet EndChar StartChar: uni097A -Encoding: 2426 2426 647 +Encoding: 2426 2426 645 GlifName: uni097A_ Width: 1024 VWidth: 0 @@ -25864,7 +25819,7 @@ EndSplineSet EndChar StartChar: uni097B -Encoding: 2427 2427 648 +Encoding: 2427 2427 646 GlifName: uni097B_ Width: 1024 VWidth: 0 @@ -25907,7 +25862,7 @@ EndSplineSet EndChar StartChar: uni097C -Encoding: 2428 2428 649 +Encoding: 2428 2428 647 GlifName: uni097C_ Width: 1024 VWidth: 0 @@ -25955,7 +25910,7 @@ EndSplineSet EndChar StartChar: uni097D -Encoding: 2429 2429 650 +Encoding: 2429 2429 648 GlifName: uni097D_ Width: 1024 VWidth: 0 @@ -25988,7 +25943,7 @@ EndSplineSet EndChar StartChar: uni097E -Encoding: 2430 2430 651 +Encoding: 2430 2430 649 GlifName: uni097E_ Width: 1024 VWidth: 0 @@ -26036,7 +25991,7 @@ EndSplineSet EndChar StartChar: uni097F -Encoding: 2431 2431 652 +Encoding: 2431 2431 650 GlifName: uni097F_ Width: 1024 VWidth: 0 @@ -26084,12 +26039,12 @@ EndSplineSet EndChar StartChar: uni1E0C -Encoding: 7692 7692 653 +Encoding: 7692 7692 651 GlifName: uni1E_0C_ Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0 1 -346 168 2 @@ -26097,12 +26052,12 @@ Refer: 19 68 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E0D -Encoding: 7693 7693 654 +Encoding: 7693 7693 652 GlifName: uni1E_0D_ Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0 1 -4 164 2 @@ -26110,12 +26065,12 @@ Refer: 160 100 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E34 -Encoding: 7732 7732 655 +Encoding: 7732 7732 653 GlifName: uni1E_34 Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 358 817 N 1 0 0 1 321 83 2 @@ -26123,12 +26078,12 @@ Refer: 56 75 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E35 -Encoding: 7733 7733 656 +Encoding: 7733 7733 654 GlifName: uni1E_35 Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 358 817 N 1 0 0 1 61 82 2 @@ -26136,12 +26091,12 @@ Refer: 224 107 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E36 -Encoding: 7734 7734 657 +Encoding: 7734 7734 655 GlifName: uni1E_36 Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0 1 0 168 2 @@ -26149,12 +26104,12 @@ Refer: 57 76 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E37 -Encoding: 7735 7735 658 +Encoding: 7735 7735 656 GlifName: uni1E_37 Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0 1 0 169 2 @@ -26162,38 +26117,38 @@ Refer: 225 108 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E38 -Encoding: 7736 7736 659 +Encoding: 7736 7736 657 GlifName: uni1E_38 Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 348 772 N 1 0 0 1 -296 90 2 -Refer: 657 7734 N 1 0 0 1 0 0 2 +Refer: 655 7734 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E39 -Encoding: 7737 7737 660 +Encoding: 7737 7737 658 GlifName: uni1E_39 Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 348 772 N 1 0 0 1 -113 123 2 -Refer: 658 7735 N 1 0 0 1 0 0 2 +Refer: 656 7735 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E3A -Encoding: 7738 7738 661 +Encoding: 7738 7738 659 GlifName: uni1E_3A_ Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 358 817 N 1 0 0 1 6 82 2 @@ -26201,12 +26156,12 @@ Refer: 57 76 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E3B -Encoding: 7739 7739 662 +Encoding: 7739 7739 660 GlifName: uni1E_3B_ Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 358 817 N 1 0 0 1 6 83 2 @@ -26214,12 +26169,12 @@ Refer: 225 108 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E42 -Encoding: 7746 7746 663 +Encoding: 7746 7746 661 GlifName: uni1E_42 Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0 1 -19 165 2 @@ -26227,12 +26182,12 @@ Refer: 62 77 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E43 -Encoding: 7747 7747 664 +Encoding: 7747 7747 662 GlifName: uni1E_43 Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0 1 36 166 2 @@ -26240,12 +26195,12 @@ Refer: 232 109 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E44 -Encoding: 7748 7748 665 +Encoding: 7748 7748 663 GlifName: uni1E_44 Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 350 775 N 1 0 0 1 0 39 2 @@ -26253,12 +26208,12 @@ Refer: 63 78 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E45 -Encoding: 7749 7749 666 +Encoding: 7749 7749 664 GlifName: uni1E_45 Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 350 775 N 1 0 0 1 0 -488 2 @@ -26266,12 +26221,12 @@ Refer: 237 110 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E46 -Encoding: 7750 7750 667 +Encoding: 7750 7750 665 GlifName: uni1E_46 Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0 1 0 168 2 @@ -26279,12 +26234,12 @@ Refer: 63 78 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E47 -Encoding: 7751 7751 668 +Encoding: 7751 7751 666 GlifName: uni1E_47 Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0 1 70 166 2 @@ -26292,12 +26247,12 @@ Refer: 237 110 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E48 -Encoding: 7752 7752 669 +Encoding: 7752 7752 667 GlifName: uni1E_48 Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 358 817 N 1 0 0 1 6 82 2 @@ -26305,12 +26260,12 @@ Refer: 63 78 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E49 -Encoding: 7753 7753 670 +Encoding: 7753 7753 668 GlifName: uni1E_49 Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 358 817 N 1 0 0 1 96 80 2 @@ -26318,12 +26273,12 @@ Refer: 237 110 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E4C -Encoding: 7756 7756 671 +Encoding: 7756 7756 669 GlifName: uni1E_4C_ Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 18 1114 2 @@ -26331,12 +26286,12 @@ Refer: 77 213 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E4D -Encoding: 7757 7757 672 +Encoding: 7757 7757 670 GlifName: uni1E_4D_ Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 8 673 2 @@ -26344,12 +26299,12 @@ Refer: 259 245 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E58 -Encoding: 7768 7768 673 +Encoding: 7768 7768 671 GlifName: uni1E_58 Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 350 775 N 1 0 0 1 12 39 2 @@ -26357,12 +26312,12 @@ Refer: 80 82 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E59 -Encoding: 7769 7769 674 +Encoding: 7769 7769 672 GlifName: uni1E_59 Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 350 775 N 1 0 0 1 0 -488 2 @@ -26370,12 +26325,12 @@ Refer: 281 114 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E5A -Encoding: 7770 7770 675 +Encoding: 7770 7770 673 GlifName: uni1E_5A_ Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0 1 40 167 2 @@ -26383,12 +26338,12 @@ Refer: 80 82 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E5B -Encoding: 7771 7771 676 +Encoding: 7771 7771 674 GlifName: uni1E_5B_ Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0 1 -122 166 2 @@ -26396,38 +26351,38 @@ Refer: 281 114 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E5C -Encoding: 7772 7772 677 +Encoding: 7772 7772 675 GlifName: uni1E_5C_ Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 348 772 N 1 0 0 1 12 124 2 -Refer: 675 7770 N 1 0 0 1 0 0 2 +Refer: 673 7770 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E5D -Encoding: 7773 7773 678 +Encoding: 7773 7773 676 GlifName: uni1E_5D_ Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 348 772 N 1 0 0 1 0 -403 2 -Refer: 676 7771 N 1 0 0 1 0 0 2 +Refer: 674 7771 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E5E -Encoding: 7774 7774 679 +Encoding: 7774 7774 677 GlifName: uni1E_5E_ Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 358 817 N 1 0 0 1 46 81 2 @@ -26435,12 +26390,12 @@ Refer: 80 82 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E5F -Encoding: 7775 7775 680 +Encoding: 7775 7775 678 GlifName: uni1E_5F_ Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 358 817 N 1 0 0 1 -116 80 2 @@ -26448,12 +26403,12 @@ Refer: 281 114 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E62 -Encoding: 7778 7778 681 +Encoding: 7778 7778 679 GlifName: uni1E_62 Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0 1 14 168 2 @@ -26461,12 +26416,12 @@ Refer: 83 83 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E63 -Encoding: 7779 7779 682 +Encoding: 7779 7779 680 GlifName: uni1E_63 Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0 1 -1 168 2 @@ -26474,12 +26429,12 @@ Refer: 286 115 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E6C -Encoding: 7788 7788 683 +Encoding: 7788 7788 681 GlifName: uni1E_6C_ Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0 1 1 180 2 @@ -26487,12 +26442,12 @@ Refer: 88 84 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E6D -Encoding: 7789 7789 684 +Encoding: 7789 7789 682 GlifName: uni1E_6D_ Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0 1 -6 168 2 @@ -26500,12 +26455,12 @@ Refer: 298 116 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E8E -Encoding: 7822 7822 685 +Encoding: 7822 7822 683 GlifName: uni1E_8E_ Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 350 775 N 1 0 0 1 -4 39 2 @@ -26513,20 +26468,20 @@ Refer: 109 89 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E8F -Encoding: 7823 7823 686 +Encoding: 7823 7823 684 GlifName: uni1E_8F_ Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 350 775 N 1 0 0 1 0 -488 2 -Refer: 705 121 N 1 0 0 1 0 0 2 +Refer: 703 121 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E9E -Encoding: 7838 7838 687 +Encoding: 7838 7838 685 GlifName: uni1E_9E_ Width: 1024 VWidth: 0 @@ -26569,7 +26524,7 @@ EndSplineSet EndChar StartChar: uni200C -Encoding: 8204 8204 688 +Encoding: 8204 8204 686 GlifName: uni200C_ Width: 1024 VWidth: 0 @@ -26592,7 +26547,7 @@ EndSplineSet EndChar StartChar: uni200D -Encoding: 8205 8205 689 +Encoding: 8205 8205 687 GlifName: uni200D_ Width: 1024 VWidth: 0 @@ -26610,7 +26565,7 @@ EndSplineSet EndChar StartChar: uni2044 -Encoding: 8260 8260 690 +Encoding: 8260 8260 688 GlifName: uni2044 Width: 1024 VWidth: 0 @@ -26628,7 +26583,7 @@ EndSplineSet EndChar StartChar: uni20B9 -Encoding: 8377 8377 691 +Encoding: 8377 8377 689 GlifName: uni20B_9 Width: 1024 VWidth: 0 @@ -26666,7 +26621,7 @@ EndSplineSet EndChar StartChar: uni25CC -Encoding: 9676 9676 692 +Encoding: 9676 9676 690 GlifName: uni25C_C_ Width: 1024 VWidth: 0 @@ -26721,7 +26676,7 @@ EndSplineSet EndChar StartChar: uniFB01 -Encoding: 64257 64257 693 +Encoding: 64257 64257 691 GlifName: uniF_B_01 Width: 1024 VWidth: 0 @@ -26760,7 +26715,7 @@ Ligature2: "dligDiscretionaryLigatureslookup0 subtable" f i EndChar StartChar: uniFB02 -Encoding: 64258 64258 694 +Encoding: 64258 64258 692 GlifName: uniF_B_02 Width: 1024 VWidth: 0 @@ -26804,12 +26759,12 @@ Ligature2: "dligDiscretionaryLigatureslookup0 subtable" f l EndChar StartChar: uogonek -Encoding: 371 371 695 +Encoding: 371 371 693 GlifName: uogonek Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 357 808 N 1 0 0 1 229 14 2 @@ -26817,12 +26772,12 @@ Refer: 307 117 N 1 0 0 1 0 0 2 EndChar StartChar: uring -Encoding: 367 367 696 +Encoding: 367 367 694 GlifName: uring Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 352 778 N 1 0 0 1 -44 -382 2 @@ -26830,12 +26785,12 @@ Refer: 307 117 N 1 0 0 1 0 0 2 EndChar StartChar: utilde -Encoding: 361 361 697 +Encoding: 361 361 695 GlifName: utilde Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 304 771 N 1 0 0 1 -44 -689 2 @@ -26843,7 +26798,7 @@ Refer: 307 117 N 1 0 0 1 0 0 2 EndChar StartChar: v -Encoding: 118 118 698 +Encoding: 118 118 696 GlifName: v Width: 1024 VWidth: 0 @@ -26867,7 +26822,7 @@ EndSplineSet EndChar StartChar: w -Encoding: 119 119 699 +Encoding: 119 119 697 GlifName: w Width: 1024 VWidth: 0 @@ -26901,20 +26856,20 @@ EndSplineSet EndChar StartChar: wacute -Encoding: 7811 7811 700 +Encoding: 7811 7811 698 GlifName: wacute Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 40 284 2 -Refer: 699 119 N 1 0 0 1 0 0 2 +Refer: 697 119 N 1 0 0 1 0 0 2 EndChar StartChar: wcircumflex -Encoding: 373 373 701 +Encoding: 373 373 699 GlifName: wcircumflex Width: 1024 VWidth: 0 @@ -26923,37 +26878,37 @@ Flags: HW LayerCount: 2 Fore Refer: 347 770 S 1 0 0 1 -5 -342 2 -Refer: 699 119 N 1 0 0 1 0 0 3 +Refer: 697 119 N 1 0 0 1 0 0 3 EndChar StartChar: wdieresis -Encoding: 7813 7813 702 +Encoding: 7813 7813 700 GlifName: wdieresis Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 351 776 N 1 0 0 1 4 -527 2 -Refer: 699 119 N 1 0 0 1 0 0 2 +Refer: 697 119 N 1 0 0 1 0 0 2 EndChar StartChar: wgrave -Encoding: 7809 7809 703 +Encoding: 7809 7809 701 GlifName: wgrave Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 201 768 N 1 0 0 1 -37 341 2 -Refer: 699 119 N 1 0 0 1 0 0 2 +Refer: 697 119 N 1 0 0 1 0 0 2 EndChar StartChar: x -Encoding: 120 120 704 +Encoding: 120 120 702 GlifName: x Width: 1024 VWidth: 0 @@ -26976,7 +26931,7 @@ EndSplineSet EndChar StartChar: y -Encoding: 121 121 705 +Encoding: 121 121 703 GlifName: y Width: 1024 VWidth: 0 @@ -27011,20 +26966,20 @@ EndSplineSet EndChar StartChar: yacute -Encoding: 253 253 706 +Encoding: 253 253 704 GlifName: yacute Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 13 419 2 -Refer: 705 121 N 1 0 0 1 0 0 2 +Refer: 703 121 N 1 0 0 1 0 0 2 EndChar StartChar: ycircumflex -Encoding: 375 375 707 +Encoding: 375 375 705 GlifName: ycircumflex Width: 1024 VWidth: 0 @@ -27033,24 +26988,24 @@ Flags: HW LayerCount: 2 Fore Refer: 347 770 S 1 0 0 1 -24 -342 2 -Refer: 705 121 N 1 0 0 1 0 0 2 +Refer: 703 121 N 1 0 0 1 0 0 2 EndChar StartChar: ydieresis -Encoding: 255 255 708 +Encoding: 255 255 706 GlifName: ydieresis Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 351 776 N 1 0 0 1 0 -488 2 -Refer: 705 121 N 1 0 0 1 0 0 2 +Refer: 703 121 N 1 0 0 1 0 0 2 EndChar StartChar: yen -Encoding: 165 165 709 +Encoding: 165 165 707 GlifName: yen Width: 1024 VWidth: 0 @@ -27093,20 +27048,20 @@ EndSplineSet EndChar StartChar: ygrave -Encoding: 7923 7923 710 +Encoding: 7923 7923 708 GlifName: ygrave Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 201 768 N 1 0 0 1 -32 476 2 -Refer: 705 121 N 1 0 0 1 0 0 2 +Refer: 703 121 N 1 0 0 1 0 0 2 EndChar StartChar: z -Encoding: 122 122 711 +Encoding: 122 122 709 GlifName: z Width: 1024 VWidth: 0 @@ -27136,20 +27091,20 @@ EndSplineSet EndChar StartChar: zacute -Encoding: 378 378 712 +Encoding: 378 378 710 GlifName: zacute Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 13 419 2 -Refer: 711 122 N 1 0 0 1 0 0 2 +Refer: 709 122 N 1 0 0 1 0 0 2 EndChar StartChar: zcaron -Encoding: 382 382 713 +Encoding: 382 382 711 GlifName: zcaron Width: 1024 VWidth: 0 @@ -27158,24 +27113,24 @@ Flags: HW LayerCount: 2 Fore Refer: 354 780 N 1 0 0 1 -21 -136 2 -Refer: 711 122 N 1 0 0 1 0 0 2 +Refer: 709 122 N 1 0 0 1 0 0 2 EndChar StartChar: zdotaccent -Encoding: 380 380 714 +Encoding: 380 380 712 GlifName: zdotaccent Width: 1024 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 350 775 N 1 0 0 1 0 -488 2 -Refer: 711 122 N 1 0 0 1 0 0 2 +Refer: 709 122 N 1 0 0 1 0 0 2 EndChar StartChar: zero -Encoding: 48 48 715 +Encoding: 48 48 713 GlifName: zero Width: 1024 VWidth: 0 @@ -27203,51 +27158,51 @@ EndSplineSet EndChar StartChar: uni0305 -Encoding: 773 773 716 +Encoding: 773 773 714 Width: 0 VWidth: 0 Flags: HW -AnchorPoint: "top" -522 1520 mark 0 +AnchorPoint: "top" 2 1520 mark 0 LayerCount: 2 Fore SplineSet --901 1602 m 257 - -901 1542 l 257 - -147 1542 l 257 - -147 1602 l 257 - -901 1602 l 257 +-377 1602 m 257 + -377 1542 l 257 + 377 1542 l 257 + 377 1602 l 257 + -377 1602 l 257 EndSplineSet EndChar StartChar: hookabovecomb -Encoding: 777 777 717 +Encoding: 777 777 715 Width: 0 VWidth: 0 Flags: HW -AnchorPoint: "top" -278 1711 mark 0 -LayerCount: 2 -Fore -SplineSet -122 1774 m 257 - 122 1703 l 257 - 577 1703 l 257 - 577 1774 l 257 - 122 1774 l 257 -517 1774 m 257 - 517 1432 l 257 - 582 1432 l 257 - 582 1774 l 257 - 517 1774 l 257 -210 1453 m 257 - 210 1386 l 257 - 581 1386 l 257 - 581 1453 l 257 - 210 1453 l 257 -210 1453 m 257 - 210 1190 l 257 - 272 1190 l 257 - 272 1453 l 257 - 210 1453 l 257 +AnchorPoint: "top" -630 1711 mark 0 +LayerCount: 2 +Fore +SplineSet +-230 1774 m 257 + -230 1703 l 257 + 225 1703 l 257 + 225 1774 l 257 + -230 1774 l 257 +165 1774 m 257 + 165 1432 l 257 + 230 1432 l 257 + 230 1774 l 257 + 165 1774 l 257 +-142 1453 m 257 + -142 1386 l 257 + 229 1386 l 257 + 229 1453 l 257 + -142 1453 l 257 +-142 1453 m 257 + -142 1190 l 257 + -80 1190 l 257 + -80 1453 l 257 + -142 1453 l 257 EndSplineSet EndChar EndChars diff --git a/sources/Samaano-Thin.ufo/features.fea b/sources/Samaano-Thin.ufo/features.fea index a10791b8f..a06e0c56e 100644 --- a/sources/Samaano-Thin.ufo/features.fea +++ b/sources/Samaano-Thin.ufo/features.fea @@ -235,7 +235,7 @@ feature half { script DFLT; language dflt ; lookup halfHalfFormsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup halfHalfFormsinDevanagarilookup0; } half; @@ -243,7 +243,7 @@ feature haln { script DFLT; language dflt ; lookup halnHalantFormsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup halnHalantFormsinDevanagarilookup0; } haln; @@ -251,7 +251,7 @@ feature vatu { script DFLT; language dflt ; lookup vatuVattuVariantsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup vatuVattuVariantsinDevanagarilookup0; } vatu; @@ -259,7 +259,7 @@ feature pres { script DFLT; language dflt ; lookup presPreBaseSubstitutionsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup presPreBaseSubstitutionsinDevanagarilookup0; } pres; @@ -267,7 +267,7 @@ feature abvs { script DFLT; language dflt ; lookup abvsAboveBaseSubstitutionsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup abvsAboveBaseSubstitutionsinDevanagarilookup0; } abvs; @@ -275,7 +275,7 @@ feature blws { script DFLT; language dflt ; lookup blwsBelowBaseSubstitutionsinDevanagarilookup12; - script dev2; + script deva; language dflt ; lookup blwsBelowBaseSubstitutionsinDevanagarilookup12; } blws; @@ -288,22 +288,22 @@ feature dlig { lookup dligDiscretionaryLigatureslookup0; } dlig;@CombiningTopAccents = [acutecomb oe tildecomb uni0302 uni0304 uni0306 uni0308 uni030A uni030B uni030C]; lookup markMarkPositioninglookup0 { - markClass gravecomb @top; - markClass acutecomb @top; - markClass uni0302 @top; - markClass tildecomb @top; - markClass uni0304 @top; - markClass uni0306 @top; - markClass uni0307 @top; - markClass uni0308 @top; - markClass uni030A @top; - markClass uni030B @top; - markClass uni030C @top; - markClass dotbelowcomb @base; - markClass uni0326 @base; - markClass uni0327 @base; - markClass uni0328 @base; - markClass uni0331 @base; + markClass gravecomb @top; + markClass acutecomb @top; + markClass uni0302 @top; + markClass tildecomb @top; + markClass uni0304 @top; + markClass uni0306 @top; + markClass uni0307 @top; + markClass uni0308 @top; + markClass uni030A @top; + markClass uni030B @top; + markClass uni030C @top; + markClass dotbelowcomb @base; + markClass uni0326 @base; + markClass uni0327 @base; + markClass uni0328 @base; + markClass uni0331 @base; pos base A mark @top; pos base C mark @top; pos base D mark @top; @@ -377,9 +377,9 @@ lookup markMarkPositioninglookup0 { pos base uni25CC mark @base; } markMarkPositioninglookup0; lookup abvmAboveBaseMarkinDevanagari2lookup1 { - markClass uni0900 @abvm; - markClass uni0901 @abvm; - markClass uni0902 @abvm; + markClass uni0900 @abvm; + markClass uni0901 @abvm; + markClass uni0902 @abvm; markClass uni0951 @abvm; markClass uni0953 @abvm; markClass uni0954 @abvm; @@ -415,9 +415,8 @@ feature blwm { script dev2; language dflt ; lookup blwmBelowBaseMarkinDevanagari2lookup2; -} blwm; -@GDEF_base = [A AE Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Emacron Eng Eogonek Eth Euro F G Gbreve Gcircumflex Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek Itilde J Jcircumflex K L Lacute Lcaron Ldot Lslash M N Nacute Ncaron Ntilde O OE Oacute Obreve Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Otilde P Q R Racute Rcaron S Sacute Scaron Scedilla Scircumflex T Tcaron Thorn U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ygrave Z Zacute Zcaron Zdotaccent a aacute abreve acircumflex acute adieresis ae agrave amacron ampersand aogonek aring asciicircum asciitilde asterisk at atilde b backslash bar braceleft braceright bracketleft bracketright breve brokenbar bullet c cacute caron ccaron ccedilla ccircumflex cdotaccent cedilla cent circumflex colon comma copyright currency d dagger daggerdbl dcaron dcroat degree dieresis divide dollar dotaccent dotlessi e eacute ebreve ecaron ecircumflex edieresis edotaccent egrave eight ellipsis emacron emdash endash eng eogonek equal eth exclam exclamdown f five four g gbreve gcircumflex gdotaccent germandbls grave greater guillemotleft guillemotright guilsinglleft guilsinglright h hbar hcircumflex hookabovecomb hungarumlaut hyphen i iacute ibreve icircumflex idieresis igrave ij imacron iogonek itilde j jcircumflex k l lacute lcaron ldot less logicalnot lslash m macron minus mu multiply n nacute ncaron nine ntilde numbersign o oacute obreve ocircumflex odieresis oe ogonek ograve ohungarumlaut omacron one onehalf onequarter ordfeminine ordmasculine oslash otilde p paragraph parenleft parenright percent period periodcentered perthousand plus plusminus q question questiondown quotedbl quotedblbase quotedblleft quotedblright quoteleft quoteright quotesinglbase quotesingle r racute rcaron registered ring s sacute scaron scedilla scircumflex section semicolon seven six slash space sterling t tcaron thorn three threequarters tilde trademark two u uacute ubreve ucircumflex udieresis ugrave uhungarumlaut umacron underscore uni00A0 uni00B2 uni00B3 uni00B9 uni0122 uni0123 uni0136 uni0137 uni013B uni013C uni0145 uni0146 uni0156 uni0157 uni0162 uni0163 uni0192 uni01C4 uni01C5 uni01C6 uni0218 uni0219 uni021A uni021B uni0237 uni02B9 uni02BA uni02BC uni02C9 uni02CA uni02CB uni0305 uni0903 uni0904 uni0905 uni0906 uni0907 uni0908 uni0909 uni090A uni090B uni090C uni090D uni090E uni090F uni0910 uni0911 uni0912 uni0913 uni0914 uni0915 uni0915_uni094D.half uni0915_uni094D_uni0937_uni094D uni0916 uni0916_uni094D.half uni0917 uni0918 uni0919 uni091A uni091A_uni0930_uni094D.vatu uni091B uni091C uni091C_uni0930_uni094D.vatu uni091C_uni094D_uni091E_uni094D uni091D uni091E uni091F uni0920 uni0921 uni0922 uni0922_uni0930_uni094D.vatu uni0923 uni0923_uni0930_uni094D.vatu uni0924 uni0925 uni0926 uni0927 uni0928 uni0929 uni092A uni092B uni092C uni092D uni092E uni092F uni0930 uni0930_uni094D.abvs uni0930_uni094D.haln uni0930_uni094D.vatu uni0931 uni0932 uni0933 uni0934 uni0935 uni0936 uni0936_uni094D.haln uni0937 uni0938 uni0938_uni0930_uni094D.vatu uni0938_uni094D.haln uni0939 uni0939_uni0930_uni094D.vatu uni093B uni093D uni093E uni093F uni0940 uni0940_uni0930_uni094D.abvs uni0945_uni0930_uni094D.abvs uni0946_uni0930_uni094D.abvs uni0947_uni0930_uni094D.abvs uni0948_uni0930_uni094D.abvs uni0949 uni0949_uni0930_uni094D.abvs uni094A uni094A_uni0930_uni094D.abvs uni094B uni094B_uni0930_uni094D.abvs uni094C uni094C_uni0930_uni094D.abvs uni094E uni094F uni0950 uni0958 uni0959 uni095A uni095A_uni094D.haln uni095B uni095C uni095D uni095E uni095E_uni0930_uni094D.vatu uni095F uni095F_uni0930_uni094D.vatu uni0960 uni0961 uni0964 uni0965 uni0966 uni0967 uni0968 uni0969 uni096A uni096B uni096C uni096D uni096E uni096F uni0970 uni0971 uni0972 uni0973 uni0974 uni0975 uni0976 uni0977 uni0978 uni0979 uni097A uni097B uni097C uni097D uni097E uni097F uni1E0C uni1E0D uni1E34 uni1E35 uni1E36 uni1E37 uni1E38 uni1E39 uni1E3A uni1E3B uni1E42 uni1E43 uni1E44 uni1E45 uni1E46 uni1E47 uni1E48 uni1E49 uni1E4C uni1E4D uni1E58 uni1E59 uni1E5A uni1E5B uni1E5C uni1E5D uni1E5E uni1E5F uni1E62 uni1E63 uni1E6C uni1E6D uni1E8E uni1E8F uni1E9E uni200C uni200D uni2044 uni20B9 uni25CC uogonek uring utilde v w wacute wcircumflex wdieresis wgrave x y yacute ycircumflex ydieresis yen ygrave z zacute zcaron zdotaccent zero]; -@GDEF_mark = [acutecomb dotbelowcomb glyph094D gravecomb tildecomb uni0302 uni0304 uni0306 uni0307 uni0308 uni030A uni030B uni030C uni0326 uni0327 uni0328 uni0331 uni0900 uni0901 uni0902 uni0930_uni094D.blwf uni0930_uni094D.rphf uni093A uni093C uni0941 uni0942 uni0943 uni0944 uni0945 uni0946 uni0947 uni0948 uni094D uni0951 uni0952 uni0953 uni0954 uni0955 uni0956 uni0957 uni0962 uni0963]; +} blwm;@GDEF_base = [A AE Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Emacron Eng Eogonek Eth Euro F G Gbreve Gcircumflex Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek Itilde J Jcircumflex K L Lacute Lcaron Ldot Lslash M N Nacute Ncaron Ntilde O OE Oacute Obreve Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Otilde P Q R Racute Rcaron S Sacute Scaron Scedilla Scircumflex T Tcaron Thorn U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ygrave Z Zacute Zcaron Zdotaccent a aacute abreve acircumflex acute adieresis ae agrave amacron ampersand aogonek aring asciicircum asciitilde asterisk at atilde b backslash bar braceleft braceright bracketleft bracketright breve brokenbar bullet c cacute caron ccaron ccedilla ccircumflex cdotaccent cedilla cent circumflex colon comma copyright currency d dagger daggerdbl dcaron dcroat degree dieresis divide dollar dotaccent dotlessi e eacute ebreve ecaron ecircumflex edieresis edotaccent egrave eight ellipsis emacron emdash endash eng eogonek equal eth exclam exclamdown f five four g gbreve gcircumflex gdotaccent germandbls grave greater guillemotleft guillemotright guilsinglleft guilsinglright h hbar hcircumflex hungarumlaut hyphen i iacute ibreve icircumflex idieresis igrave ij imacron iogonek itilde j jcircumflex k l lacute lcaron ldot less logicalnot lslash m macron minus mu multiply n nacute ncaron nine ntilde numbersign o oacute obreve ocircumflex odieresis oe ogonek ograve ohungarumlaut omacron one onehalf onequarter ordfeminine ordmasculine oslash otilde p paragraph parenleft parenright percent period periodcentered perthousand plus plusminus q question questiondown quotedbl quotedblbase quotedblleft quotedblright quoteleft quoteright quotesinglbase quotesingle r racute rcaron registered ring s sacute scaron scedilla scircumflex section semicolon seven six slash space sterling t tcaron thorn three threequarters tilde trademark two u uacute ubreve ucircumflex udieresis ugrave uhungarumlaut umacron underscore uni00A0 uni00B2 uni00B3 uni00B9 uni0122 uni0123 uni0136 uni0137 uni013B uni013C uni0145 uni0146 uni0156 uni0157 uni0162 uni0163 uni0192 uni01C4 uni01C5 uni01C6 uni0218 uni0219 uni021A uni021B uni0237 uni02B9 uni02BA uni02BC uni02C9 uni02CA uni02CB uni0903 uni0904 uni0905 uni0906 uni0907 uni0908 uni0909 uni090A uni090B uni090C uni090D uni090E uni090F uni0910 uni0911 uni0912 uni0913 uni0914 uni0915 uni0915_uni094D.half uni0915_uni094D_uni0937_uni094D uni0916 uni0916_uni094D.half uni0917 uni0918 uni0919 uni091A uni091A_uni0930_uni094D.vatu uni091B uni091C uni091C_uni0930_uni094D.vatu uni091C_uni094D_uni091E_uni094D uni091D uni091E uni091F uni0920 uni0921 uni0922 uni0922_uni0930_uni094D.vatu uni0923 uni0923_uni0930_uni094D.vatu uni0924 uni0925 uni0926 uni0927 uni0928 uni0929 uni092A uni092B uni092C uni092D uni092E uni092F uni0930 uni0930_uni094D.haln uni0931 uni0932 uni0933 uni0934 uni0935 uni0936 uni0936_uni094D.haln uni0937 uni0938 uni0938_uni0930_uni094D.vatu uni0938_uni094D.haln uni0939 uni0939_uni0930_uni094D.vatu uni093B uni093D uni093E uni093F uni0940 uni0940_uni0930_uni094D.abvs uni0945_uni0930_uni094D.abvs uni0946_uni0930_uni094D.abvs uni0947_uni0930_uni094D.abvs uni0948_uni0930_uni094D.abvs uni0949 uni0949_uni0930_uni094D.abvs uni094A uni094A_uni0930_uni094D.abvs uni094B uni094B_uni0930_uni094D.abvs uni094C uni094C_uni0930_uni094D.abvs uni094E uni094F uni0950 uni0958 uni0959 uni095A uni095A_uni094D.haln uni095B uni095C uni095D uni095E uni095E_uni0930_uni094D.vatu uni095F uni095F_uni0930_uni094D.vatu uni0960 uni0961 uni0964 uni0965 uni0966 uni0967 uni0968 uni0969 uni096A uni096B uni096C uni096D uni096E uni096F uni0970 uni0971 uni0972 uni0973 uni0974 uni0975 uni0976 uni0977 uni0978 uni0979 uni097A uni097B uni097C uni097D uni097E uni097F uni1E0C uni1E0D uni1E34 uni1E35 uni1E36 uni1E37 uni1E38 uni1E39 uni1E3A uni1E3B uni1E42 uni1E43 uni1E44 uni1E45 uni1E46 uni1E47 uni1E48 uni1E49 uni1E4C uni1E4D uni1E58 uni1E59 uni1E5A uni1E5B uni1E5C uni1E5D uni1E5E uni1E5F uni1E62 uni1E63 uni1E6C uni1E6D uni1E8E uni1E8F uni1E9E uni200C uni200D uni2044 uni20B9 uni25CC uogonek uring utilde v w wacute wcircumflex wdieresis wgrave x y yacute ycircumflex ydieresis yen ygrave z zacute zcaron zdotaccent zero]; +@GDEF_mark = [acutecomb dotbelowcomb gravecomb hookabovecomb tildecomb uni0302 uni0304 uni0305 uni0306 uni0307 uni0308 uni030A uni030B uni030C uni0326 uni0327 uni0328 uni0331 uni0900 uni0901 uni0902 uni0930_uni094D.blwf uni0930_uni094D.rphf uni093A uni093C uni0941 uni0942 uni0943 uni0944 uni0945 uni0946 uni0947 uni0948 uni094D uni0951 uni0952 uni0953 uni0954 uni0955 uni0956 uni0957 uni0962 uni0963]; @GDEF_ligature = [uni0915_uni0930_uni094D.vatu uni0915_uni094D.haln uni0915_uni094D_uni0937.akhn uni0915_uni094D_uni0937.half uni0916_uni0930_uni094D.vatu uni0916_uni094D.haln uni0917_uni0930_uni094D.vatu uni0917_uni094D.half uni0917_uni094D.haln uni0918_uni0930_uni094D.vatu uni0918_uni094D.half uni0918_uni094D.haln uni0919_uni0930_uni094D.vatu uni0919_uni094D.half uni0919_uni094D.haln uni091A_uni094D.half uni091A_uni094D.haln uni091B_uni0930_uni094D.vatu uni091B_uni094D.half uni091B_uni094D.haln uni091C_uni094D.half uni091C_uni094D.haln uni091C_uni094D_uni091E.akhn uni091C_uni094D_uni091E.half uni091D_uni0930_uni094D.vatu uni091D_uni094D.half uni091D_uni094D.haln uni091E_uni0930_uni094D.vatu uni091E_uni094D.half uni091E_uni094D.haln uni091F_uni0930_uni094D.vatu uni091F_uni094D.haln uni0920_uni0930_uni094D.vatu uni0920_uni094D.haln uni0921_uni0930_uni094D.vatu uni0921_uni094D.haln uni0922_uni094D.haln uni0923_uni094D.half uni0923_uni094D.haln uni0924_uni0930_uni094D.vatu uni0924_uni094D.half uni0924_uni094D.haln uni0924_uni094D_uni0924.pres uni0925_uni0930_uni094D.vatu uni0925_uni094D.half uni0925_uni094D.haln uni0926_uni0930_uni094D.vatu uni0926_uni094D.half uni0926_uni094D.haln uni0926_uni094D_uni0926.pres uni0926_uni094D_uni0927.pres uni0926_uni094D_uni092F.pres uni0926_uni094D_uni0935.pres uni0927_uni0930_uni094D.vatu uni0927_uni094D.half uni0927_uni094D.haln uni0928_uni0930_uni094D.vatu uni0928_uni094D.half uni0928_uni094D.haln uni0929_uni0930_uni094D.vatu uni0929_uni094D.half uni0929_uni094D.haln uni092A_uni0930_uni094D.vatu uni092A_uni094D.half uni092A_uni094D.haln uni092B_uni0930_uni094D.vatu uni092B_uni094D.half uni092B_uni094D.haln uni092C_uni0930_uni094D.vatu uni092C_uni094D.half uni092C_uni094D.haln uni092D_uni0930_uni094D.vatu uni092D_uni094D.half uni092D_uni094D.haln uni092E_uni0930_uni094D.vatu uni092E_uni094D.half uni092E_uni094D.haln uni092F_uni0930_uni094D.vatu uni092F_uni094D.half uni092F_uni094D.haln uni0930_uni0930_uni094D.vatu uni0930_uni0941.blws uni0930_uni0942.blws uni0930_uni094D.half uni0931_uni0930_uni094D.vatu uni0931_uni094D.haln uni0932_uni0930_uni094D.vatu uni0932_uni094D.half uni0932_uni094D.haln uni0933_uni0930_uni094D.vatu uni0933_uni094D.half uni0933_uni094D.haln uni0934_uni0930_uni094D.vatu uni0934_uni094D.half uni0934_uni094D.haln uni0935_uni0930_uni094D.vatu uni0935_uni094D.half uni0935_uni094D.haln uni0936_uni0930_uni094D.vatu uni0936_uni094D.half uni0937_uni0930_uni094D.vatu uni0937_uni094D.half uni0937_uni094D.haln uni0938_uni094D.half uni0939_uni0943.blws uni0939_uni094D.half uni0939_uni094D.haln uni0939_uni094D_uni092E.pres uni093E_uni0930_uni094D.abvs uni0940_uni0902.abvs uni0945_uni0902.abvs uni0946_uni0902.abvs uni0947_uni0902.abvs uni0948_uni0902.abvs uni0949_uni0902.abvs uni094A_uni0902.abvs uni094B_uni0902.abvs uni094C_uni0902.abvs uni0958_uni0930_uni094D.vatu uni0958_uni094D.half uni0958_uni094D.haln uni0959_uni0930_uni094D.vatu uni0959_uni094D.half uni0959_uni094D.haln uni095A_uni0930_uni094D.vatu uni095A_uni094D.half uni095B_uni0930_uni094D.vatu uni095B_uni094D.half uni095B_uni094D.haln uni095C_uni0930_uni094D.vatu uni095C_uni094D.haln uni095D_uni0930_uni094D.vatu uni095D_uni094D.haln uni095E_uni094D.half uni095E_uni094D.haln uni095F_uni094D.half uni095F_uni094D.haln uniFB01 uniFB02]; @GDEF_component = []; @@ -428,4 +427,4 @@ feature blwm { @GDEF_component; LigatureCaretByPos uniFB01 32; LigatureCaretByPos uniFB02 84; -} GDEF; +} GDEF; \ No newline at end of file diff --git a/sources/Samaano-Thin.ufo/fontinfo.plist b/sources/Samaano-Thin.ufo/fontinfo.plist index 0abdcbf3d..3f6234f53 100644 --- a/sources/Samaano-Thin.ufo/fontinfo.plist +++ b/sources/Samaano-Thin.ufo/fontinfo.plist @@ -101,7 +101,7 @@ This license is available with a FAQ at: http://scripts.sil.org/OFL openTypeOS2WinAscent 2476 openTypeOS2WinDescent - 958 + 978 openTypeVheaVertTypoLineGap 0 postscriptFontName diff --git a/sources/Samaano-Thin.ufo/glyphs/acutecomb.glif b/sources/Samaano-Thin.ufo/glyphs/acutecomb.glif index e0a4be635..b7992a635 100644 --- a/sources/Samaano-Thin.ufo/glyphs/acutecomb.glif +++ b/sources/Samaano-Thin.ufo/glyphs/acutecomb.glif @@ -1,13 +1,12 @@ - - - - - + + + + diff --git a/sources/Samaano-Thin.ufo/glyphs/contents.plist b/sources/Samaano-Thin.ufo/glyphs/contents.plist index 43e9c29e9..cb08942a7 100644 --- a/sources/Samaano-Thin.ufo/glyphs/contents.plist +++ b/sources/Samaano-Thin.ufo/glyphs/contents.plist @@ -1004,8 +1004,6 @@ uni0930_uni0941.blws.glif uni0930_uni0942.blws uni0930_uni0942.blws.glif - uni0930_uni094D.abvs - uni0930_uni094D_.abvs.glif uni0930_uni094D.blwf uni0930_uni094D_.blwf.glif uni0930_uni094D.half @@ -1014,8 +1012,6 @@ uni0930_uni094D_.haln.glif uni0930_uni094D.rphf uni0930_uni094D_.rphf.glif - uni0930_uni094D.vatu - uni0930_uni094D_.vatu.glif uni0931 uni0931.glif uni0931_uni0930_uni094D.vatu diff --git a/sources/Samaano-Thin.ufo/glyphs/dotbelowcomb.glif b/sources/Samaano-Thin.ufo/glyphs/dotbelowcomb.glif index 014087230..12db6abb2 100644 --- a/sources/Samaano-Thin.ufo/glyphs/dotbelowcomb.glif +++ b/sources/Samaano-Thin.ufo/glyphs/dotbelowcomb.glif @@ -1,13 +1,12 @@ - - - - - + + + + diff --git a/sources/Samaano-Thin.ufo/glyphs/gravecomb.glif b/sources/Samaano-Thin.ufo/glyphs/gravecomb.glif index 67db4cb9e..f8233e1e3 100644 --- a/sources/Samaano-Thin.ufo/glyphs/gravecomb.glif +++ b/sources/Samaano-Thin.ufo/glyphs/gravecomb.glif @@ -1,13 +1,12 @@ - - - - - + + + + diff --git a/sources/Samaano-Thin.ufo/glyphs/hookabovecomb.glif b/sources/Samaano-Thin.ufo/glyphs/hookabovecomb.glif index 742f79b62..9ec14169e 100644 --- a/sources/Samaano-Thin.ufo/glyphs/hookabovecomb.glif +++ b/sources/Samaano-Thin.ufo/glyphs/hookabovecomb.glif @@ -3,28 +3,28 @@ - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Thin.ufo/glyphs/tildecomb.glif b/sources/Samaano-Thin.ufo/glyphs/tildecomb.glif index 062812d08..cf49f47bb 100644 --- a/sources/Samaano-Thin.ufo/glyphs/tildecomb.glif +++ b/sources/Samaano-Thin.ufo/glyphs/tildecomb.glif @@ -3,22 +3,22 @@ - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Thin.ufo/glyphs/uni0302.glif b/sources/Samaano-Thin.ufo/glyphs/uni0302.glif index 85bcd00e6..09b10b4ec 100644 --- a/sources/Samaano-Thin.ufo/glyphs/uni0302.glif +++ b/sources/Samaano-Thin.ufo/glyphs/uni0302.glif @@ -3,16 +3,16 @@ - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Thin.ufo/glyphs/uni0304.glif b/sources/Samaano-Thin.ufo/glyphs/uni0304.glif index 89c634cc2..a86f75041 100644 --- a/sources/Samaano-Thin.ufo/glyphs/uni0304.glif +++ b/sources/Samaano-Thin.ufo/glyphs/uni0304.glif @@ -1,13 +1,12 @@ - - - - - + + + + diff --git a/sources/Samaano-Thin.ufo/glyphs/uni0305.glif b/sources/Samaano-Thin.ufo/glyphs/uni0305.glif index 14f8b8c38..15e603bdd 100644 --- a/sources/Samaano-Thin.ufo/glyphs/uni0305.glif +++ b/sources/Samaano-Thin.ufo/glyphs/uni0305.glif @@ -3,10 +3,10 @@ - - - - + + + + diff --git a/sources/Samaano-Thin.ufo/glyphs/uni0306.glif b/sources/Samaano-Thin.ufo/glyphs/uni0306.glif index ac9452431..e7a272fd7 100644 --- a/sources/Samaano-Thin.ufo/glyphs/uni0306.glif +++ b/sources/Samaano-Thin.ufo/glyphs/uni0306.glif @@ -3,22 +3,22 @@ - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Thin.ufo/glyphs/uni0307.glif b/sources/Samaano-Thin.ufo/glyphs/uni0307.glif index fea6bb4bf..9f24134aa 100644 --- a/sources/Samaano-Thin.ufo/glyphs/uni0307.glif +++ b/sources/Samaano-Thin.ufo/glyphs/uni0307.glif @@ -3,10 +3,10 @@ - - - - + + + + diff --git a/sources/Samaano-Thin.ufo/glyphs/uni0308.glif b/sources/Samaano-Thin.ufo/glyphs/uni0308.glif index 5afaaff15..acb5d586f 100644 --- a/sources/Samaano-Thin.ufo/glyphs/uni0308.glif +++ b/sources/Samaano-Thin.ufo/glyphs/uni0308.glif @@ -1,19 +1,18 @@ - - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Thin.ufo/glyphs/uni030A_.glif b/sources/Samaano-Thin.ufo/glyphs/uni030A_.glif index ba1694355..7f2dc9b4b 100644 --- a/sources/Samaano-Thin.ufo/glyphs/uni030A_.glif +++ b/sources/Samaano-Thin.ufo/glyphs/uni030A_.glif @@ -1,19 +1,18 @@ - - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Thin.ufo/glyphs/uni030B_.glif b/sources/Samaano-Thin.ufo/glyphs/uni030B_.glif index fa3d6bc19..a05f9b574 100644 --- a/sources/Samaano-Thin.ufo/glyphs/uni030B_.glif +++ b/sources/Samaano-Thin.ufo/glyphs/uni030B_.glif @@ -1,8 +1,7 @@ - - + diff --git a/sources/Samaano-Thin.ufo/glyphs/uni030C_.glif b/sources/Samaano-Thin.ufo/glyphs/uni030C_.glif index 4d39cfba8..fedf9801d 100644 --- a/sources/Samaano-Thin.ufo/glyphs/uni030C_.glif +++ b/sources/Samaano-Thin.ufo/glyphs/uni030C_.glif @@ -1,19 +1,18 @@ - - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Thin.ufo/glyphs/uni0326.glif b/sources/Samaano-Thin.ufo/glyphs/uni0326.glif index 3b32e4f0f..dd8caa5d2 100644 --- a/sources/Samaano-Thin.ufo/glyphs/uni0326.glif +++ b/sources/Samaano-Thin.ufo/glyphs/uni0326.glif @@ -1,19 +1,18 @@ - - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Thin.ufo/glyphs/uni0327.glif b/sources/Samaano-Thin.ufo/glyphs/uni0327.glif index 4c1b987fd..5d1921a30 100644 --- a/sources/Samaano-Thin.ufo/glyphs/uni0327.glif +++ b/sources/Samaano-Thin.ufo/glyphs/uni0327.glif @@ -1,31 +1,30 @@ - - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Thin.ufo/glyphs/uni0328.glif b/sources/Samaano-Thin.ufo/glyphs/uni0328.glif index a5575d0c6..121f7cded 100644 --- a/sources/Samaano-Thin.ufo/glyphs/uni0328.glif +++ b/sources/Samaano-Thin.ufo/glyphs/uni0328.glif @@ -1,25 +1,24 @@ - - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Thin.ufo/glyphs/uni0331.glif b/sources/Samaano-Thin.ufo/glyphs/uni0331.glif index 1b60ec4bd..2ea414bbb 100644 --- a/sources/Samaano-Thin.ufo/glyphs/uni0331.glif +++ b/sources/Samaano-Thin.ufo/glyphs/uni0331.glif @@ -1,13 +1,12 @@ - - - - - + + + + diff --git a/sources/Samaano-Thin.ufo/glyphs/uni0900.glif b/sources/Samaano-Thin.ufo/glyphs/uni0900.glif index 3e2f87f64..a71d6ad40 100644 --- a/sources/Samaano-Thin.ufo/glyphs/uni0900.glif +++ b/sources/Samaano-Thin.ufo/glyphs/uni0900.glif @@ -3,28 +3,28 @@ - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Thin.ufo/glyphs/uni0901.glif b/sources/Samaano-Thin.ufo/glyphs/uni0901.glif index ff8ec74cc..59d7a78cd 100644 --- a/sources/Samaano-Thin.ufo/glyphs/uni0901.glif +++ b/sources/Samaano-Thin.ufo/glyphs/uni0901.glif @@ -3,28 +3,28 @@ - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Thin.ufo/glyphs/uni0902.glif b/sources/Samaano-Thin.ufo/glyphs/uni0902.glif index bdb33fd09..8fe3072ef 100644 --- a/sources/Samaano-Thin.ufo/glyphs/uni0902.glif +++ b/sources/Samaano-Thin.ufo/glyphs/uni0902.glif @@ -3,10 +3,10 @@ - - - - + + + + diff --git a/sources/Samaano-Thin.ufo/glyphs/uni0930_uni094D_.abvs.glif b/sources/Samaano-Thin.ufo/glyphs/uni0930_uni094D_.abvs.glif deleted file mode 100644 index 3f8fdd36d..000000000 --- a/sources/Samaano-Thin.ufo/glyphs/uni0930_uni094D_.abvs.glif +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/Samaano-Thin.ufo/glyphs/uni0930_uni094D_.vatu.glif b/sources/Samaano-Thin.ufo/glyphs/uni0930_uni094D_.vatu.glif deleted file mode 100644 index 60ea1178f..000000000 --- a/sources/Samaano-Thin.ufo/glyphs/uni0930_uni094D_.vatu.glif +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/sources/Samaano-Thin.ufo/lib.plist b/sources/Samaano-Thin.ufo/lib.plist index 36fc8a856..60857cf87 100644 --- a/sources/Samaano-Thin.ufo/lib.plist +++ b/sources/Samaano-Thin.ufo/lib.plist @@ -647,12 +647,10 @@ uni0930_uni0930_uni094D.vatu uni0930_uni0941.blws uni0930_uni0942.blws - uni0930_uni094D.abvs uni0930_uni094D.blwf uni0930_uni094D.half uni0930_uni094D.haln uni0930_uni094D.rphf - uni0930_uni094D.vatu uni0931_uni0930_uni094D.vatu uni0931_uni094D.haln uni0932_uni0930_uni094D.vatu @@ -1725,8 +1723,6 @@ base uni0930_uni0942.blws base - uni0930_uni094D.abvs - base uni0930_uni094D.blwf base uni0930_uni094D.half @@ -1735,8 +1731,6 @@ base uni0930_uni094D.rphf base - uni0930_uni094D.vatu - base uni0931 base uni0931_uni0930_uni094D.vatu diff --git a/sources/Samaano-Wide-Bold-Slanted.sfd b/sources/Samaano-Wide-Bold-Slanted.sfd index f83fb8f32..5a928fe8b 100644 --- a/sources/Samaano-Wide-Bold-Slanted.sfd +++ b/sources/Samaano-Wide-Bold-Slanted.sfd @@ -23,7 +23,7 @@ OS2Version: 0 OS2_WeightWidthSlopeOnly: 0 OS2_UseTypoMetrics: 0 CreationTime: 1729163604 -ModificationTime: 1729413408 +ModificationTime: 1729498362 PfmFamily: 49 TTFWeight: 700 TTFWidth: 9 @@ -37,7 +37,7 @@ OS2TypoDOffset: 0 OS2TypoLinegap: 0 OS2WinAscent: 2476 OS2WinAOffset: 0 -OS2WinDescent: 958 +OS2WinDescent: 978 OS2WinDOffset: 0 HheadAscent: 2457 HheadAOffset: 0 @@ -4349,7 +4349,7 @@ NameList: AGL For New Fonts DisplaySize: -96 AntiAlias: 1 FitToEm: 1 -WinInfo: 247 13 5 +WinInfo: 598 13 5 BeginPrivate: 0 EndPrivate Grid @@ -4359,7 +4359,7 @@ Grid 2048 1024 l 1024 EndSplineSet AnchorClass2: "blwm" "'blwm' Below Base Mark in Devanagari2 lookup 2-1" "abvm" "'abvm' Above Base Mark in Devanagari2 lookup 1-1" "base" "markMarkPositioninglookup0 subtable" "top" "markMarkPositioninglookup0 subtable" "base""" "top""" -BeginChars: 65711 718 +BeginChars: 65711 716 StartChar: .notdef Encoding: 0 0 0 @@ -6465,7 +6465,7 @@ GlifName: W_acute Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0.36397 1 365.926 868 2 @@ -6491,7 +6491,7 @@ GlifName: W_dieresis Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 348 776 N 1.0226 0 0.331537 0.910891 46.5404 257 2 @@ -6504,7 +6504,7 @@ GlifName: W_grave Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 201 768 N 1 0 0.36397 1 364.452 809 2 @@ -6614,7 +6614,7 @@ GlifName: Y_grave Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 201 768 N 1 0 0.36397 1 330.856 931 2 @@ -6793,16 +6793,17 @@ GlifName: acutecomb Width: 0 VWidth: 0 GlyphClass: 2 -AnchorPoint: "top" 466 1888 mark 0 -AnchorPoint: "top" 1186 544 mark 0 +Flags: HW +AnchorPoint: "top" -558 1888 mark 0 +AnchorPoint: "top" 162 544 mark 0 LayerCount: 2 Fore SplineSet -1400.69042969 980 m 257 - 1178.2421875 726 l 257 - 1249.5 680 l 257 - 1474.3125 935 l 257 - 1400.69042969 980 l 257 +376.690429688 980 m 257 + 154.2421875 726 l 257 + 225.5 680 l 257 + 450.3125 935 l 257 + 376.690429688 980 l 257 EndSplineSet EndChar @@ -8043,16 +8044,17 @@ GlifName: dotbelowcomb Width: 0 VWidth: 0 GlyphClass: 2 -AnchorPoint: "base" 498 -187 mark 0 -AnchorPoint: "base" 498 -187 mark 0 +Flags: HW +AnchorPoint: "base" -14 -187 mark 0 +AnchorPoint: "base" -14 -187 mark 0 LayerCount: 2 Fore SplineSet -305.75 -204 m 257 - 215.849609375 -451 l 257 - 479.849609375 -451 l 257 - 569.75 -204 l 257 - 305.75 -204 l 257 +-206.25 -204 m 257 + -296.150390625 -451 l 257 + -32.150390625 -451 l 257 + 57.75 -204 l 257 + -206.25 -204 l 257 EndSplineSet EndChar @@ -8727,16 +8729,17 @@ GlifName: gravecomb Width: 0 VWidth: 0 GlyphClass: 2 -AnchorPoint: "top" 592 1881 mark 0 -AnchorPoint: "top" 1384 593 mark 0 +Flags: HW +AnchorPoint: "top" -432 1881 mark 0 +AnchorPoint: "top" 360 593 mark 0 LayerCount: 2 Fore SplineSet -1248.12109375 907 m 257 - 1282.22363281 671 l 257 - 1390.96679688 717 l 257 - 1357.22753906 954 l 257 - 1248.12109375 907 l 257 +224.12109375 907 m 257 + 258.223632812 671 l 257 + 366.966796875 717 l 257 + 333.227539062 954 l 257 + 224.12109375 907 l 257 EndSplineSet EndChar @@ -11362,26 +11365,27 @@ GlifName: tildecomb Width: 0 VWidth: 0 GlyphClass: 2 -AnchorPoint: "top" 492 1855 mark 0 -AnchorPoint: "top" 1732 1775 mark 0 +Flags: HW +AnchorPoint: "top" -532 1855 mark 0 +AnchorPoint: "top" 708 1775 mark 0 LayerCount: 2 Fore SplineSet -1611.40039062 2015 m 257 - 1575.3671875 1916 l 257 - 1903.16503906 1855 l 257 - 1939.19824219 1954 l 257 - 1611.40039062 2015 l 257 -1352.29003906 1957 m 257 - 1330.62109375 1859 l 257 - 1575.3671875 1916 l 257 - 1611.40039062 2015 l 257 - 1352.29003906 1957 l 257 -1939.19824219 1954 m 257 - 1903.16503906 1855 l 257 - 2134.484375 1996 l 257 - 2145.42578125 2092 l 257 - 1939.19824219 1954 l 257 +587.400390625 2015 m 257 + 551.3671875 1916 l 257 + 879.165039062 1855 l 257 + 915.198242188 1954 l 257 + 587.400390625 2015 l 257 +328.290039062 1957 m 257 + 306.62109375 1859 l 257 + 551.3671875 1916 l 257 + 587.400390625 2015 l 257 + 328.290039062 1957 l 257 +915.198242188 1954 m 257 + 879.165039062 1855 l 257 + 1110.484375 1996 l 257 + 1121.42578125 2092 l 257 + 915.198242188 1954 l 257 EndSplineSet EndChar @@ -11873,7 +11877,7 @@ GlifName: uni0218 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 352 806 N 1 0 0.36397 1 -48.0404 -121 2 @@ -11886,7 +11890,7 @@ GlifName: uni0219 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 352 806 N 1 0 0.36397 1 157.96 -121 2 @@ -11899,7 +11903,7 @@ GlifName: uni021A_ Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 352 806 N 1 0 0.36397 1 -41.8566 -115 2 @@ -11912,7 +11916,7 @@ GlifName: uni021B_ Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 352 806 N 1 0 0.36397 1 -1.12864 -113 2 @@ -12045,21 +12049,22 @@ GlifName: uni0302 Width: 0 VWidth: 0 GlyphClass: 2 -AnchorPoint: "top" 506 1427 mark 0 -AnchorPoint: "top" 1719 1841 mark 0 +Flags: HW +AnchorPoint: "top" -518 1427 mark 0 +AnchorPoint: "top" 695 1841 mark 0 LayerCount: 2 Fore SplineSet -1899.13183594 2300 m 257 - 1824.13183594 2300 l 257 - 1580.02832031 1992 l 257 - 1643.38183594 1960 l 257 - 1899.13183594 2300 l 257 -1805.29296875 2240 m 257 - 1831.38183594 1960 l 257 - 1916.57324219 1988 l 257 - 1899.13183594 2300 l 257 - 1805.29296875 2240 l 257 +875.131835938 2300 m 257 + 800.131835938 2300 l 257 + 556.028320312 1992 l 257 + 619.381835938 1960 l 257 + 875.131835938 2300 l 257 +781.29296875 2240 m 257 + 807.381835938 1960 l 257 + 892.573242188 1988 l 257 + 875.131835938 2300 l 257 + 781.29296875 2240 l 257 EndSplineSet EndChar @@ -12069,16 +12074,17 @@ GlifName: uni0304 Width: 0 VWidth: 0 GlyphClass: 2 -AnchorPoint: "top" 488 1532 mark 0 -AnchorPoint: "top" 1600 1476 mark 0 +Flags: HW +AnchorPoint: "top" -536 1532 mark 0 +AnchorPoint: "top" 576 1476 mark 0 LayerCount: 2 Fore SplineSet -1337.27148438 1630 m 257 - 1307.42578125 1548 l 257 - 1867.42578125 1548 l 257 - 1897.27148438 1630 l 257 - 1337.27148438 1630 l 257 +313.271484375 1630 m 257 + 283.42578125 1548 l 257 + 843.42578125 1548 l 257 + 873.271484375 1630 l 257 + 313.271484375 1630 l 257 EndSplineSet EndChar @@ -12088,26 +12094,27 @@ GlifName: uni0306 Width: 0 VWidth: 0 GlyphClass: 2 -AnchorPoint: "top" 496 1440 mark 0 -AnchorPoint: "top" 1568 1376 mark 0 +Flags: HW +AnchorPoint: "top" -528 1440 mark 0 +AnchorPoint: "top" 544 1376 mark 0 LayerCount: 2 Fore SplineSet -1752.42578125 1548 m 257 - 1727.67578125 1480 l 257 - 1917.42578125 1548 l 257 - 1952.73144531 1645 l 257 - 1752.42578125 1548 l 257 -1428.42578125 1548 m 257 - 1403.67578125 1480 l 257 - 1727.67578125 1480 l 257 - 1752.42578125 1548 l 257 - 1428.42578125 1548 l 257 -1287.27148438 1630 m 257 - 1257.42578125 1548 l 257 - 1403.67578125 1480 l 257 - 1428.42578125 1548 l 257 - 1287.27148438 1630 l 257 +728.42578125 1548 m 257 + 703.67578125 1480 l 257 + 893.42578125 1548 l 257 + 928.731445312 1645 l 257 + 728.42578125 1548 l 257 +404.42578125 1548 m 257 + 379.67578125 1480 l 257 + 703.67578125 1480 l 257 + 728.42578125 1548 l 257 + 404.42578125 1548 l 257 +263.271484375 1630 m 257 + 233.42578125 1548 l 257 + 379.67578125 1480 l 257 + 404.42578125 1548 l 257 + 263.271484375 1630 l 257 EndSplineSet EndChar @@ -12117,16 +12124,17 @@ GlifName: uni0307 Width: 0 VWidth: 0 GlyphClass: 2 -AnchorPoint: "top" 508 1542 mark 0 -AnchorPoint: "top" 1588 1582 mark 0 +Flags: HW +AnchorPoint: "top" -516 1542 mark 0 +AnchorPoint: "top" 564 1582 mark 0 LayerCount: 2 Fore SplineSet -1582.796875 1843 m 257 - 1509.27539062 1641 l 257 - 1733.27539062 1641 l 257 - 1806.796875 1843 l 257 - 1582.796875 1843 l 257 +558.796875 1843 m 257 + 485.275390625 1641 l 257 + 709.275390625 1641 l 257 + 782.796875 1843 l 257 + 558.796875 1843 l 257 EndSplineSet EndChar @@ -12136,21 +12144,22 @@ GlifName: uni0308 Width: 0 VWidth: 0 GlyphClass: 2 -AnchorPoint: "top" 516 1592 mark 0 -AnchorPoint: "top" 1508 1368 mark 0 +Flags: HW +AnchorPoint: "top" -474 1592 mark 0 +AnchorPoint: "top" 518 1368 mark 0 LayerCount: 2 Fore SplineSet -1315.45117188 1625 m 257 - 1260.4921875 1474 l 257 - 1428.4921875 1474 l 257 - 1483.45117188 1625 l 257 - 1315.45117188 1625 l 257 -1679.45117188 1625 m 257 - 1624.4921875 1474 l 257 - 1792.4921875 1474 l 257 - 1847.45117188 1625 l 257 - 1679.45117188 1625 l 257 +325.451171875 1625 m 257 + 270.4921875 1474 l 257 + 438.4921875 1474 l 257 + 493.451171875 1625 l 257 + 325.451171875 1625 l 257 +689.451171875 1625 m 257 + 634.4921875 1474 l 257 + 802.4921875 1474 l 257 + 857.451171875 1625 l 257 + 689.451171875 1625 l 257 EndSplineSet EndChar @@ -12160,21 +12169,22 @@ GlifName: uni030A_ Width: 0 VWidth: 0 GlyphClass: 2 -AnchorPoint: "top" 541 1536 mark 0 -AnchorPoint: "top" 1621 1424 mark 0 +Flags: HW +AnchorPoint: "top" -483 1536 mark 0 +AnchorPoint: "top" 597 1424 mark 0 LayerCount: 2 Fore SplineSet -1588.13183594 1756 m 257 - 1736.13183594 1756 l 257 - 1688.81542969 1626 l 257 - 1540.81542969 1626 l 257 - 1588.13183594 1756 l 257 -1516.25292969 1847 m 257 - 1403.421875 1537 l 257 - 1763.421875 1537 l 257 - 1876.25292969 1847 l 257 - 1516.25292969 1847 l 257 +564.131835938 1756 m 257 + 712.131835938 1756 l 257 + 664.815429688 1626 l 257 + 516.815429688 1626 l 257 + 564.131835938 1756 l 257 +492.252929688 1847 m 257 + 379.421875 1537 l 257 + 739.421875 1537 l 257 + 852.252929688 1847 l 257 + 492.252929688 1847 l 257 EndSplineSet EndChar @@ -12184,11 +12194,12 @@ GlifName: uni030B_ Width: 0 VWidth: 0 GlyphClass: 2 -AnchorPoint: "top" 493 1280 mark 0 -AnchorPoint: "top" 1957 1248 mark 0 +Flags: HW +AnchorPoint: "top" -1058.76 1280 mark 0 +AnchorPoint: "top" 405.244 1248 mark 0 LayerCount: 2 Fore -Refer: 273 34 N 1 0 0.36397 1 0 0 2 +Refer: 273 34 N 1 0 0.36397 1 -1551.76 0 2 EndChar StartChar: uni030C @@ -12197,21 +12208,22 @@ GlifName: uni030C_ Width: 0 VWidth: 0 GlyphClass: 2 -AnchorPoint: "top" 504 1315 mark 0 -AnchorPoint: "top" 1600 1275 mark 0 +Flags: HW +AnchorPoint: "top" -614 1315 mark 0 +AnchorPoint: "top" 482 1275 mark 0 LayerCount: 2 Fore SplineSet -1639.45507812 1364 m 257 - 1653.73144531 1645 l 257 - 1594.63183594 1620 l 257 - 1589.09179688 1363 l 257 - 1639.45507812 1364 l 257 -1609.29003906 1413 m 257 - 1639.45507812 1364 l 257 - 1821.359375 1622 l 257 - 1779.09472656 1646 l 257 - 1609.29003906 1413 l 257 +521.455078125 1364 m 257 + 535.731445312 1645 l 257 + 476.631835938 1620 l 257 + 471.091796875 1363 l 257 + 521.455078125 1364 l 257 +491.290039062 1413 m 257 + 521.455078125 1364 l 257 + 703.359375 1622 l 257 + 661.094726562 1646 l 257 + 491.290039062 1413 l 257 EndSplineSet EndChar @@ -12221,21 +12233,22 @@ GlifName: uni0326 Width: 0 VWidth: 0 GlyphClass: 2 -AnchorPoint: "base" 534 -5 mark 0 -AnchorPoint: "base" 534 -5 mark 0 +Flags: HW +AnchorPoint: "base" -490 -5 mark 0 +AnchorPoint: "base" -490 -5 mark 0 LayerCount: 2 Fore SplineSet -910 0 m 257 - 826.287109375 -230 l 257 - 1074.28710938 -230 l 257 - 1158 0 l 257 - 910 0 l 257 -970.510742188 -103 m 257 - 750.235351562 -384 l 257 - 872.397460938 -444 l 257 - 1070.83105469 -234 l 257 - 970.510742188 -103 l 257 +-114 0 m 257 + -197.712890625 -230 l 257 + 50.287109375 -230 l 257 + 134 0 l 257 + -114 0 l 257 +-53.4892578125 -103 m 257 + -273.764648438 -384 l 257 + -151.602539062 -444 l 257 + 46.8310546875 -234 l 257 + -53.4892578125 -103 l 257 EndSplineSet EndChar @@ -12245,31 +12258,32 @@ GlifName: uni0327 Width: 0 VWidth: 0 GlyphClass: 2 -AnchorPoint: "base" 654 191 mark 0 -AnchorPoint: "base" 654 191 mark 0 +Flags: HW +AnchorPoint: "base" -370 191 mark 0 +AnchorPoint: "base" -370 191 mark 0 LayerCount: 2 Fore SplineSet -865.514648438 180 m 257 - 747.587890625 -144 l 257 - 903.587890625 -144 l 257 - 1021.51464844 180 l 257 - 865.514648438 180 l 257 -697.176757812 -288 m 257 - 654.228515625 -406 l 257 - 1100.22851562 -406 l 257 - 1143.17675781 -288 l 257 - 697.176757812 -288 l 257 -1096 0 m 257 - 960.603515625 -372 l 257 - 1112.60351562 -372 l 257 - 1248 0 l 257 - 1096 0 l 257 -802 0 m 257 - 745.220703125 -156 l 257 - 1191.22070312 -156 l 257 - 1248 0 l 257 - 802 0 l 257 +-158.485351562 180 m 257 + -276.412109375 -144 l 257 + -120.412109375 -144 l 257 + -2.4853515625 180 l 257 + -158.485351562 180 l 257 +-326.823242188 -288 m 257 + -369.771484375 -406 l 257 + 76.228515625 -406 l 257 + 119.176757812 -288 l 257 + -326.823242188 -288 l 257 +72 0 m 257 + -63.396484375 -372 l 257 + 88.603515625 -372 l 257 + 224 0 l 257 + 72 0 l 257 +-222 0 m 257 + -278.779296875 -156 l 257 + 167.220703125 -156 l 257 + 224 0 l 257 + -222 0 l 257 EndSplineSet EndChar @@ -12279,46 +12293,47 @@ GlifName: uni0328 Width: 0 VWidth: 0 GlyphClass: 2 -AnchorPoint: "base" 990 23 mark 0 -AnchorPoint: "base" 990 23 mark 0 +Flags: HW +AnchorPoint: "base" -34 23 mark 0 +AnchorPoint: "base" -34 23 mark 0 LayerCount: 2 Fore SplineSet -648.176757812 -288 m 257 - 605.228515625 -406 l 257 - 1147.22851562 -406 l 257 - 1190.17675781 -288 l 257 - 648.176757812 -288 l 257 -753 0 m 257 - 605.228515625 -406 l 257 - 723.228515625 -406 l 257 - 871 0 l 257 - 753 0 l 257 -753 0 m 257 - 708.959960938 -121 l 257 - 1250.95996094 -121 l 257 - 1295 0 l 257 - 753 0 l 257 +-375.823242188 -288 m 257 + -418.771484375 -406 l 257 + 123.228515625 -406 l 257 + 166.176757812 -288 l 257 + -375.823242188 -288 l 257 +-271 0 m 257 + -418.771484375 -406 l 257 + -300.771484375 -406 l 257 + -153 0 l 257 + -271 0 l 257 +-271 0 m 257 + -315.040039062 -121 l 257 + 226.959960938 -121 l 257 + 271 0 l 257 + -271 0 l 257 EndSplineSet EndChar StartChar: uni0331 Encoding: 817 817 355 GlifName: uni0331 -Width: 2048 +Width: 0 VWidth: 0 GlyphClass: 2 -Flags: W -AnchorPoint: "base" 510 -163 mark 0 -AnchorPoint: "base" 510 -163 mark 0 +Flags: HW +AnchorPoint: "base" 4 -163 mark 0 +AnchorPoint: "base" 4 -163 mark 0 LayerCount: 2 Fore SplineSet -164.125 -170 m 257 - 135.735351562 -248 l 257 - 695.735351562 -248 l 257 - 724.125 -170 l 257 - 164.125 -170 l 257 +-341.875 -170 m 257 + -370.264648438 -248 l 257 + 189.735351562 -248 l 257 + 218.125 -170 l 257 + -341.875 -170 l 257 EndSplineSet EndChar @@ -19092,36 +19107,8 @@ EndSplineSet Ligature2: "blwsBelowBaseSubstitutionsinDevanagarilookup12 subtable" uni0930 uni0942 EndChar -StartChar: uni0930_uni094D.abvs -Encoding: 65628 -1 496 -GlifName: uni0930_uni094D_.abvs -Width: 2048 -VWidth: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -547.42578125 1548 m 257 - 745.42578125 1548 l 257 - 862.98828125 1871 l 257 - 664.98828125 1871 l 257 - 547.42578125 1548 l 257 -1023.62402344 2142 m 257 - 950.830078125 1942 l 257 - 1278.83007812 1942 l 257 - 1351.62402344 2142 l 257 - 1023.62402344 2142 l 257 -1023.62402344 2142 m 257 - 663.260742188 1869 l 257 - 861.260742188 1869 l 257 - 950.830078125 1942 l 257 - 1023.62402344 2142 l 257 -EndSplineSet -EndChar - StartChar: uni0930_uni094D.blwf -Encoding: 65629 -1 497 +Encoding: 65629 -1 496 GlifName: uni0930_uni094D_.blwf Width: 2048 VWidth: 0 @@ -19150,7 +19137,7 @@ Ligature2: "blwfBelowBaseFormsinDevanagarilookup0 subtable" uni094D uni0930 EndChar StartChar: uni0930_uni094D.half -Encoding: 65630 -1 498 +Encoding: 65630 -1 497 GlifName: uni0930_uni094D_.half Width: 2048 VWidth: 0 @@ -19185,7 +19172,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0930 uni094D EndChar StartChar: uni0930_uni094D.haln -Encoding: 65631 -1 499 +Encoding: 65631 -1 498 GlifName: uni0930_uni094D_.haln Width: 2048 VWidth: 0 @@ -19229,7 +19216,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0930 uni094D EndChar StartChar: uni0930_uni094D.rphf -Encoding: 65632 -1 500 +Encoding: 65632 -1 499 GlifName: uni0930_uni094D_.rphf Width: 2048 VWidth: 0 @@ -19262,26 +19249,8 @@ EndSplineSet Ligature2: "rphfRephForminDevanagarilookup0 subtable" uni0930 uni094D EndChar -StartChar: uni0930_uni094D.vatu -Encoding: 65633 -1 501 -GlifName: uni0930_uni094D_.vatu -Width: 2048 -VWidth: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -52 0 m 257 - 476 0 l 257 - 1856.25390625 215 l 257 - 1929.41113281 416 l 257 - 52 0 l 257 -EndSplineSet -EndChar - StartChar: uni0931 -Encoding: 2353 2353 502 +Encoding: 2353 2353 500 GlifName: uni0931 Width: 2048 VWidth: 0 @@ -19320,7 +19289,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0930 uni093C EndChar StartChar: uni0931_uni0930_uni094D.vatu -Encoding: 65634 -1 503 +Encoding: 65634 -1 501 GlifName: uni0931_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -19364,7 +19333,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0931 uni0930_uni09 EndChar StartChar: uni0931_uni094D.haln -Encoding: 65635 -1 504 +Encoding: 65635 -1 502 GlifName: uni0931_uni094D_.haln Width: 2048 VWidth: 0 @@ -19413,7 +19382,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0931 uni094D EndChar StartChar: uni0932 -Encoding: 2354 2354 505 +Encoding: 2354 2354 503 GlifName: uni0932 Width: 2048 VWidth: 0 @@ -19451,7 +19420,7 @@ EndSplineSet EndChar StartChar: uni0932_uni0930_uni094D.vatu -Encoding: 65636 -1 506 +Encoding: 65636 -1 504 GlifName: uni0932_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -19495,7 +19464,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0932 uni0930_uni09 EndChar StartChar: uni0932_uni094D.half -Encoding: 65637 -1 507 +Encoding: 65637 -1 505 GlifName: uni0932_uni094D_.half Width: 2048 VWidth: 0 @@ -19529,7 +19498,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0932 uni094D EndChar StartChar: uni0932_uni094D.haln -Encoding: 65638 -1 508 +Encoding: 65638 -1 506 GlifName: uni0932_uni094D_.haln Width: 2048 VWidth: 0 @@ -19578,7 +19547,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0932 uni094D EndChar StartChar: uni0933 -Encoding: 2355 2355 509 +Encoding: 2355 2355 507 GlifName: uni0933 Width: 2048 VWidth: 0 @@ -19621,7 +19590,7 @@ EndSplineSet EndChar StartChar: uni0933_uni0930_uni094D.vatu -Encoding: 65639 -1 510 +Encoding: 65639 -1 508 GlifName: uni0933_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -19675,7 +19644,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0933 uni0930_uni09 EndChar StartChar: uni0933_uni094D.half -Encoding: 65640 -1 511 +Encoding: 65640 -1 509 GlifName: uni0933_uni094D_.half Width: 2048 VWidth: 0 @@ -19719,7 +19688,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0933 uni094D EndChar StartChar: uni0933_uni094D.haln -Encoding: 65641 -1 512 +Encoding: 65641 -1 510 GlifName: uni0933_uni094D_.haln Width: 2048 VWidth: 0 @@ -19773,7 +19742,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0933 uni094D EndChar StartChar: uni0934 -Encoding: 2356 2356 513 +Encoding: 2356 2356 511 GlifName: uni0934 Width: 2048 VWidth: 0 @@ -19822,7 +19791,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0933 uni093C EndChar StartChar: uni0934_uni0930_uni094D.vatu -Encoding: 65642 -1 514 +Encoding: 65642 -1 512 GlifName: uni0934_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -19881,7 +19850,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0934 uni0930_uni09 EndChar StartChar: uni0934_uni094D.half -Encoding: 65643 -1 515 +Encoding: 65643 -1 513 GlifName: uni0934_uni094D_.half Width: 2048 VWidth: 0 @@ -19930,7 +19899,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0934 uni094D EndChar StartChar: uni0934_uni094D.haln -Encoding: 65644 -1 516 +Encoding: 65644 -1 514 GlifName: uni0934_uni094D_.haln Width: 2048 VWidth: 0 @@ -19989,7 +19958,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0934 uni094D EndChar StartChar: uni0935 -Encoding: 2357 2357 517 +Encoding: 2357 2357 515 GlifName: uni0935 Width: 2048 VWidth: 0 @@ -20027,7 +19996,7 @@ EndSplineSet EndChar StartChar: uni0935_uni0930_uni094D.vatu -Encoding: 65645 -1 518 +Encoding: 65645 -1 516 GlifName: uni0935_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -20071,7 +20040,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0935 uni0930_uni09 EndChar StartChar: uni0935_uni094D.half -Encoding: 65646 -1 519 +Encoding: 65646 -1 517 GlifName: uni0935_uni094D_.half Width: 2048 VWidth: 0 @@ -20105,7 +20074,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0935 uni094D EndChar StartChar: uni0935_uni094D.haln -Encoding: 65647 -1 520 +Encoding: 65647 -1 518 GlifName: uni0935_uni094D_.haln Width: 2048 VWidth: 0 @@ -20154,7 +20123,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0935 uni094D EndChar StartChar: uni0936 -Encoding: 2358 2358 521 +Encoding: 2358 2358 519 GlifName: uni0936 Width: 2048 VWidth: 0 @@ -20202,7 +20171,7 @@ EndSplineSet EndChar StartChar: uni0936_uni0930_uni094D.vatu -Encoding: 65648 -1 522 +Encoding: 65648 -1 520 GlifName: uni0936_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -20256,7 +20225,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0936 uni0930_uni09 EndChar StartChar: uni0936_uni094D.half -Encoding: 65649 -1 523 +Encoding: 65649 -1 521 GlifName: uni0936_uni094D_.half Width: 2048 VWidth: 0 @@ -20295,7 +20264,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0936 uni094D EndChar StartChar: uni0936_uni094D.haln -Encoding: 65650 -1 524 +Encoding: 65650 -1 522 GlifName: uni0936_uni094D_.haln Width: 2048 VWidth: 0 @@ -20354,7 +20323,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0936 uni094D EndChar StartChar: uni0937 -Encoding: 2359 2359 525 +Encoding: 2359 2359 523 GlifName: uni0937 Width: 2048 VWidth: 0 @@ -20392,7 +20361,7 @@ EndSplineSet EndChar StartChar: uni0937_uni0930_uni094D.vatu -Encoding: 65651 -1 526 +Encoding: 65651 -1 524 GlifName: uni0937_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -20436,7 +20405,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0937 uni0930_uni09 EndChar StartChar: uni0937_uni094D.half -Encoding: 65652 -1 527 +Encoding: 65652 -1 525 GlifName: uni0937_uni094D_.half Width: 2048 VWidth: 0 @@ -20470,7 +20439,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0937 uni094D EndChar StartChar: uni0937_uni094D.haln -Encoding: 65653 -1 528 +Encoding: 65653 -1 526 GlifName: uni0937_uni094D_.haln Width: 2048 VWidth: 0 @@ -20519,7 +20488,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0937 uni094D EndChar StartChar: uni0938 -Encoding: 2360 2360 529 +Encoding: 2360 2360 527 GlifName: uni0938 Width: 2048 VWidth: 0 @@ -20557,7 +20526,7 @@ EndSplineSet EndChar StartChar: uni0938_uni0930_uni094D.vatu -Encoding: 65654 -1 530 +Encoding: 65654 -1 528 GlifName: uni0938_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -20601,7 +20570,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0938 uni0930_uni09 EndChar StartChar: uni0938_uni094D.half -Encoding: 65655 -1 531 +Encoding: 65655 -1 529 GlifName: uni0938_uni094D_.half Width: 2048 VWidth: 0 @@ -20635,7 +20604,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0938 uni094D EndChar StartChar: uni0938_uni094D.haln -Encoding: 65656 -1 532 +Encoding: 65656 -1 530 GlifName: uni0938_uni094D_.haln Width: 2048 VWidth: 0 @@ -20684,7 +20653,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0938 uni094D EndChar StartChar: uni0939 -Encoding: 2361 2361 533 +Encoding: 2361 2361 531 GlifName: uni0939 Width: 2048 VWidth: 0 @@ -20737,7 +20706,7 @@ EndSplineSet EndChar StartChar: uni0939_uni0930_uni094D.vatu -Encoding: 65657 -1 534 +Encoding: 65657 -1 532 GlifName: uni0939_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -20796,7 +20765,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0939 uni0930_uni09 EndChar StartChar: uni0939_uni0943.blws -Encoding: 65658 -1 535 +Encoding: 65658 -1 533 GlifName: uni0939_uni0943.blws Width: 2048 VWidth: 0 @@ -20855,7 +20824,7 @@ Ligature2: "blwsBelowBaseSubstitutionsinDevanagarilookup12 subtable" uni0939 uni EndChar StartChar: uni0939_uni094D.half -Encoding: 65659 -1 536 +Encoding: 65659 -1 534 GlifName: uni0939_uni094D_.half Width: 2048 VWidth: 0 @@ -20904,7 +20873,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0939 uni094D EndChar StartChar: uni0939_uni094D.haln -Encoding: 65660 -1 537 +Encoding: 65660 -1 535 GlifName: uni0939_uni094D_.haln Width: 2048 VWidth: 0 @@ -20968,7 +20937,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0939 uni094D EndChar StartChar: uni0939_uni094D_uni092E.pres -Encoding: 65661 -1 538 +Encoding: 65661 -1 536 GlifName: uni0939_uni094D__uni092E_.pres Width: 2048 VWidth: 0 @@ -21042,25 +21011,25 @@ Ligature2: "presPreBaseSubstitutionsinDevanagarilookup0 subtable" uni0939_uni094 EndChar StartChar: uni093A -Encoding: 2362 2362 539 +Encoding: 2362 2362 537 GlifName: uni093A_ -Width: 2048 +Width: 0 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore SplineSet -1532.36328125 1633 m 257 - 1334.72753906 1090 l 257 - 1506.72753906 1090 l 257 - 1704.36328125 1633 l 257 - 1532.36328125 1633 l 257 +-167.63671875 1633 m 261 + -365.272460938 1090 l 261 + -193.272460938 1090 l 261 + 4.36328125 1633 l 261 + -167.63671875 1633 l 261 EndSplineSet EndChar StartChar: uni093B -Encoding: 2363 2363 540 +Encoding: 2363 2363 538 GlifName: uni093B_ Width: 2048 VWidth: 0 @@ -21083,12 +21052,13 @@ EndSplineSet EndChar StartChar: uni093C -Encoding: 2364 2364 541 +Encoding: 2364 2364 539 GlifName: uni093C_ -Width: 2048 +Width: 0 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW +AnchorPoint: "blwm" -101 3 mark 0 LayerCount: 2 Fore SplineSet @@ -21101,7 +21071,7 @@ EndSplineSet EndChar StartChar: uni093D -Encoding: 2365 2365 542 +Encoding: 2365 2365 540 GlifName: uni093D_ Width: 2048 VWidth: 0 @@ -21134,7 +21104,7 @@ EndSplineSet EndChar StartChar: uni093E -Encoding: 2366 2366 543 +Encoding: 2366 2366 541 GlifName: uni093E_ Width: 2048 VWidth: 0 @@ -21157,7 +21127,7 @@ EndSplineSet EndChar StartChar: uni093E_uni0930_uni094D.abvs -Encoding: 65662 -1 544 +Encoding: 65662 -1 542 GlifName: uni093E__uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -21196,7 +21166,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni093E uni0 EndChar StartChar: uni093F -Encoding: 2367 2367 545 +Encoding: 2367 2367 543 GlifName: uni093F_ Width: 2048 VWidth: 0 @@ -21229,7 +21199,7 @@ EndSplineSet EndChar StartChar: uni0940 -Encoding: 2368 2368 546 +Encoding: 2368 2368 544 GlifName: uni0940 Width: 2048 VWidth: 0 @@ -21262,7 +21232,7 @@ EndSplineSet EndChar StartChar: uni0940_uni0902.abvs -Encoding: 65663 -1 547 +Encoding: 65663 -1 545 GlifName: uni0940_uni0902.abvs Width: 2048 VWidth: 0 @@ -21301,7 +21271,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0940 uni0 EndChar StartChar: uni0940_uni0930_uni094D.abvs -Encoding: 65664 -1 548 +Encoding: 65664 -1 546 GlifName: uni0940_uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -21350,7 +21320,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0940 uni0 EndChar StartChar: uni0941 -Encoding: 2369 2369 549 +Encoding: 2369 2369 547 GlifName: uni0941 Width: 0 VWidth: 0 @@ -21384,7 +21354,7 @@ EndSplineSet EndChar StartChar: uni0942 -Encoding: 2370 2370 550 +Encoding: 2370 2370 548 GlifName: uni0942 Width: 0 VWidth: 0 @@ -21418,7 +21388,7 @@ EndSplineSet EndChar StartChar: uni0943 -Encoding: 2371 2371 551 +Encoding: 2371 2371 549 GlifName: uni0943 Width: 0 VWidth: 0 @@ -21447,7 +21417,7 @@ EndSplineSet EndChar StartChar: uni0944 -Encoding: 2372 2372 552 +Encoding: 2372 2372 550 GlifName: uni0944 Width: 0 VWidth: 0 @@ -21481,7 +21451,7 @@ EndSplineSet EndChar StartChar: uni0945 -Encoding: 2373 2373 553 +Encoding: 2373 2373 551 GlifName: uni0945 Width: 2048 VWidth: 0 @@ -21514,7 +21484,7 @@ EndSplineSet EndChar StartChar: uni0945_uni0902.abvs -Encoding: 65673 -1 554 +Encoding: 65673 -1 552 GlifName: uni0945_uni0902.abvs Width: 2048 VWidth: 0 @@ -21553,7 +21523,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0945 uni0 EndChar StartChar: uni0945_uni0930_uni094D.abvs -Encoding: 65674 -1 555 +Encoding: 65674 -1 553 GlifName: uni0945_uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -21602,7 +21572,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0945 uni0 EndChar StartChar: uni0946 -Encoding: 2374 2374 556 +Encoding: 2374 2374 554 GlifName: uni0946 Width: 2048 VWidth: 0 @@ -21635,7 +21605,7 @@ EndSplineSet EndChar StartChar: uni0946_uni0902.abvs -Encoding: 65675 -1 557 +Encoding: 65675 -1 555 GlifName: uni0946_uni0902.abvs Width: 2048 VWidth: 0 @@ -21674,7 +21644,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0946 uni0 EndChar StartChar: uni0946_uni0930_uni094D.abvs -Encoding: 65676 -1 558 +Encoding: 65676 -1 556 GlifName: uni0946_uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -21723,7 +21693,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0946 uni0 EndChar StartChar: uni0947 -Encoding: 2375 2375 559 +Encoding: 2375 2375 557 GlifName: uni0947 Width: 2048 VWidth: 0 @@ -21746,7 +21716,7 @@ EndSplineSet EndChar StartChar: uni0947_uni0902.abvs -Encoding: 65677 -1 560 +Encoding: 65677 -1 558 GlifName: uni0947_uni0902.abvs Width: 2048 VWidth: 0 @@ -21775,7 +21745,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0947 uni0 EndChar StartChar: uni0947_uni0930_uni094D.abvs -Encoding: 65678 -1 561 +Encoding: 65678 -1 559 GlifName: uni0947_uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -21814,7 +21784,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0947 uni0 EndChar StartChar: uni0948 -Encoding: 2376 2376 562 +Encoding: 2376 2376 560 GlifName: uni0948 Width: 2048 VWidth: 0 @@ -21842,7 +21812,7 @@ EndSplineSet EndChar StartChar: uni0948_uni0902.abvs -Encoding: 65679 -1 563 +Encoding: 65679 -1 561 GlifName: uni0948_uni0902.abvs Width: 2048 VWidth: 0 @@ -21876,7 +21846,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0948 uni0 EndChar StartChar: uni0948_uni0930_uni094D.abvs -Encoding: 65680 -1 564 +Encoding: 65680 -1 562 GlifName: uni0948_uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -21920,7 +21890,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0948 uni0 EndChar StartChar: uni0949 -Encoding: 2377 2377 565 +Encoding: 2377 2377 563 GlifName: uni0949 Width: 2048 VWidth: 0 @@ -21958,7 +21928,7 @@ EndSplineSet EndChar StartChar: uni0949_uni0902.abvs -Encoding: 65681 -1 566 +Encoding: 65681 -1 564 GlifName: uni0949_uni0902.abvs Width: 2048 VWidth: 0 @@ -22002,7 +21972,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0949 uni0 EndChar StartChar: uni0949_uni0930_uni094D.abvs -Encoding: 65682 -1 567 +Encoding: 65682 -1 565 GlifName: uni0949_uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -22056,7 +22026,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0949 uni0 EndChar StartChar: uni094A -Encoding: 2378 2378 568 +Encoding: 2378 2378 566 GlifName: uni094A_ Width: 2048 VWidth: 0 @@ -22094,7 +22064,7 @@ EndSplineSet EndChar StartChar: uni094A_uni0902.abvs -Encoding: 65683 -1 569 +Encoding: 65683 -1 567 GlifName: uni094A__uni0902.abvs Width: 2048 VWidth: 0 @@ -22138,7 +22108,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094A uni0 EndChar StartChar: uni094A_uni0930_uni094D.abvs -Encoding: 65684 -1 570 +Encoding: 65684 -1 568 GlifName: uni094A__uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -22192,7 +22162,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094A uni0 EndChar StartChar: uni094B -Encoding: 2379 2379 571 +Encoding: 2379 2379 569 GlifName: uni094B_ Width: 2048 VWidth: 0 @@ -22220,7 +22190,7 @@ EndSplineSet EndChar StartChar: uni094B_uni0902.abvs -Encoding: 65685 -1 572 +Encoding: 65685 -1 570 GlifName: uni094B__uni0902.abvs Width: 2048 VWidth: 0 @@ -22254,7 +22224,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094B uni0 EndChar StartChar: uni094B_uni0930_uni094D.abvs -Encoding: 65686 -1 573 +Encoding: 65686 -1 571 GlifName: uni094B__uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -22298,7 +22268,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094B uni0 EndChar StartChar: uni094C -Encoding: 2380 2380 574 +Encoding: 2380 2380 572 GlifName: uni094C_ Width: 2048 VWidth: 0 @@ -22331,7 +22301,7 @@ EndSplineSet EndChar StartChar: uni094C_uni0902.abvs -Encoding: 65687 -1 575 +Encoding: 65687 -1 573 GlifName: uni094C__uni0902.abvs Width: 2048 VWidth: 0 @@ -22370,7 +22340,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094C uni0 EndChar StartChar: uni094C_uni0930_uni094D.abvs -Encoding: 65688 -1 576 +Encoding: 65688 -1 574 GlifName: uni094C__uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -22419,7 +22389,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094C uni0 EndChar StartChar: uni094D -Encoding: 2381 2381 577 +Encoding: 2381 2381 575 GlifName: uni094D_ Width: 0 VWidth: 0 @@ -22443,7 +22413,7 @@ EndSplineSet EndChar StartChar: uni094E -Encoding: 2382 2382 578 +Encoding: 2382 2382 576 GlifName: uni094E_ Width: 2048 VWidth: 0 @@ -22466,7 +22436,7 @@ EndSplineSet EndChar StartChar: uni094F -Encoding: 2383 2383 579 +Encoding: 2383 2383 577 GlifName: uni094F_ Width: 2048 VWidth: 0 @@ -22519,7 +22489,7 @@ EndSplineSet EndChar StartChar: uni0950 -Encoding: 2384 2384 580 +Encoding: 2384 2384 578 GlifName: uni0950 Width: 2048 VWidth: 0 @@ -22577,83 +22547,83 @@ EndSplineSet EndChar StartChar: uni0951 -Encoding: 2385 2385 581 +Encoding: 2385 2385 579 GlifName: uni0951 Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "abvm" -300 1691 mark 0 +AnchorPoint: "abvm" 601 1641 mark 0 LayerCount: 2 Fore SplineSet -1699.52832031 2128 m 257 - 1557.58007812 1738 l 257 - 1755.58007812 1738 l 257 - 1897.52832031 2128 l 257 - 1699.52832031 2128 l 257 +675.528320312 2128 m 257 + 533.580078125 1738 l 257 + 731.580078125 1738 l 257 + 873.528320312 2128 l 257 + 675.528320312 2128 l 257 EndSplineSet EndChar StartChar: uni0952 -Encoding: 2386 2386 582 +Encoding: 2386 2386 580 GlifName: uni0952 Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "blwm" -454 -14 mark 0 +AnchorPoint: "blwm" -1478 -14 mark 0 LayerCount: 2 Fore SplineSet -561.227539062 -134 m 257 - 506.268554688 -285 l 257 - 1334.26855469 -285 l 257 - 1389.22753906 -134 l 257 - 561.227539062 -134 l 257 +-462.772460938 -134 m 257 + -517.731445312 -285 l 257 + 310.268554688 -285 l 257 + 365.227539062 -134 l 257 + -462.772460938 -134 l 257 EndSplineSet EndChar StartChar: uni0953 -Encoding: 2387 2387 583 +Encoding: 2387 2387 581 GlifName: uni0953 Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "abvm" -157 1295 mark 0 +AnchorPoint: "abvm" -1181 1295 mark 0 LayerCount: 2 Fore SplineSet -1458.05078125 1786 m 257 - 1617.71289062 1318 l 257 - 1727.35644531 1339 l 257 - 1692.06933594 1841 l 257 - 1458.05078125 1786 l 257 +434.05078125 1786 m 257 + 593.712890625 1318 l 257 + 703.356445312 1339 l 257 + 668.069335938 1841 l 257 + 434.05078125 1786 l 257 EndSplineSet EndChar StartChar: uni0954 -Encoding: 2388 2388 584 +Encoding: 2388 2388 582 GlifName: uni0954 Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "abvm" -311 1295 mark 0 +AnchorPoint: "abvm" -1335 1295 mark 0 LayerCount: 2 Fore SplineSet -1674.359375 1894 m 257 - 1331.82324219 1376 l 257 - 1472.82324219 1376 l 257 - 1890.34472656 1850 l 257 - 1674.359375 1894 l 257 +650.359375 1894 m 257 + 307.823242188 1376 l 257 + 448.823242188 1376 l 257 + 866.344726562 1850 l 257 + 650.359375 1894 l 257 EndSplineSet EndChar StartChar: uni0955 -Encoding: 2389 2389 585 +Encoding: 2389 2389 583 GlifName: uni0955 Width: 2048 VWidth: 0 @@ -22691,7 +22661,7 @@ EndSplineSet EndChar StartChar: uni0956 -Encoding: 2390 2390 586 +Encoding: 2390 2390 584 GlifName: uni0956 Width: 2048 VWidth: 0 @@ -22724,7 +22694,7 @@ EndSplineSet EndChar StartChar: uni0957 -Encoding: 2391 2391 587 +Encoding: 2391 2391 585 GlifName: uni0957 Width: 2048 VWidth: 0 @@ -22772,7 +22742,7 @@ EndSplineSet EndChar StartChar: uni0958 -Encoding: 2392 2392 588 +Encoding: 2392 2392 586 GlifName: uni0958 Width: 2048 VWidth: 0 @@ -22826,7 +22796,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0915 uni093C EndChar StartChar: uni0958_uni0930_uni094D.vatu -Encoding: 65689 -1 589 +Encoding: 65689 -1 587 GlifName: uni0958_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -22885,7 +22855,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0958 uni0930_uni09 EndChar StartChar: uni0958_uni094D.half -Encoding: 65690 -1 590 +Encoding: 65690 -1 588 GlifName: uni0958_uni094D_.half Width: 2048 VWidth: 0 @@ -22934,7 +22904,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0958 uni094D EndChar StartChar: uni0958_uni094D.haln -Encoding: 65691 -1 591 +Encoding: 65691 -1 589 GlifName: uni0958_uni094D_.haln Width: 2048 VWidth: 0 @@ -22998,7 +22968,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0958 uni094D EndChar StartChar: uni0959 -Encoding: 2393 2393 592 +Encoding: 2393 2393 590 GlifName: uni0959 Width: 2048 VWidth: 0 @@ -23057,7 +23027,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0916 uni093C EndChar StartChar: uni0959_uni0930_uni094D.vatu -Encoding: 65692 -1 593 +Encoding: 65692 -1 591 GlifName: uni0959_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -23121,7 +23091,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0959 uni0930_uni09 EndChar StartChar: uni0959_uni094D.half -Encoding: 65693 -1 594 +Encoding: 65693 -1 592 GlifName: uni0959_uni094D_.half Width: 2048 VWidth: 0 @@ -23175,7 +23145,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0959 uni094D EndChar StartChar: uni0959_uni094D.haln -Encoding: 65694 -1 595 +Encoding: 65694 -1 593 GlifName: uni0959_uni094D_.haln Width: 2048 VWidth: 0 @@ -23244,7 +23214,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0959 uni094D EndChar StartChar: uni095A -Encoding: 2394 2394 596 +Encoding: 2394 2394 594 GlifName: uni095A_ Width: 2048 VWidth: 0 @@ -23288,7 +23258,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0917 uni093C EndChar StartChar: uni095A_uni0930_uni094D.vatu -Encoding: 65695 -1 597 +Encoding: 65695 -1 595 GlifName: uni095A__uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -23337,7 +23307,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095A uni0930_uni09 EndChar StartChar: uni095A_uni094D.half -Encoding: 65696 -1 598 +Encoding: 65696 -1 596 GlifName: uni095A__uni094D_.half Width: 2048 VWidth: 0 @@ -23376,7 +23346,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni095A uni094D EndChar StartChar: uni095A_uni094D.haln -Encoding: 65697 -1 599 +Encoding: 65697 -1 597 GlifName: uni095A__uni094D_.haln Width: 2048 VWidth: 0 @@ -23430,7 +23400,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095A uni094D EndChar StartChar: uni095B -Encoding: 2395 2395 600 +Encoding: 2395 2395 598 GlifName: uni095B_ Width: 2048 VWidth: 0 @@ -23479,7 +23449,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni091C uni093C EndChar StartChar: uni095B_uni0930_uni094D.vatu -Encoding: 65698 -1 601 +Encoding: 65698 -1 599 GlifName: uni095B__uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -23533,7 +23503,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095B uni0930_uni09 EndChar StartChar: uni095B_uni094D.half -Encoding: 65699 -1 602 +Encoding: 65699 -1 600 GlifName: uni095B__uni094D_.half Width: 2048 VWidth: 0 @@ -23577,7 +23547,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni095B uni094D EndChar StartChar: uni095B_uni094D.haln -Encoding: 65700 -1 603 +Encoding: 65700 -1 601 GlifName: uni095B__uni094D_.haln Width: 2048 VWidth: 0 @@ -23636,7 +23606,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095B uni094D EndChar StartChar: uni095C -Encoding: 2396 2396 604 +Encoding: 2396 2396 602 GlifName: uni095C_ Width: 2048 VWidth: 0 @@ -23695,7 +23665,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0921 uni093C EndChar StartChar: uni095C_uni0930_uni094D.vatu -Encoding: 65701 -1 605 +Encoding: 65701 -1 603 GlifName: uni095C__uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -23764,7 +23734,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095C uni0930_uni09 EndChar StartChar: uni095C_uni094D.haln -Encoding: 65702 -1 606 +Encoding: 65702 -1 604 GlifName: uni095C__uni094D_.haln Width: 2048 VWidth: 0 @@ -23833,7 +23803,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095C uni094D EndChar StartChar: uni095D -Encoding: 2397 2397 607 +Encoding: 2397 2397 605 GlifName: uni095D_ Width: 2048 VWidth: 0 @@ -23887,7 +23857,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0922 uni093C EndChar StartChar: uni095D_uni0930_uni094D.vatu -Encoding: 65703 -1 608 +Encoding: 65703 -1 606 GlifName: uni095D__uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -23951,7 +23921,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095D uni0930_uni09 EndChar StartChar: uni095D_uni094D.haln -Encoding: 65704 -1 609 +Encoding: 65704 -1 607 GlifName: uni095D__uni094D_.haln Width: 2048 VWidth: 0 @@ -24015,7 +23985,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095D uni094D EndChar StartChar: uni095E -Encoding: 2398 2398 610 +Encoding: 2398 2398 608 GlifName: uni095E_ Width: 2048 VWidth: 0 @@ -24059,7 +24029,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni092B uni093C EndChar StartChar: uni095E_uni0930_uni094D.vatu -Encoding: 65705 -1 611 +Encoding: 65705 -1 609 GlifName: uni095E__uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -24108,7 +24078,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095E uni0930_uni09 EndChar StartChar: uni095E_uni094D.half -Encoding: 65706 -1 612 +Encoding: 65706 -1 610 GlifName: uni095E__uni094D_.half Width: 2048 VWidth: 0 @@ -24147,7 +24117,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni095E uni094D EndChar StartChar: uni095E_uni094D.haln -Encoding: 65707 -1 613 +Encoding: 65707 -1 611 GlifName: uni095E__uni094D_.haln Width: 2048 VWidth: 0 @@ -24201,7 +24171,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095E uni094D EndChar StartChar: uni095F -Encoding: 2399 2399 614 +Encoding: 2399 2399 612 GlifName: uni095F_ Width: 2048 VWidth: 0 @@ -24245,7 +24215,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni092F uni093C EndChar StartChar: uni095F_uni0930_uni094D.vatu -Encoding: 65708 -1 615 +Encoding: 65708 -1 613 GlifName: uni095F__uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -24294,7 +24264,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095F uni0930_uni09 EndChar StartChar: uni095F_uni094D.half -Encoding: 65709 -1 616 +Encoding: 65709 -1 614 GlifName: uni095F__uni094D_.half Width: 2048 VWidth: 0 @@ -24348,7 +24318,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni095F uni094D EndChar StartChar: uni095F_uni094D.haln -Encoding: 65710 -1 617 +Encoding: 65710 -1 615 GlifName: uni095F__uni094D_.haln Width: 2048 VWidth: 0 @@ -24402,7 +24372,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095F uni094D EndChar StartChar: uni0960 -Encoding: 2400 2400 618 +Encoding: 2400 2400 616 GlifName: uni0960 Width: 2048 VWidth: 0 @@ -24460,7 +24430,7 @@ EndSplineSet EndChar StartChar: uni0961 -Encoding: 2401 2401 619 +Encoding: 2401 2401 617 GlifName: uni0961 Width: 2048 VWidth: 0 @@ -24513,7 +24483,7 @@ EndSplineSet EndChar StartChar: uni0962 -Encoding: 2402 2402 620 +Encoding: 2402 2402 618 GlifName: uni0962 Width: 2048 VWidth: 0 @@ -24556,7 +24526,7 @@ EndSplineSet EndChar StartChar: uni0963 -Encoding: 2403 2403 621 +Encoding: 2403 2403 619 GlifName: uni0963 Width: 2048 VWidth: 0 @@ -24604,7 +24574,7 @@ EndSplineSet EndChar StartChar: uni0964 -Encoding: 2404 2404 622 +Encoding: 2404 2404 620 GlifName: uni0964 Width: 2048 VWidth: 0 @@ -24622,7 +24592,7 @@ EndSplineSet EndChar StartChar: uni0965 -Encoding: 2405 2405 623 +Encoding: 2405 2405 621 GlifName: uni0965 Width: 2048 VWidth: 0 @@ -24645,7 +24615,7 @@ EndSplineSet EndChar StartChar: uni0966 -Encoding: 2406 2406 624 +Encoding: 2406 2406 622 GlifName: uni0966 Width: 2048 VWidth: 0 @@ -24678,7 +24648,7 @@ EndSplineSet EndChar StartChar: uni0967 -Encoding: 2407 2407 625 +Encoding: 2407 2407 623 GlifName: uni0967 Width: 2048 VWidth: 0 @@ -24711,7 +24681,7 @@ EndSplineSet EndChar StartChar: uni0968 -Encoding: 2408 2408 626 +Encoding: 2408 2408 624 GlifName: uni0968 Width: 2048 VWidth: 0 @@ -24749,7 +24719,7 @@ EndSplineSet EndChar StartChar: uni0969 -Encoding: 2409 2409 627 +Encoding: 2409 2409 625 GlifName: uni0969 Width: 2048 VWidth: 0 @@ -24787,7 +24757,7 @@ EndSplineSet EndChar StartChar: uni096A -Encoding: 2410 2410 628 +Encoding: 2410 2410 626 GlifName: uni096A_ Width: 2048 VWidth: 0 @@ -24835,7 +24805,7 @@ EndSplineSet EndChar StartChar: uni096B -Encoding: 2411 2411 629 +Encoding: 2411 2411 627 GlifName: uni096B_ Width: 2048 VWidth: 0 @@ -24868,7 +24838,7 @@ EndSplineSet EndChar StartChar: uni096C -Encoding: 2412 2412 630 +Encoding: 2412 2412 628 GlifName: uni096C_ Width: 2048 VWidth: 0 @@ -24906,7 +24876,7 @@ EndSplineSet EndChar StartChar: uni096D -Encoding: 2413 2413 631 +Encoding: 2413 2413 629 GlifName: uni096D_ Width: 2048 VWidth: 0 @@ -24944,7 +24914,7 @@ EndSplineSet EndChar StartChar: uni096E -Encoding: 2414 2414 632 +Encoding: 2414 2414 630 GlifName: uni096E_ Width: 2048 VWidth: 0 @@ -24972,7 +24942,7 @@ EndSplineSet EndChar StartChar: uni096F -Encoding: 2415 2415 633 +Encoding: 2415 2415 631 GlifName: uni096F_ Width: 2048 VWidth: 0 @@ -25010,7 +24980,7 @@ EndSplineSet EndChar StartChar: uni0970 -Encoding: 2416 2416 634 +Encoding: 2416 2416 632 GlifName: uni0970 Width: 2048 VWidth: 0 @@ -25028,7 +24998,7 @@ EndSplineSet EndChar StartChar: uni0971 -Encoding: 2417 2417 635 +Encoding: 2417 2417 633 GlifName: uni0971 Width: 2048 VWidth: 0 @@ -25046,7 +25016,7 @@ EndSplineSet EndChar StartChar: uni0972 -Encoding: 2418 2418 636 +Encoding: 2418 2418 634 GlifName: uni0972 Width: 2048 VWidth: 0 @@ -25104,7 +25074,7 @@ EndSplineSet EndChar StartChar: uni0973 -Encoding: 2419 2419 637 +Encoding: 2419 2419 635 GlifName: uni0973 Width: 2048 VWidth: 0 @@ -25152,7 +25122,7 @@ EndSplineSet EndChar StartChar: uni0974 -Encoding: 2420 2420 638 +Encoding: 2420 2420 636 GlifName: uni0974 Width: 2048 VWidth: 0 @@ -25200,7 +25170,7 @@ EndSplineSet EndChar StartChar: uni0975 -Encoding: 2421 2421 639 +Encoding: 2421 2421 637 GlifName: uni0975 Width: 2048 VWidth: 0 @@ -25273,7 +25243,7 @@ EndSplineSet EndChar StartChar: uni0976 -Encoding: 2422 2422 640 +Encoding: 2422 2422 638 GlifName: uni0976 Width: 2048 VWidth: 0 @@ -25331,7 +25301,7 @@ EndSplineSet EndChar StartChar: uni0977 -Encoding: 2423 2423 641 +Encoding: 2423 2423 639 GlifName: uni0977 Width: 2048 VWidth: 0 @@ -25404,7 +25374,7 @@ EndSplineSet EndChar StartChar: uni0978 -Encoding: 2424 2424 642 +Encoding: 2424 2424 640 GlifName: uni0978 Width: 2048 VWidth: 0 @@ -25437,7 +25407,7 @@ EndSplineSet EndChar StartChar: uni0979 -Encoding: 2425 2425 643 +Encoding: 2425 2425 641 GlifName: uni0979 Width: 2048 VWidth: 0 @@ -25495,7 +25465,7 @@ EndSplineSet EndChar StartChar: uni097A -Encoding: 2426 2426 644 +Encoding: 2426 2426 642 GlifName: uni097A_ Width: 2048 VWidth: 0 @@ -25538,7 +25508,7 @@ EndSplineSet EndChar StartChar: uni097B -Encoding: 2427 2427 645 +Encoding: 2427 2427 643 GlifName: uni097B_ Width: 2048 VWidth: 0 @@ -25581,7 +25551,7 @@ EndSplineSet EndChar StartChar: uni097C -Encoding: 2428 2428 646 +Encoding: 2428 2428 644 GlifName: uni097C_ Width: 2048 VWidth: 0 @@ -25629,7 +25599,7 @@ EndSplineSet EndChar StartChar: uni097D -Encoding: 2429 2429 647 +Encoding: 2429 2429 645 GlifName: uni097D_ Width: 2048 VWidth: 0 @@ -25662,7 +25632,7 @@ EndSplineSet EndChar StartChar: uni097E -Encoding: 2430 2430 648 +Encoding: 2430 2430 646 GlifName: uni097E_ Width: 2048 VWidth: 0 @@ -25710,7 +25680,7 @@ EndSplineSet EndChar StartChar: uni097F -Encoding: 2431 2431 649 +Encoding: 2431 2431 647 GlifName: uni097F_ Width: 2048 VWidth: 0 @@ -25758,12 +25728,12 @@ EndSplineSet EndChar StartChar: uni1E0C -Encoding: 7692 7692 650 +Encoding: 7692 7692 648 GlifName: uni1E_0C_ Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0.36397 1 -228.518 81 2 @@ -25771,12 +25741,12 @@ Refer: 19 68 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E0D -Encoding: 7693 7693 651 +Encoding: 7693 7693 649 GlifName: uni1E_0D_ Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0.36397 1 565.482 81 2 @@ -25784,12 +25754,12 @@ Refer: 160 100 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E34 -Encoding: 7732 7732 652 +Encoding: 7732 7732 650 GlifName: uni1E_34 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 355 817 N 1 0 0.36397 1 283.107 47 2 @@ -25797,12 +25767,12 @@ Refer: 56 75 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E35 -Encoding: 7733 7733 653 +Encoding: 7733 7733 651 GlifName: uni1E_35 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 355 817 N 1 0 0.36397 1 436.379 45 2 @@ -25810,12 +25780,12 @@ Refer: 224 107 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E36 -Encoding: 7734 7734 654 +Encoding: 7734 7734 652 GlifName: uni1E_36 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0.36397 1 542.937 85 2 @@ -25823,12 +25793,12 @@ Refer: 57 76 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E37 -Encoding: 7735 7735 655 +Encoding: 7735 7735 653 GlifName: uni1E_37 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0.36397 1 545.121 91 2 @@ -25836,38 +25806,38 @@ Refer: 225 108 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E38 -Encoding: 7736 7736 656 +Encoding: 7736 7736 654 GlifName: uni1E_38 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 345 772 N 1 0 0.36397 1 -737.235 112 2 -Refer: 654 7734 N 1 0 0.36397 1 0 0 2 +Refer: 652 7734 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E39 -Encoding: 7737 7737 657 +Encoding: 7737 7737 655 GlifName: uni1E_39 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 345 772 N 1 0 0.36397 1 -345.052 118 2 -Refer: 655 7735 N 1 0 0.36397 1 0 0 2 +Refer: 653 7735 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E3A -Encoding: 7738 7738 658 +Encoding: 7738 7738 656 GlifName: uni1E_3A_ Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 355 817 N 1 0 0.36397 1 536.562 51 2 @@ -25875,12 +25845,12 @@ Refer: 57 76 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E3B -Encoding: 7739 7739 659 +Encoding: 7739 7739 657 GlifName: uni1E_3B_ Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 355 817 N 1 0 0.36397 1 538.746 57 2 @@ -25888,12 +25858,12 @@ Refer: 225 108 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E42 -Encoding: 7746 7746 660 +Encoding: 7746 7746 658 GlifName: uni1E_42 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0.36397 1 540.754 79 2 @@ -25901,12 +25871,12 @@ Refer: 62 77 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E43 -Encoding: 7747 7747 661 +Encoding: 7747 7747 659 GlifName: uni1E_43 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0.36397 1 579.118 80 2 @@ -25914,12 +25884,12 @@ Refer: 232 109 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E44 -Encoding: 7748 7748 662 +Encoding: 7748 7748 660 GlifName: uni1E_44 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 347 775 N 1 0 0.36397 1 -30.7169 31 2 @@ -25927,12 +25897,12 @@ Refer: 63 78 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E45 -Encoding: 7749 7749 663 +Encoding: 7749 7749 661 GlifName: uni1E_45 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 347 775 N 1 0 0.36397 1 -177.617 -488 2 @@ -25940,12 +25910,12 @@ Refer: 237 110 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E46 -Encoding: 7750 7750 664 +Encoding: 7750 7750 662 GlifName: uni1E_46 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0.36397 1 545.482 81 2 @@ -25953,12 +25923,12 @@ Refer: 63 78 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E47 -Encoding: 7751 7751 665 +Encoding: 7751 7751 663 GlifName: uni1E_47 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0.36397 1 631.118 80 2 @@ -25966,12 +25936,12 @@ Refer: 237 110 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E48 -Encoding: 7752 7752 666 +Encoding: 7752 7752 664 GlifName: uni1E_48 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 355 817 N 1 0 0.36397 1 504.107 47 2 @@ -25979,12 +25949,12 @@ Refer: 63 78 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E49 -Encoding: 7753 7753 667 +Encoding: 7753 7753 665 GlifName: uni1E_49 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 355 817 N 1 0 0.36397 1 624.743 46 2 @@ -25992,7 +25962,7 @@ Refer: 237 110 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E4C -Encoding: 7756 7756 668 +Encoding: 7756 7756 666 GlifName: uni1E_4C_ Width: 2048 VWidth: 0 @@ -26005,7 +25975,7 @@ Refer: 77 213 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E4D -Encoding: 7757 7757 669 +Encoding: 7757 7757 667 GlifName: uni1E_4D_ Width: 2048 VWidth: 0 @@ -26018,12 +25988,12 @@ Refer: 259 245 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E58 -Encoding: 7768 7768 670 +Encoding: 7768 7768 668 GlifName: uni1E_58 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 347 775 N 1 0 0.36397 1 5.64337 21 2 @@ -26031,12 +26001,12 @@ Refer: 80 82 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E59 -Encoding: 7769 7769 671 +Encoding: 7769 7769 669 GlifName: uni1E_59 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 347 775 N 1 0 0.36397 1 -178.709 -491 2 @@ -26044,12 +26014,12 @@ Refer: 281 114 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E5A -Encoding: 7770 7770 672 +Encoding: 7770 7770 670 GlifName: uni1E_5A_ Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0.36397 1 642.39 78 2 @@ -26057,12 +26027,12 @@ Refer: 80 82 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E5B -Encoding: 7771 7771 673 +Encoding: 7771 7771 671 GlifName: uni1E_5B_ Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0.36397 1 489.118 80 2 @@ -26070,38 +26040,38 @@ Refer: 281 114 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E5C -Encoding: 7772 7772 674 +Encoding: 7772 7772 672 GlifName: uni1E_5C_ Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 345 772 N 1 0 0.36397 1 38.0367 110 2 -Refer: 672 7770 N 1 0 0.36397 1 0 0 2 +Refer: 670 7770 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E5D -Encoding: 7773 7773 675 +Encoding: 7773 7773 673 GlifName: uni1E_5D_ Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 345 772 N 1 0 0.36397 1 -147.772 -406 2 -Refer: 673 7771 N 1 0 0.36397 1 0 0 2 +Refer: 671 7771 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E5E -Encoding: 7774 7774 676 +Encoding: 7774 7774 674 GlifName: uni1E_5E_ Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 355 817 N 1 0 0.36397 1 636.015 44 2 @@ -26109,12 +26079,12 @@ Refer: 80 82 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E5F -Encoding: 7775 7775 677 +Encoding: 7775 7775 675 GlifName: uni1E_5F_ Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 355 817 N 1 0 0.36397 1 482.743 46 2 @@ -26122,12 +26092,12 @@ Refer: 281 114 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E62 -Encoding: 7778 7778 678 +Encoding: 7778 7778 676 GlifName: uni1E_62 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0.36397 1 537.846 82 2 @@ -26135,12 +26105,12 @@ Refer: 83 83 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E63 -Encoding: 7779 7779 679 +Encoding: 7779 7779 677 GlifName: uni1E_63 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0.36397 1 643.846 82 2 @@ -26148,12 +26118,12 @@ Refer: 286 115 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E6C -Encoding: 7788 7788 680 +Encoding: 7788 7788 678 GlifName: uni1E_6C_ Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0.36397 1 544.029 88 2 @@ -26161,12 +26131,12 @@ Refer: 88 84 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E6D -Encoding: 7789 7789 681 +Encoding: 7789 7789 679 GlifName: uni1E_6D_ Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0.36397 1 579.846 82 2 @@ -26174,12 +26144,12 @@ Refer: 298 116 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E8E -Encoding: 7822 7822 682 +Encoding: 7822 7822 680 GlifName: uni1E_8E_ Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 347 775 N 1 0 0.36397 1 -31.4449 29 2 @@ -26187,20 +26157,20 @@ Refer: 109 89 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E8F -Encoding: 7823 7823 683 +Encoding: 7823 7823 681 GlifName: uni1E_8F_ Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 347 775 N 1 0 0.36397 1 -180.165 -495 2 -Refer: 702 121 N 1 0 0.36397 1 0 0 2 +Refer: 700 121 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E9E -Encoding: 7838 7838 684 +Encoding: 7838 7838 682 GlifName: uni1E_9E_ Width: 2048 VWidth: 0 @@ -26243,7 +26213,7 @@ EndSplineSet EndChar StartChar: uni200C -Encoding: 8204 8204 685 +Encoding: 8204 8204 683 GlifName: uni200C_ Width: 2048 VWidth: 0 @@ -26266,7 +26236,7 @@ EndSplineSet EndChar StartChar: uni200D -Encoding: 8205 8205 686 +Encoding: 8205 8205 684 GlifName: uni200D_ Width: 2048 VWidth: 0 @@ -26284,7 +26254,7 @@ EndSplineSet EndChar StartChar: uni2044 -Encoding: 8260 8260 687 +Encoding: 8260 8260 685 GlifName: uni2044 Width: 2048 VWidth: 0 @@ -26302,7 +26272,7 @@ EndSplineSet EndChar StartChar: uni20B9 -Encoding: 8377 8377 688 +Encoding: 8377 8377 686 GlifName: uni20B_9 Width: 2048 VWidth: 0 @@ -26340,7 +26310,7 @@ EndSplineSet EndChar StartChar: uni25CC -Encoding: 9676 9676 689 +Encoding: 9676 9676 687 GlifName: uni25C_C_ Width: 2048 VWidth: 0 @@ -26395,7 +26365,7 @@ EndSplineSet EndChar StartChar: uniFB01 -Encoding: 64257 64257 690 +Encoding: 64257 64257 688 GlifName: uniF_B_01 Width: 2048 VWidth: 0 @@ -26434,7 +26404,7 @@ Ligature2: "dligDiscretionaryLigatureslookup0 subtable" f i EndChar StartChar: uniFB02 -Encoding: 64258 64258 691 +Encoding: 64258 64258 689 GlifName: uniF_B_02 Width: 2048 VWidth: 0 @@ -26478,7 +26448,7 @@ Ligature2: "dligDiscretionaryLigatureslookup0 subtable" f l EndChar StartChar: uogonek -Encoding: 371 371 692 +Encoding: 371 371 690 GlifName: uogonek Width: 2048 VWidth: 0 @@ -26491,7 +26461,7 @@ Refer: 307 117 N 1 0 0 1 0 0 2 EndChar StartChar: uring -Encoding: 367 367 693 +Encoding: 367 367 691 GlifName: uring Width: 2048 VWidth: 0 @@ -26504,7 +26474,7 @@ Refer: 307 117 N 1 0 0 1 0 0 3 EndChar StartChar: utilde -Encoding: 361 361 694 +Encoding: 361 361 692 GlifName: utilde Width: 2048 VWidth: 0 @@ -26517,7 +26487,7 @@ Refer: 307 117 N 1 0 0 1 0 0 3 EndChar StartChar: v -Encoding: 118 118 695 +Encoding: 118 118 693 GlifName: v Width: 2048 VWidth: 0 @@ -26541,7 +26511,7 @@ EndSplineSet EndChar StartChar: w -Encoding: 119 119 696 +Encoding: 119 119 694 GlifName: w Width: 2048 VWidth: 0 @@ -26575,20 +26545,20 @@ EndSplineSet EndChar StartChar: wacute -Encoding: 7811 7811 697 +Encoding: 7811 7811 695 GlifName: wacute Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0.36397 1 82.3013 358 2 -Refer: 696 119 N 1 0 0.36397 1 0 0 2 +Refer: 694 119 N 1 0 0.36397 1 0 0 2 EndChar StartChar: wcircumflex -Encoding: 373 373 698 +Encoding: 373 373 696 GlifName: wcircumflex Width: 2048 VWidth: 0 @@ -26597,37 +26567,37 @@ Flags: HW LayerCount: 2 Fore Refer: 344 770 N 1 0 0 1 515.548 -810 2 -Refer: 696 119 N 1 0 0 1 0 0 3 +Refer: 694 119 N 1 0 0 1 0 0 3 EndChar StartChar: wdieresis -Encoding: 7813 7813 699 +Encoding: 7813 7813 697 GlifName: wdieresis Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 348 776 N 1 0 0.36397 1 -106.871 -431 2 -Refer: 696 119 N 1 0 0.36397 1 0 0 2 +Refer: 694 119 N 1 0 0.36397 1 0 0 2 EndChar StartChar: wgrave -Encoding: 7809 7809 700 +Encoding: 7809 7809 698 GlifName: wgrave Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 201 768 N 1 0 0.36397 1 169.959 423 2 -Refer: 696 119 N 1 0 0.36397 1 0 0 2 +Refer: 694 119 N 1 0 0.36397 1 0 0 2 EndChar StartChar: x -Encoding: 120 120 701 +Encoding: 120 120 699 GlifName: x Width: 2048 VWidth: 0 @@ -26650,7 +26620,7 @@ EndSplineSet EndChar StartChar: y -Encoding: 121 121 702 +Encoding: 121 121 700 GlifName: y Width: 2048 VWidth: 0 @@ -26685,7 +26655,7 @@ EndSplineSet EndChar StartChar: yacute -Encoding: 253 253 703 +Encoding: 253 253 701 GlifName: yacute Width: 2048 VWidth: 0 @@ -26694,11 +26664,11 @@ Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 191.61 465 2 -Refer: 702 121 N 1 0 0 1 0 0 3 +Refer: 700 121 N 1 0 0 1 0 0 3 EndChar StartChar: ycircumflex -Encoding: 375 375 704 +Encoding: 375 375 702 GlifName: ycircumflex Width: 2048 VWidth: 0 @@ -26707,11 +26677,11 @@ Flags: HW LayerCount: 2 Fore Refer: 344 770 N 1 0 0 1 -296.271 -815 2 -Refer: 702 121 N 1 0 0 1 0 0 3 +Refer: 700 121 N 1 0 0 1 0 0 3 EndChar StartChar: ydieresis -Encoding: 255 255 705 +Encoding: 255 255 703 GlifName: ydieresis Width: 2048 VWidth: 0 @@ -26720,11 +26690,11 @@ Flags: HW LayerCount: 2 Fore Refer: 348 776 N 1 0 0 1 -85.3817 -329 2 -Refer: 702 121 N 1 0 0 1 0 0 3 +Refer: 700 121 N 1 0 0 1 0 0 3 EndChar StartChar: yen -Encoding: 165 165 706 +Encoding: 165 165 704 GlifName: yen Width: 2048 VWidth: 0 @@ -26767,20 +26737,20 @@ EndSplineSet EndChar StartChar: ygrave -Encoding: 7923 7923 707 +Encoding: 7923 7923 705 GlifName: ygrave Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 201 768 N 1 0 0.36397 1 158.886 475 2 -Refer: 702 121 N 1 0 0.36397 1 0 0 2 +Refer: 700 121 N 1 0 0.36397 1 0 0 2 EndChar StartChar: z -Encoding: 122 122 708 +Encoding: 122 122 706 GlifName: z Width: 2048 VWidth: 0 @@ -26810,7 +26780,7 @@ EndSplineSet EndChar StartChar: zacute -Encoding: 378 378 709 +Encoding: 378 378 707 GlifName: zacute Width: 2048 VWidth: 0 @@ -26819,11 +26789,11 @@ Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 191.61 465 2 -Refer: 708 122 N 1 0 0 1 0 0 3 +Refer: 706 122 N 1 0 0 1 0 0 3 EndChar StartChar: zcaron -Encoding: 382 382 710 +Encoding: 382 382 708 GlifName: zcaron Width: 2048 VWidth: 0 @@ -26832,11 +26802,11 @@ Flags: HW LayerCount: 2 Fore Refer: 351 780 N 1 0 0 1 -172.981 -218 2 -Refer: 708 122 N 1 0 0 1 0 0 3 +Refer: 706 122 N 1 0 0 1 0 0 3 EndChar StartChar: zdotaccent -Encoding: 380 380 711 +Encoding: 380 380 709 GlifName: zdotaccent Width: 2048 VWidth: 0 @@ -26845,11 +26815,11 @@ Flags: HW LayerCount: 2 Fore Refer: 347 775 N 1 0 0 1 -180.165 -496 2 -Refer: 708 122 N 1 0 0 1 0 0 3 +Refer: 706 122 N 1 0 0 1 0 0 3 EndChar StartChar: zero -Encoding: 48 48 712 +Encoding: 48 48 710 GlifName: zero Width: 2048 VWidth: 0 @@ -26877,59 +26847,59 @@ EndSplineSet EndChar StartChar: uni0305 -Encoding: 773 773 713 +Encoding: 773 773 711 Width: 0 VWidth: 0 -Flags: W +Flags: HW HStem: 1542 60 -AnchorPoint: "top" -531 1481 mark 0 +AnchorPoint: "top" 565.161 1481 mark 0 LayerCount: 2 Fore SplineSet --901 1602 m 257 - -901 1542 l 257 - -147 1542 l 257 - -147 1602 l 257 - -901 1602 l 257 +195.161132812 1602 m 257 + 195.161132812 1542 l 257 + 949.161132812 1542 l 257 + 949.161132812 1602 l 257 + 195.161132812 1602 l 257 EndSplineSet EndChar StartChar: hookabovecomb -Encoding: 777 777 714 +Encoding: 777 777 712 Width: 0 VWidth: 0 -Flags: W +Flags: HW HStem: 1190 584 -VStem: 122 460 -AnchorPoint: "top" 325 1097 mark 0 -LayerCount: 2 -Fore -SplineSet -122 1774 m 257 - 122 1599 l 257 - 577 1599 l 257 - 577 1774 l 257 - 122 1774 l 257 -375 1774 m 257 - 375 1432 l 257 - 582 1432 l 257 - 582 1774 l 257 - 375 1774 l 257 -210 1453 m 257 - 210 1288 l 257 - 581 1288 l 257 - 581 1453 l 257 - 210 1453 l 257 -210 1453 m 257 - 210 1190 l 257 - 391 1190 l 257 - 391 1453 l 257 - 210 1453 l 257 +VStem: 327.739 460 +AnchorPoint: "top" 530.738 1097 mark 0 +LayerCount: 2 +Fore +SplineSet +327.73828125 1774 m 257 + 327.73828125 1599 l 257 + 782.73828125 1599 l 257 + 782.73828125 1774 l 257 + 327.73828125 1774 l 257 +580.73828125 1774 m 257 + 580.73828125 1432 l 257 + 787.73828125 1432 l 257 + 787.73828125 1774 l 257 + 580.73828125 1774 l 257 +415.73828125 1453 m 257 + 415.73828125 1288 l 257 + 786.73828125 1288 l 257 + 786.73828125 1453 l 257 + 415.73828125 1453 l 257 +415.73828125 1453 m 257 + 415.73828125 1190 l 257 + 596.73828125 1190 l 257 + 596.73828125 1453 l 257 + 415.73828125 1453 l 257 EndSplineSet EndChar StartChar: uni01C4 -Encoding: 452 452 715 +Encoding: 452 452 713 Width: 2048 Flags: HW LayerCount: 2 @@ -26939,22 +26909,22 @@ Refer: 19 68 N 0.5 0 0 1 -143.606 0 2 EndChar StartChar: uni01C5 -Encoding: 453 453 716 +Encoding: 453 453 714 Width: 2048 Flags: HW LayerCount: 2 Fore -Refer: 710 382 N 0.5 0 0 1 928.915 0 2 +Refer: 708 382 N 0.5 0 0 1 928.915 0 2 Refer: 19 68 N 0.5 0 0 1 -95.0854 0 2 EndChar StartChar: uni01C6 -Encoding: 454 454 717 +Encoding: 454 454 715 Width: 2048 Flags: HW LayerCount: 2 Fore -Refer: 710 382 N 0.5 0 0 1 922.415 0 2 +Refer: 708 382 N 0.5 0 0 1 922.415 0 2 Refer: 160 100 N 0.5 0 0 1 -101.585 0 2 EndChar EndChars diff --git a/sources/Samaano-Wide-Bold-Slanted.ufo/features.fea b/sources/Samaano-Wide-Bold-Slanted.ufo/features.fea index a10791b8f..a06e0c56e 100644 --- a/sources/Samaano-Wide-Bold-Slanted.ufo/features.fea +++ b/sources/Samaano-Wide-Bold-Slanted.ufo/features.fea @@ -235,7 +235,7 @@ feature half { script DFLT; language dflt ; lookup halfHalfFormsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup halfHalfFormsinDevanagarilookup0; } half; @@ -243,7 +243,7 @@ feature haln { script DFLT; language dflt ; lookup halnHalantFormsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup halnHalantFormsinDevanagarilookup0; } haln; @@ -251,7 +251,7 @@ feature vatu { script DFLT; language dflt ; lookup vatuVattuVariantsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup vatuVattuVariantsinDevanagarilookup0; } vatu; @@ -259,7 +259,7 @@ feature pres { script DFLT; language dflt ; lookup presPreBaseSubstitutionsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup presPreBaseSubstitutionsinDevanagarilookup0; } pres; @@ -267,7 +267,7 @@ feature abvs { script DFLT; language dflt ; lookup abvsAboveBaseSubstitutionsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup abvsAboveBaseSubstitutionsinDevanagarilookup0; } abvs; @@ -275,7 +275,7 @@ feature blws { script DFLT; language dflt ; lookup blwsBelowBaseSubstitutionsinDevanagarilookup12; - script dev2; + script deva; language dflt ; lookup blwsBelowBaseSubstitutionsinDevanagarilookup12; } blws; @@ -288,22 +288,22 @@ feature dlig { lookup dligDiscretionaryLigatureslookup0; } dlig;@CombiningTopAccents = [acutecomb oe tildecomb uni0302 uni0304 uni0306 uni0308 uni030A uni030B uni030C]; lookup markMarkPositioninglookup0 { - markClass gravecomb @top; - markClass acutecomb @top; - markClass uni0302 @top; - markClass tildecomb @top; - markClass uni0304 @top; - markClass uni0306 @top; - markClass uni0307 @top; - markClass uni0308 @top; - markClass uni030A @top; - markClass uni030B @top; - markClass uni030C @top; - markClass dotbelowcomb @base; - markClass uni0326 @base; - markClass uni0327 @base; - markClass uni0328 @base; - markClass uni0331 @base; + markClass gravecomb @top; + markClass acutecomb @top; + markClass uni0302 @top; + markClass tildecomb @top; + markClass uni0304 @top; + markClass uni0306 @top; + markClass uni0307 @top; + markClass uni0308 @top; + markClass uni030A @top; + markClass uni030B @top; + markClass uni030C @top; + markClass dotbelowcomb @base; + markClass uni0326 @base; + markClass uni0327 @base; + markClass uni0328 @base; + markClass uni0331 @base; pos base A mark @top; pos base C mark @top; pos base D mark @top; @@ -377,9 +377,9 @@ lookup markMarkPositioninglookup0 { pos base uni25CC mark @base; } markMarkPositioninglookup0; lookup abvmAboveBaseMarkinDevanagari2lookup1 { - markClass uni0900 @abvm; - markClass uni0901 @abvm; - markClass uni0902 @abvm; + markClass uni0900 @abvm; + markClass uni0901 @abvm; + markClass uni0902 @abvm; markClass uni0951 @abvm; markClass uni0953 @abvm; markClass uni0954 @abvm; @@ -415,9 +415,8 @@ feature blwm { script dev2; language dflt ; lookup blwmBelowBaseMarkinDevanagari2lookup2; -} blwm; -@GDEF_base = [A AE Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Emacron Eng Eogonek Eth Euro F G Gbreve Gcircumflex Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek Itilde J Jcircumflex K L Lacute Lcaron Ldot Lslash M N Nacute Ncaron Ntilde O OE Oacute Obreve Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Otilde P Q R Racute Rcaron S Sacute Scaron Scedilla Scircumflex T Tcaron Thorn U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ygrave Z Zacute Zcaron Zdotaccent a aacute abreve acircumflex acute adieresis ae agrave amacron ampersand aogonek aring asciicircum asciitilde asterisk at atilde b backslash bar braceleft braceright bracketleft bracketright breve brokenbar bullet c cacute caron ccaron ccedilla ccircumflex cdotaccent cedilla cent circumflex colon comma copyright currency d dagger daggerdbl dcaron dcroat degree dieresis divide dollar dotaccent dotlessi e eacute ebreve ecaron ecircumflex edieresis edotaccent egrave eight ellipsis emacron emdash endash eng eogonek equal eth exclam exclamdown f five four g gbreve gcircumflex gdotaccent germandbls grave greater guillemotleft guillemotright guilsinglleft guilsinglright h hbar hcircumflex hookabovecomb hungarumlaut hyphen i iacute ibreve icircumflex idieresis igrave ij imacron iogonek itilde j jcircumflex k l lacute lcaron ldot less logicalnot lslash m macron minus mu multiply n nacute ncaron nine ntilde numbersign o oacute obreve ocircumflex odieresis oe ogonek ograve ohungarumlaut omacron one onehalf onequarter ordfeminine ordmasculine oslash otilde p paragraph parenleft parenright percent period periodcentered perthousand plus plusminus q question questiondown quotedbl quotedblbase quotedblleft quotedblright quoteleft quoteright quotesinglbase quotesingle r racute rcaron registered ring s sacute scaron scedilla scircumflex section semicolon seven six slash space sterling t tcaron thorn three threequarters tilde trademark two u uacute ubreve ucircumflex udieresis ugrave uhungarumlaut umacron underscore uni00A0 uni00B2 uni00B3 uni00B9 uni0122 uni0123 uni0136 uni0137 uni013B uni013C uni0145 uni0146 uni0156 uni0157 uni0162 uni0163 uni0192 uni01C4 uni01C5 uni01C6 uni0218 uni0219 uni021A uni021B uni0237 uni02B9 uni02BA uni02BC uni02C9 uni02CA uni02CB uni0305 uni0903 uni0904 uni0905 uni0906 uni0907 uni0908 uni0909 uni090A uni090B uni090C uni090D uni090E uni090F uni0910 uni0911 uni0912 uni0913 uni0914 uni0915 uni0915_uni094D.half uni0915_uni094D_uni0937_uni094D uni0916 uni0916_uni094D.half uni0917 uni0918 uni0919 uni091A uni091A_uni0930_uni094D.vatu uni091B uni091C uni091C_uni0930_uni094D.vatu uni091C_uni094D_uni091E_uni094D uni091D uni091E uni091F uni0920 uni0921 uni0922 uni0922_uni0930_uni094D.vatu uni0923 uni0923_uni0930_uni094D.vatu uni0924 uni0925 uni0926 uni0927 uni0928 uni0929 uni092A uni092B uni092C uni092D uni092E uni092F uni0930 uni0930_uni094D.abvs uni0930_uni094D.haln uni0930_uni094D.vatu uni0931 uni0932 uni0933 uni0934 uni0935 uni0936 uni0936_uni094D.haln uni0937 uni0938 uni0938_uni0930_uni094D.vatu uni0938_uni094D.haln uni0939 uni0939_uni0930_uni094D.vatu uni093B uni093D uni093E uni093F uni0940 uni0940_uni0930_uni094D.abvs uni0945_uni0930_uni094D.abvs uni0946_uni0930_uni094D.abvs uni0947_uni0930_uni094D.abvs uni0948_uni0930_uni094D.abvs uni0949 uni0949_uni0930_uni094D.abvs uni094A uni094A_uni0930_uni094D.abvs uni094B uni094B_uni0930_uni094D.abvs uni094C uni094C_uni0930_uni094D.abvs uni094E uni094F uni0950 uni0958 uni0959 uni095A uni095A_uni094D.haln uni095B uni095C uni095D uni095E uni095E_uni0930_uni094D.vatu uni095F uni095F_uni0930_uni094D.vatu uni0960 uni0961 uni0964 uni0965 uni0966 uni0967 uni0968 uni0969 uni096A uni096B uni096C uni096D uni096E uni096F uni0970 uni0971 uni0972 uni0973 uni0974 uni0975 uni0976 uni0977 uni0978 uni0979 uni097A uni097B uni097C uni097D uni097E uni097F uni1E0C uni1E0D uni1E34 uni1E35 uni1E36 uni1E37 uni1E38 uni1E39 uni1E3A uni1E3B uni1E42 uni1E43 uni1E44 uni1E45 uni1E46 uni1E47 uni1E48 uni1E49 uni1E4C uni1E4D uni1E58 uni1E59 uni1E5A uni1E5B uni1E5C uni1E5D uni1E5E uni1E5F uni1E62 uni1E63 uni1E6C uni1E6D uni1E8E uni1E8F uni1E9E uni200C uni200D uni2044 uni20B9 uni25CC uogonek uring utilde v w wacute wcircumflex wdieresis wgrave x y yacute ycircumflex ydieresis yen ygrave z zacute zcaron zdotaccent zero]; -@GDEF_mark = [acutecomb dotbelowcomb glyph094D gravecomb tildecomb uni0302 uni0304 uni0306 uni0307 uni0308 uni030A uni030B uni030C uni0326 uni0327 uni0328 uni0331 uni0900 uni0901 uni0902 uni0930_uni094D.blwf uni0930_uni094D.rphf uni093A uni093C uni0941 uni0942 uni0943 uni0944 uni0945 uni0946 uni0947 uni0948 uni094D uni0951 uni0952 uni0953 uni0954 uni0955 uni0956 uni0957 uni0962 uni0963]; +} blwm;@GDEF_base = [A AE Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Emacron Eng Eogonek Eth Euro F G Gbreve Gcircumflex Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek Itilde J Jcircumflex K L Lacute Lcaron Ldot Lslash M N Nacute Ncaron Ntilde O OE Oacute Obreve Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Otilde P Q R Racute Rcaron S Sacute Scaron Scedilla Scircumflex T Tcaron Thorn U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ygrave Z Zacute Zcaron Zdotaccent a aacute abreve acircumflex acute adieresis ae agrave amacron ampersand aogonek aring asciicircum asciitilde asterisk at atilde b backslash bar braceleft braceright bracketleft bracketright breve brokenbar bullet c cacute caron ccaron ccedilla ccircumflex cdotaccent cedilla cent circumflex colon comma copyright currency d dagger daggerdbl dcaron dcroat degree dieresis divide dollar dotaccent dotlessi e eacute ebreve ecaron ecircumflex edieresis edotaccent egrave eight ellipsis emacron emdash endash eng eogonek equal eth exclam exclamdown f five four g gbreve gcircumflex gdotaccent germandbls grave greater guillemotleft guillemotright guilsinglleft guilsinglright h hbar hcircumflex hungarumlaut hyphen i iacute ibreve icircumflex idieresis igrave ij imacron iogonek itilde j jcircumflex k l lacute lcaron ldot less logicalnot lslash m macron minus mu multiply n nacute ncaron nine ntilde numbersign o oacute obreve ocircumflex odieresis oe ogonek ograve ohungarumlaut omacron one onehalf onequarter ordfeminine ordmasculine oslash otilde p paragraph parenleft parenright percent period periodcentered perthousand plus plusminus q question questiondown quotedbl quotedblbase quotedblleft quotedblright quoteleft quoteright quotesinglbase quotesingle r racute rcaron registered ring s sacute scaron scedilla scircumflex section semicolon seven six slash space sterling t tcaron thorn three threequarters tilde trademark two u uacute ubreve ucircumflex udieresis ugrave uhungarumlaut umacron underscore uni00A0 uni00B2 uni00B3 uni00B9 uni0122 uni0123 uni0136 uni0137 uni013B uni013C uni0145 uni0146 uni0156 uni0157 uni0162 uni0163 uni0192 uni01C4 uni01C5 uni01C6 uni0218 uni0219 uni021A uni021B uni0237 uni02B9 uni02BA uni02BC uni02C9 uni02CA uni02CB uni0903 uni0904 uni0905 uni0906 uni0907 uni0908 uni0909 uni090A uni090B uni090C uni090D uni090E uni090F uni0910 uni0911 uni0912 uni0913 uni0914 uni0915 uni0915_uni094D.half uni0915_uni094D_uni0937_uni094D uni0916 uni0916_uni094D.half uni0917 uni0918 uni0919 uni091A uni091A_uni0930_uni094D.vatu uni091B uni091C uni091C_uni0930_uni094D.vatu uni091C_uni094D_uni091E_uni094D uni091D uni091E uni091F uni0920 uni0921 uni0922 uni0922_uni0930_uni094D.vatu uni0923 uni0923_uni0930_uni094D.vatu uni0924 uni0925 uni0926 uni0927 uni0928 uni0929 uni092A uni092B uni092C uni092D uni092E uni092F uni0930 uni0930_uni094D.haln uni0931 uni0932 uni0933 uni0934 uni0935 uni0936 uni0936_uni094D.haln uni0937 uni0938 uni0938_uni0930_uni094D.vatu uni0938_uni094D.haln uni0939 uni0939_uni0930_uni094D.vatu uni093B uni093D uni093E uni093F uni0940 uni0940_uni0930_uni094D.abvs uni0945_uni0930_uni094D.abvs uni0946_uni0930_uni094D.abvs uni0947_uni0930_uni094D.abvs uni0948_uni0930_uni094D.abvs uni0949 uni0949_uni0930_uni094D.abvs uni094A uni094A_uni0930_uni094D.abvs uni094B uni094B_uni0930_uni094D.abvs uni094C uni094C_uni0930_uni094D.abvs uni094E uni094F uni0950 uni0958 uni0959 uni095A uni095A_uni094D.haln uni095B uni095C uni095D uni095E uni095E_uni0930_uni094D.vatu uni095F uni095F_uni0930_uni094D.vatu uni0960 uni0961 uni0964 uni0965 uni0966 uni0967 uni0968 uni0969 uni096A uni096B uni096C uni096D uni096E uni096F uni0970 uni0971 uni0972 uni0973 uni0974 uni0975 uni0976 uni0977 uni0978 uni0979 uni097A uni097B uni097C uni097D uni097E uni097F uni1E0C uni1E0D uni1E34 uni1E35 uni1E36 uni1E37 uni1E38 uni1E39 uni1E3A uni1E3B uni1E42 uni1E43 uni1E44 uni1E45 uni1E46 uni1E47 uni1E48 uni1E49 uni1E4C uni1E4D uni1E58 uni1E59 uni1E5A uni1E5B uni1E5C uni1E5D uni1E5E uni1E5F uni1E62 uni1E63 uni1E6C uni1E6D uni1E8E uni1E8F uni1E9E uni200C uni200D uni2044 uni20B9 uni25CC uogonek uring utilde v w wacute wcircumflex wdieresis wgrave x y yacute ycircumflex ydieresis yen ygrave z zacute zcaron zdotaccent zero]; +@GDEF_mark = [acutecomb dotbelowcomb gravecomb hookabovecomb tildecomb uni0302 uni0304 uni0305 uni0306 uni0307 uni0308 uni030A uni030B uni030C uni0326 uni0327 uni0328 uni0331 uni0900 uni0901 uni0902 uni0930_uni094D.blwf uni0930_uni094D.rphf uni093A uni093C uni0941 uni0942 uni0943 uni0944 uni0945 uni0946 uni0947 uni0948 uni094D uni0951 uni0952 uni0953 uni0954 uni0955 uni0956 uni0957 uni0962 uni0963]; @GDEF_ligature = [uni0915_uni0930_uni094D.vatu uni0915_uni094D.haln uni0915_uni094D_uni0937.akhn uni0915_uni094D_uni0937.half uni0916_uni0930_uni094D.vatu uni0916_uni094D.haln uni0917_uni0930_uni094D.vatu uni0917_uni094D.half uni0917_uni094D.haln uni0918_uni0930_uni094D.vatu uni0918_uni094D.half uni0918_uni094D.haln uni0919_uni0930_uni094D.vatu uni0919_uni094D.half uni0919_uni094D.haln uni091A_uni094D.half uni091A_uni094D.haln uni091B_uni0930_uni094D.vatu uni091B_uni094D.half uni091B_uni094D.haln uni091C_uni094D.half uni091C_uni094D.haln uni091C_uni094D_uni091E.akhn uni091C_uni094D_uni091E.half uni091D_uni0930_uni094D.vatu uni091D_uni094D.half uni091D_uni094D.haln uni091E_uni0930_uni094D.vatu uni091E_uni094D.half uni091E_uni094D.haln uni091F_uni0930_uni094D.vatu uni091F_uni094D.haln uni0920_uni0930_uni094D.vatu uni0920_uni094D.haln uni0921_uni0930_uni094D.vatu uni0921_uni094D.haln uni0922_uni094D.haln uni0923_uni094D.half uni0923_uni094D.haln uni0924_uni0930_uni094D.vatu uni0924_uni094D.half uni0924_uni094D.haln uni0924_uni094D_uni0924.pres uni0925_uni0930_uni094D.vatu uni0925_uni094D.half uni0925_uni094D.haln uni0926_uni0930_uni094D.vatu uni0926_uni094D.half uni0926_uni094D.haln uni0926_uni094D_uni0926.pres uni0926_uni094D_uni0927.pres uni0926_uni094D_uni092F.pres uni0926_uni094D_uni0935.pres uni0927_uni0930_uni094D.vatu uni0927_uni094D.half uni0927_uni094D.haln uni0928_uni0930_uni094D.vatu uni0928_uni094D.half uni0928_uni094D.haln uni0929_uni0930_uni094D.vatu uni0929_uni094D.half uni0929_uni094D.haln uni092A_uni0930_uni094D.vatu uni092A_uni094D.half uni092A_uni094D.haln uni092B_uni0930_uni094D.vatu uni092B_uni094D.half uni092B_uni094D.haln uni092C_uni0930_uni094D.vatu uni092C_uni094D.half uni092C_uni094D.haln uni092D_uni0930_uni094D.vatu uni092D_uni094D.half uni092D_uni094D.haln uni092E_uni0930_uni094D.vatu uni092E_uni094D.half uni092E_uni094D.haln uni092F_uni0930_uni094D.vatu uni092F_uni094D.half uni092F_uni094D.haln uni0930_uni0930_uni094D.vatu uni0930_uni0941.blws uni0930_uni0942.blws uni0930_uni094D.half uni0931_uni0930_uni094D.vatu uni0931_uni094D.haln uni0932_uni0930_uni094D.vatu uni0932_uni094D.half uni0932_uni094D.haln uni0933_uni0930_uni094D.vatu uni0933_uni094D.half uni0933_uni094D.haln uni0934_uni0930_uni094D.vatu uni0934_uni094D.half uni0934_uni094D.haln uni0935_uni0930_uni094D.vatu uni0935_uni094D.half uni0935_uni094D.haln uni0936_uni0930_uni094D.vatu uni0936_uni094D.half uni0937_uni0930_uni094D.vatu uni0937_uni094D.half uni0937_uni094D.haln uni0938_uni094D.half uni0939_uni0943.blws uni0939_uni094D.half uni0939_uni094D.haln uni0939_uni094D_uni092E.pres uni093E_uni0930_uni094D.abvs uni0940_uni0902.abvs uni0945_uni0902.abvs uni0946_uni0902.abvs uni0947_uni0902.abvs uni0948_uni0902.abvs uni0949_uni0902.abvs uni094A_uni0902.abvs uni094B_uni0902.abvs uni094C_uni0902.abvs uni0958_uni0930_uni094D.vatu uni0958_uni094D.half uni0958_uni094D.haln uni0959_uni0930_uni094D.vatu uni0959_uni094D.half uni0959_uni094D.haln uni095A_uni0930_uni094D.vatu uni095A_uni094D.half uni095B_uni0930_uni094D.vatu uni095B_uni094D.half uni095B_uni094D.haln uni095C_uni0930_uni094D.vatu uni095C_uni094D.haln uni095D_uni0930_uni094D.vatu uni095D_uni094D.haln uni095E_uni094D.half uni095E_uni094D.haln uni095F_uni094D.half uni095F_uni094D.haln uniFB01 uniFB02]; @GDEF_component = []; @@ -428,4 +427,4 @@ feature blwm { @GDEF_component; LigatureCaretByPos uniFB01 32; LigatureCaretByPos uniFB02 84; -} GDEF; +} GDEF; \ No newline at end of file diff --git a/sources/Samaano-Wide-Bold-Slanted.ufo/fontinfo.plist b/sources/Samaano-Wide-Bold-Slanted.ufo/fontinfo.plist index 730658244..4aa839cee 100644 --- a/sources/Samaano-Wide-Bold-Slanted.ufo/fontinfo.plist +++ b/sources/Samaano-Wide-Bold-Slanted.ufo/fontinfo.plist @@ -24,7 +24,7 @@ italicAngle - 0.0 + -20.0 note 2024-8-27: Created with FontForge (http://fontforge.org) openTypeHeadCreated @@ -43,13 +43,12 @@ https://github.com/mitradranirban openTypeNameLicense Copyright 2024 The Samaano Project Authors (https://github.com/mitradranirban/samaano-fonts) - This Font Software is licensed under the SIL Open Font License, Version 1.1. -This license is available with a FAQ at: http://scripts.sil.org/OFL +This license is available with a FAQ at: https://openfontlicence.org openTypeNameLicenseURL - http://scripts.sil.org/OFL + https://openfontlicense.org/ openTypeNameManufacturer Dr Anirban Mitra openTypeNameManufacturerURL @@ -95,7 +94,7 @@ This license is available with a FAQ at: http://scripts.sil.org/OFL openTypeOS2WinAscent 2476 openTypeOS2WinDescent - 958 + 978 openTypeVheaVertTypoLineGap 0 postscriptFontName @@ -103,7 +102,7 @@ This license is available with a FAQ at: http://scripts.sil.org/OFL postscriptFullName Samaano Wide Bold Slanted postscriptSlantAngle - 0.0 + -20.0 postscriptUnderlinePosition 0.0 postscriptUnderlineThickness diff --git a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/T_bar.glif b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/T_bar.glif deleted file mode 100644 index 2a528dc1b..000000000 --- a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/T_bar.glif +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/acutecomb.glif b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/acutecomb.glif index 68de27bbd..ecef87423 100644 --- a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/acutecomb.glif +++ b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/acutecomb.glif @@ -3,10 +3,10 @@ - - - - + + + + diff --git a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/contents.plist b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/contents.plist index d8ed1f745..cb08942a7 100644 --- a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/contents.plist +++ b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/contents.plist @@ -180,8 +180,6 @@ S_circumflex.glif T T_.glif - Tbar - T_bar.glif Tcaron T_caron.glif Thorn @@ -456,8 +454,6 @@ jcircumflex.glif k k.glif - kgreenlandic - kgreenlandic.glif l l.glif lacute @@ -486,8 +482,6 @@ n.glif nacute nacute.glif - napostrophe - napostrophe.glif ncaron ncaron.glif nine @@ -608,8 +602,6 @@ sterling.glif t t.glif - tbar - tbar.glif tcaron tcaron.glif thorn @@ -1012,8 +1004,6 @@ uni0930_uni0941.blws.glif uni0930_uni0942.blws uni0930_uni0942.blws.glif - uni0930_uni094D.abvs - uni0930_uni094D_.abvs.glif uni0930_uni094D.blwf uni0930_uni094D_.blwf.glif uni0930_uni094D.half @@ -1022,8 +1012,6 @@ uni0930_uni094D_.haln.glif uni0930_uni094D.rphf uni0930_uni094D_.rphf.glif - uni0930_uni094D.vatu - uni0930_uni094D_.vatu.glif uni0931 uni0931.glif uni0931_uni0930_uni094D.vatu diff --git a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/dotbelowcomb.glif b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/dotbelowcomb.glif index e7d08018a..837f72eff 100644 --- a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/dotbelowcomb.glif +++ b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/dotbelowcomb.glif @@ -3,10 +3,10 @@ - - - - + + + + diff --git a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/gravecomb.glif b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/gravecomb.glif index 28bdac3a6..8f00b839d 100644 --- a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/gravecomb.glif +++ b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/gravecomb.glif @@ -3,10 +3,10 @@ - - - - + + + + diff --git a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/hookabovecomb.glif b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/hookabovecomb.glif index 1fb6964b2..b6ac4bc02 100644 --- a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/hookabovecomb.glif +++ b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/hookabovecomb.glif @@ -3,28 +3,28 @@ - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/kgreenlandic.glif b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/kgreenlandic.glif deleted file mode 100644 index f612e24c0..000000000 --- a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/kgreenlandic.glif +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/napostrophe.glif b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/napostrophe.glif deleted file mode 100644 index 3c95ec12f..000000000 --- a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/napostrophe.glif +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/tbar.glif b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/tbar.glif deleted file mode 100644 index 105e8d632..000000000 --- a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/tbar.glif +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/tildecomb.glif b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/tildecomb.glif index 3f7fa1620..9b0cb392f 100644 --- a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/tildecomb.glif +++ b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/tildecomb.glif @@ -3,22 +3,22 @@ - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0302.glif b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0302.glif index 4043f5d69..18d201302 100644 --- a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0302.glif +++ b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0302.glif @@ -3,16 +3,16 @@ - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0304.glif b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0304.glif index fb6b8a124..a35b7cbbc 100644 --- a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0304.glif +++ b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0304.glif @@ -3,10 +3,10 @@ - - - - + + + + diff --git a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0305.glif b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0305.glif index 14f8b8c38..96286f9ae 100644 --- a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0305.glif +++ b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0305.glif @@ -3,10 +3,10 @@ - - - - + + + + diff --git a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0306.glif b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0306.glif index fb8d0b578..0391ae250 100644 --- a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0306.glif +++ b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0306.glif @@ -3,22 +3,22 @@ - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0307.glif b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0307.glif index 3d03e6ba3..108e25fb9 100644 --- a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0307.glif +++ b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0307.glif @@ -3,10 +3,10 @@ - - - - + + + + diff --git a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0308.glif b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0308.glif index a7e6bda0a..8365b39c5 100644 --- a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0308.glif +++ b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0308.glif @@ -3,16 +3,16 @@ - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni030A_.glif b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni030A_.glif index 95181dd41..d40004346 100644 --- a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni030A_.glif +++ b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni030A_.glif @@ -3,16 +3,16 @@ - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni030B_.glif b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni030B_.glif index 99f596865..1abebe35d 100644 --- a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni030B_.glif +++ b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni030B_.glif @@ -2,6 +2,6 @@ - + diff --git a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni030C_.glif b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni030C_.glif index 69a646798..db6c16129 100644 --- a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni030C_.glif +++ b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni030C_.glif @@ -3,16 +3,16 @@ - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0326.glif b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0326.glif index 9387c6d36..11d9d6674 100644 --- a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0326.glif +++ b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0326.glif @@ -3,16 +3,16 @@ - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0327.glif b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0327.glif index 21acdf9bf..81897abfb 100644 --- a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0327.glif +++ b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0327.glif @@ -3,28 +3,28 @@ - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0328.glif b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0328.glif index f5ef0c27e..bb2c6186a 100644 --- a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0328.glif +++ b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0328.glif @@ -3,22 +3,22 @@ - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0331.glif b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0331.glif index 04fbdb8f0..3a8e14fde 100644 --- a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0331.glif +++ b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0331.glif @@ -1,13 +1,12 @@ - - - - - + + + + diff --git a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0930_uni094D_.abvs.glif b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0930_uni094D_.abvs.glif deleted file mode 100644 index 230543bb0..000000000 --- a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0930_uni094D_.abvs.glif +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0930_uni094D_.vatu.glif b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0930_uni094D_.vatu.glif deleted file mode 100644 index 79b1713d7..000000000 --- a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0930_uni094D_.vatu.glif +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni093A_.glif b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni093A_.glif index c2660ade2..a5c95b6da 100644 --- a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni093A_.glif +++ b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni093A_.glif @@ -1,13 +1,12 @@ - - - - - + + + + diff --git a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni093C_.glif b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni093C_.glif index 988f02333..0f12ec0a7 100644 --- a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni093C_.glif +++ b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni093C_.glif @@ -1,6 +1,5 @@ - diff --git a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0951.glif b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0951.glif index fbd943537..45b2ee6a4 100644 --- a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0951.glif +++ b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0951.glif @@ -3,10 +3,10 @@ - - - - + + + + diff --git a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0952.glif b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0952.glif index 1ec101840..5d0e86a1f 100644 --- a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0952.glif +++ b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0952.glif @@ -3,10 +3,10 @@ - - - - + + + + diff --git a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0953.glif b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0953.glif index d16757307..2f489294a 100644 --- a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0953.glif +++ b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0953.glif @@ -3,10 +3,10 @@ - - - - + + + + diff --git a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0954.glif b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0954.glif index d2f945ef8..c09471034 100644 --- a/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0954.glif +++ b/sources/Samaano-Wide-Bold-Slanted.ufo/glyphs/uni0954.glif @@ -3,10 +3,10 @@ - - - - + + + + diff --git a/sources/Samaano-Wide-Bold-Slanted.ufo/lib.plist b/sources/Samaano-Wide-Bold-Slanted.ufo/lib.plist index 6b9268894..60857cf87 100644 --- a/sources/Samaano-Wide-Bold-Slanted.ufo/lib.plist +++ b/sources/Samaano-Wide-Bold-Slanted.ufo/lib.plist @@ -251,7 +251,6 @@ jcircumflex uni0136 uni0137 - kgreenlandic Lacute lacute uni013B @@ -268,7 +267,6 @@ uni0146 Ncaron ncaron - napostrophe Eng eng Omacron @@ -297,8 +295,6 @@ uni0163 Tcaron tcaron - Tbar - tbar Utilde utilde Umacron @@ -651,12 +647,10 @@ uni0930_uni0930_uni094D.vatu uni0930_uni0941.blws uni0930_uni0942.blws - uni0930_uni094D.abvs uni0930_uni094D.blwf uni0930_uni094D.half uni0930_uni094D.haln uni0930_uni094D.rphf - uni0930_uni094D.vatu uni0931_uni0930_uni094D.vatu uni0931_uni094D.haln uni0932_uni0930_uni094D.vatu @@ -905,8 +899,6 @@ base T base - Tbar - base Tcaron base Thorn @@ -1181,8 +1173,6 @@ base k base - kgreenlandic - base l base lacute @@ -1211,8 +1201,6 @@ base nacute base - napostrophe - base ncaron base nine @@ -1333,8 +1321,6 @@ base t base - tbar - base tcaron base thorn @@ -1737,8 +1723,6 @@ base uni0930_uni0942.blws base - uni0930_uni094D.abvs - base uni0930_uni094D.blwf base uni0930_uni094D.half @@ -1747,8 +1731,6 @@ base uni0930_uni094D.rphf base - uni0930_uni094D.vatu - base uni0931 base uni0931_uni0930_uni094D.vatu diff --git a/sources/Samaano-Wide-Bold.sfd b/sources/Samaano-Wide-Bold.sfd index a8c81cb42..6e418dca9 100644 --- a/sources/Samaano-Wide-Bold.sfd +++ b/sources/Samaano-Wide-Bold.sfd @@ -23,7 +23,7 @@ OS2Version: 0 OS2_WeightWidthSlopeOnly: 0 OS2_UseTypoMetrics: 0 CreationTime: 1729163604 -ModificationTime: 1729264811 +ModificationTime: 1729498410 PfmFamily: 49 TTFWeight: 700 TTFWidth: 9 @@ -37,7 +37,7 @@ OS2TypoDOffset: 0 OS2TypoLinegap: 0 OS2WinAscent: 2476 OS2WinAOffset: 0 -OS2WinDescent: 958 +OS2WinDescent: 978 OS2WinDOffset: 0 HheadAscent: 2457 HheadAOffset: 0 @@ -4349,7 +4349,7 @@ NameList: AGL For New Fonts DisplaySize: -96 AntiAlias: 1 FitToEm: 1 -WinInfo: 377 13 5 +WinInfo: 598 13 5 BeginPrivate: 0 EndPrivate Grid @@ -4359,7 +4359,7 @@ Grid 2048 1024 l 1024 EndSplineSet AnchorClass2: "blwm" "'blwm' Below Base Mark in Devanagari2 lookup 2-1" "abvm" "'abvm' Above Base Mark in Devanagari2 lookup 1-1" "base" "markMarkPositioninglookup0 subtable" "top" "markMarkPositioninglookup0 subtable" "base""" "top""" -BeginChars: 65711 718 +BeginChars: 65711 716 StartChar: .notdef Encoding: 0 0 0 @@ -4475,7 +4475,7 @@ GlifName: A_acute Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 20 990 2 @@ -4488,7 +4488,7 @@ GlifName: A_breve Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 346 774 N 1 0 0 1 -1 190 2 @@ -4501,7 +4501,7 @@ GlifName: A_circumflex Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 344 770 N 1 0 0 1 -1 -119 2 @@ -4514,7 +4514,7 @@ GlifName: A_dieresis Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 348 776 N 1 0 0 1 -1 134 2 @@ -4527,7 +4527,7 @@ GlifName: A_grave Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 201 768 N 1 0 0 1 -16 999 2 @@ -4540,7 +4540,7 @@ GlifName: A_macron Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 345 772 N 1 0 0 1 -1 118 2 @@ -4553,7 +4553,7 @@ GlifName: A_ogonek Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 354 808 N 1 0 0 1 757 0 2 @@ -4566,7 +4566,7 @@ GlifName: A_ring Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 349 778 N 0.972096 0 0 1 26 105 2 @@ -4579,7 +4579,7 @@ GlifName: A_tilde Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 304 771 N 1 0 0 1 -1 -185 2 @@ -4680,7 +4680,7 @@ GlifName: C_acute Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 14 958 2 @@ -4693,7 +4693,7 @@ GlifName: C_caron Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 351 780 N 1 0 0 1 -43 250 2 @@ -4706,7 +4706,7 @@ GlifName: C_cedilla Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 353 807 N 1 0 0 1 798 -183 2 @@ -4719,7 +4719,7 @@ GlifName: C_circumflex Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 344 770 N 1 0 0 1 50 -297 2 @@ -4732,7 +4732,7 @@ GlifName: C_dotaccent Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 347 775 N 1 0 0 1 49 10 2 @@ -4785,7 +4785,7 @@ GlifName: D_caron Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 351 780 N 1 0 0 1 -140 209 2 @@ -4877,7 +4877,7 @@ GlifName: E_acute Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 97 958 2 @@ -4890,7 +4890,7 @@ GlifName: E_breve Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 346 774 N 1 0 0 1 84 158 2 @@ -4903,7 +4903,7 @@ GlifName: E_caron Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 351 780 N 1 0 0 1 12 271 2 @@ -4916,7 +4916,7 @@ GlifName: E_circumflex Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 344 770 N 1 0 0 1 28 -322 2 @@ -4929,7 +4929,7 @@ GlifName: E_dieresis Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 348 776 N 1 0 0 1 -50 134 2 @@ -4942,7 +4942,7 @@ GlifName: E_dotaccent Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 347 775 N 1 0 0 1 -108 25 2 @@ -4955,7 +4955,7 @@ GlifName: E_grave Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 201 768 N 1 0 0 1 -123 991 2 @@ -4968,7 +4968,7 @@ GlifName: E_macron Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 345 772 N 1 0 0 1 -108 110 2 @@ -5014,7 +5014,7 @@ GlifName: E_ogonek Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 354 808 N 1.01937 0 0 1 704 15 2 @@ -5173,7 +5173,7 @@ GlifName: G_breve Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 346 774 N 1 0 0 1 -18 189 2 @@ -5186,7 +5186,7 @@ GlifName: G_circumflex Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 344 770 N 1 0 0 1 -18 -291 2 @@ -5199,7 +5199,7 @@ GlifName: G_dotaccent Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 347 775 N 1 0 0 1 -18 32 2 @@ -5275,7 +5275,7 @@ GlifName: H_circumflex Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 344 770 N 1 0 0 1 0 -298 2 @@ -5332,7 +5332,7 @@ GlifName: I_acute Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 14 982 2 @@ -5345,7 +5345,7 @@ GlifName: I_breve Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 346 774 N 1 0 0 1 -8 182 2 @@ -5358,7 +5358,7 @@ GlifName: I_circumflex Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 344 770 N 1 0 0 1 -8 -298 2 @@ -5371,7 +5371,7 @@ GlifName: I_dieresis Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 348 776 N 1 0 0 1 64 165 2 @@ -5384,7 +5384,7 @@ GlifName: I_dotaccent Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 347 775 N 1 0 0 1 -8 25 2 @@ -5397,7 +5397,7 @@ GlifName: I_grave Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 201 768 N 1 0 0 1 -22 991 2 @@ -5410,7 +5410,7 @@ GlifName: I_macron Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 345 772 N 1 0 0 1 -8 110 2 @@ -5423,7 +5423,7 @@ GlifName: I_ogonek Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 354 808 N 1 0 0 1 0 20 2 @@ -5436,7 +5436,7 @@ GlifName: I_tilde Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 304 771 N 1 0 0 1 -8 -193 2 @@ -5479,7 +5479,7 @@ GlifName: J_circumflex Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 344 770 N 1 0 0 1 788 -298 2 @@ -5545,7 +5545,7 @@ GlifName: L_acute Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 -786 976 2 @@ -5691,7 +5691,7 @@ GlifName: N_acute Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 -68 992 2 @@ -5704,7 +5704,7 @@ GlifName: N_caron Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 351 780 N 1 0 0 1 -90 129 2 @@ -5717,7 +5717,7 @@ GlifName: N_tilde Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 304 771 N 1 0 0 1 -10 -227 2 @@ -5803,7 +5803,7 @@ GlifName: O_acute Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 28 960 2 @@ -5816,7 +5816,7 @@ GlifName: O_breve Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 346 774 N 1 0 0 1 26 154 2 @@ -5829,7 +5829,7 @@ GlifName: O_circumflex Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 344 770 N 1 0 0 1 26 -298 2 @@ -5842,7 +5842,7 @@ GlifName: O_dieresis Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 348 776 N 1 0 0 1 26 155 2 @@ -5855,7 +5855,7 @@ GlifName: O_grave Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 201 768 N 1 0 0 1 11 991 2 @@ -5868,7 +5868,7 @@ GlifName: O_hungarumlaut Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 350 779 N 1 0 0 1 26 336 2 @@ -5881,7 +5881,7 @@ GlifName: O_macron Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 345 772 N 1 0 0 1 26 110 2 @@ -5932,7 +5932,7 @@ GlifName: O_tilde Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 304 771 N 1 0 0 1 26 -193 2 @@ -6056,7 +6056,7 @@ GlifName: R_acute Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 20 982 2 @@ -6069,7 +6069,7 @@ GlifName: R_caron Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 351 780 N 1 0 0 1 -200 267 2 @@ -6122,7 +6122,7 @@ GlifName: S_acute Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 36 984 2 @@ -6135,7 +6135,7 @@ GlifName: S_caron Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 351 780 N 1 0 0 1 -96 277 2 @@ -6148,7 +6148,7 @@ GlifName: S_cedilla Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 353 807 N 1 0 0 1 142 -160 2 @@ -6161,7 +6161,7 @@ GlifName: S_circumflex Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 344 770 N 1 0 0 1 15 -309 2 @@ -6199,7 +6199,7 @@ GlifName: T_caron Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 351 780 N 1 0 0 1 -100 273 2 @@ -6275,7 +6275,7 @@ GlifName: U_acute Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 43 982 2 @@ -6288,7 +6288,7 @@ GlifName: U_breve Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 346 774 N 1 0 0 1 32 182 2 @@ -6301,7 +6301,7 @@ GlifName: U_circumflex Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 344 770 N 1 0 0 1 32 -298 2 @@ -6314,7 +6314,7 @@ GlifName: U_dieresis Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 348 776 N 1 0 0 1 32 225 2 @@ -6327,7 +6327,7 @@ GlifName: U_grave Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 201 768 N 1 0 0 1 18 991 2 @@ -6340,7 +6340,7 @@ GlifName: U_hungarumlaut Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 350 779 N 1 0 0 1 32 336 2 @@ -6353,7 +6353,7 @@ GlifName: U_macron Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 345 772 N 1 0 0 1 32 110 2 @@ -6366,7 +6366,7 @@ GlifName: U_ogonek Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 354 808 N 1 0 0 1 587 -2 2 @@ -6379,7 +6379,7 @@ GlifName: U_ring Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 349 778 N 1 0 0 1 32 124 2 @@ -6392,7 +6392,7 @@ GlifName: U_tilde Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 304 771 N 1 0 0 1 32 -193 2 @@ -6464,7 +6464,7 @@ GlifName: W_acute Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 50 868 2 @@ -6477,7 +6477,7 @@ GlifName: W_circumflex Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 344 770 N 1 0 0 1 -20 -292 2 @@ -6490,7 +6490,7 @@ GlifName: W_dieresis Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 348 776 N 1.0226 0 0 0.910891 -47 257 2 @@ -6503,7 +6503,7 @@ GlifName: W_grave Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 201 768 N 1 0 0 1 70 809 2 @@ -6574,7 +6574,7 @@ GlifName: Y_acute Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 -64 990 2 @@ -6587,7 +6587,7 @@ GlifName: Y_circumflex Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 344 770 N 1 0 0 1 -86 -290 2 @@ -6600,7 +6600,7 @@ GlifName: Y_dieresis Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 348 776 N 1 0 0 1 -26 151 2 @@ -6613,7 +6613,7 @@ GlifName: Y_grave Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 201 768 N 1 0 0 1 -8 931 2 @@ -6656,7 +6656,7 @@ GlifName: Z_acute Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 128 990 2 @@ -6669,7 +6669,7 @@ GlifName: Z_caron Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 351 780 N 1 0 0 1 117 266 2 @@ -6682,7 +6682,7 @@ GlifName: Z_dotaccent Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 347 775 N 1 0 0 1 117 133 2 @@ -6735,7 +6735,7 @@ GlifName: aacute Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 19 467 2 @@ -6748,7 +6748,7 @@ GlifName: abreve Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 346 774 N 1 0 0 1 -2 -333 2 @@ -6761,7 +6761,7 @@ GlifName: acircumflex Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 344 770 N 1 0 0 1 -2 -813 2 @@ -6792,6 +6792,7 @@ GlifName: acutecomb Width: 0 VWidth: 0 GlyphClass: 2 +Flags: HW AnchorPoint: "top" 466 1888 mark 0 AnchorPoint: "top" 922 640 mark 0 LayerCount: 2 @@ -6811,7 +6812,7 @@ GlifName: adieresis Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 348 776 N 1 0 0 1 -2 -339 2 @@ -6867,7 +6868,7 @@ GlifName: agrave Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 201 768 N 1 0 0 1 -17 476 2 @@ -6880,7 +6881,7 @@ GlifName: amacron Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 345 772 N 1 0 0 1 -2 -405 2 @@ -6936,7 +6937,7 @@ GlifName: aogonek Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 354 808 N 1 0 0 1 -70 12 2 @@ -6949,7 +6950,7 @@ GlifName: aring Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 349 778 N 1 0 0 1 -2 -391 2 @@ -7099,7 +7100,7 @@ GlifName: atilde Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 304 771 N 1 0 0 1 -2 -708 2 @@ -7422,7 +7423,7 @@ GlifName: cacute Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 74 469 2 @@ -7458,7 +7459,7 @@ GlifName: ccaron Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 351 780 N 1 0 0 1 13 -194 2 @@ -7471,7 +7472,7 @@ GlifName: ccedilla Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 353 807 N 1 0 0 1 596 -211 2 @@ -7484,7 +7485,7 @@ GlifName: ccircumflex Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 344 770 N 1 0 0 1 53 -811 2 @@ -7497,7 +7498,7 @@ GlifName: cdotaccent Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 347 775 N 1 0 0 1 53 -488 2 @@ -8042,6 +8043,7 @@ GlifName: dotbelowcomb Width: 0 VWidth: 0 GlyphClass: 2 +Flags: HW AnchorPoint: "base" 498 -187 mark 0 AnchorPoint: "base" 498 -187 mark 0 LayerCount: 2 @@ -8133,7 +8135,7 @@ GlifName: eacute Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 20 466 2 @@ -8146,7 +8148,7 @@ GlifName: ebreve Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 346 774 N 1 0 0 1 -2 -334 2 @@ -8159,7 +8161,7 @@ GlifName: ecaron Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 351 780 N 1 0 0 1 -2 -297 2 @@ -8172,7 +8174,7 @@ GlifName: ecircumflex Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 344 770 N 1 0 0 1 -2 -814 2 @@ -8185,7 +8187,7 @@ GlifName: edieresis Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 348 776 N 1 0 0 1 -2 -318 2 @@ -8198,7 +8200,7 @@ GlifName: edotaccent Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 347 775 N 1 0 0 1 -2 -491 2 @@ -8211,7 +8213,7 @@ GlifName: egrave Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 201 768 N 1 0 0 1 -16 475 2 @@ -8280,7 +8282,7 @@ GlifName: emacron Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 345 772 N 1 0 0 1 -2 -406 2 @@ -8362,7 +8364,7 @@ GlifName: eogonek Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 354 808 N 1 0 0 1 352 -37 2 @@ -8598,7 +8600,7 @@ GlifName: gbreve Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 346 774 N 1 0 0 1 3 -334 2 @@ -8611,7 +8613,7 @@ GlifName: gcircumflex Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 344 770 N 1 0 0 1 3 -814 2 @@ -8624,7 +8626,7 @@ GlifName: gdotaccent Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 347 775 N 1 0 0 1 3 -491 2 @@ -8726,6 +8728,7 @@ GlifName: gravecomb Width: 0 VWidth: 0 GlyphClass: 2 +Flags: HW AnchorPoint: "top" 592 1881 mark 0 AnchorPoint: "top" 1128 577 mark 0 LayerCount: 2 @@ -8943,7 +8946,7 @@ GlifName: hcircumflex Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 344 770 N 1 0 0 1 0 -297 2 @@ -9031,7 +9034,7 @@ GlifName: iacute Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 -338 466 2 @@ -9044,7 +9047,7 @@ GlifName: ibreve Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 346 774 N 1 0 0 1 -360 -334 2 @@ -9057,7 +9060,7 @@ GlifName: icircumflex Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 344 770 N 1 0 0 1 -360 -814 2 @@ -9070,7 +9073,7 @@ GlifName: idieresis Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 348 776 N 1 0 0 1 -360 -307 2 @@ -9083,7 +9086,7 @@ GlifName: igrave Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 201 768 N 1 0 0 1 -374 475 2 @@ -9109,7 +9112,7 @@ GlifName: imacron Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 345 772 N 1 0 0 1 -360 -406 2 @@ -9122,7 +9125,7 @@ GlifName: iogonek Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 354 808 N 1 0 0 1 0 20 2 @@ -9135,7 +9138,7 @@ GlifName: itilde Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 304 771 N 1 0 0 1 -360 -709 2 @@ -9181,7 +9184,7 @@ GlifName: jcircumflex Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 344 770 N 1 0 0 1 715 -814 2 @@ -9252,7 +9255,7 @@ GlifName: lacute Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 -1 960 2 @@ -9534,7 +9537,7 @@ GlifName: nacute Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 22 469 2 @@ -9547,7 +9550,7 @@ GlifName: ncaron Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 351 780 N 1 0 0 1 0 -194 2 @@ -9588,7 +9591,7 @@ GlifName: ntilde Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 304 771 N 1 0 0 1 0 -706 2 @@ -9669,7 +9672,7 @@ GlifName: oacute Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 22 466 2 @@ -9682,7 +9685,7 @@ GlifName: obreve Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 346 774 N 1 0 0 1 1 -334 2 @@ -9695,7 +9698,7 @@ GlifName: ocircumflex Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 344 770 N 1 0 0 1 1 -814 2 @@ -9708,7 +9711,7 @@ GlifName: odieresis Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 348 776 N 1 0 0 1 1 -291 2 @@ -9792,7 +9795,7 @@ GlifName: ograve Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 201 768 N 1 0 0 1 -14 475 2 @@ -9805,7 +9808,7 @@ GlifName: ohungarumlaut Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 350 779 N 1 0 0 1 1 -180 2 @@ -9818,7 +9821,7 @@ GlifName: omacron Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 345 772 N 1 0 0 1 1 -406 2 @@ -10053,7 +10056,7 @@ GlifName: otilde Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 304 771 N 1 0 0 1 1 -709 2 @@ -10770,7 +10773,7 @@ GlifName: racute Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 22 466 2 @@ -10783,7 +10786,7 @@ GlifName: rcaron Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 351 780 N 1 0 0 1 -50 -197 2 @@ -10917,7 +10920,7 @@ GlifName: sacute Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 21 466 2 @@ -10930,7 +10933,7 @@ GlifName: scaron Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 351 780 N 1 0 0 1 0 -208 2 @@ -10943,7 +10946,7 @@ GlifName: scedilla Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 353 807 N 1 0 0 1 748 -160 2 @@ -10956,7 +10959,7 @@ GlifName: scircumflex Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 344 770 N 1 0 0 1 0 -814 2 @@ -11361,6 +11364,7 @@ GlifName: tildecomb Width: 0 VWidth: 0 GlyphClass: 2 +Flags: HW AnchorPoint: "top" 492 1855 mark 0 AnchorPoint: "top" 1068 1799 mark 0 LayerCount: 2 @@ -11459,7 +11463,7 @@ GlifName: uacute Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 -157 468 2 @@ -11472,7 +11476,7 @@ GlifName: ubreve Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 346 774 N 1 0 0 1 -142 -332 2 @@ -11485,7 +11489,7 @@ GlifName: ucircumflex Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 344 770 N 1 0 0 1 -142 -812 2 @@ -11498,7 +11502,7 @@ GlifName: udieresis Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 348 776 N 1 0 0 1 -142 -289 2 @@ -11511,7 +11515,7 @@ GlifName: ugrave Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 201 768 N 1 0 0 1 -157 477 2 @@ -11524,7 +11528,7 @@ GlifName: uhungarumlaut Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 350 779 N 1 0 0 1 -142 -178 2 @@ -11537,7 +11541,7 @@ GlifName: umacron Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 345 772 N 1 0 0 1 -142 -404 2 @@ -11653,7 +11657,7 @@ GlifName: uni0122 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 352 806 N 1 0 0 1 0 -121 2 @@ -11709,7 +11713,7 @@ GlifName: uni0136 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 352 806 N 1 0 0 1 -150 4 2 @@ -11722,7 +11726,7 @@ GlifName: uni0137 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 352 806 N 1 0 0 1 -126 -4 2 @@ -11735,7 +11739,7 @@ GlifName: uni013B_ Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 352 806 N 1 0 0 1 0 -118 2 @@ -11748,7 +11752,7 @@ GlifName: uni013C_ Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 352 806 N 1 0 0 1 0 -112 2 @@ -11761,7 +11765,7 @@ GlifName: uni0145 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 352 806 N 1 0 0 1 3 -2 2 @@ -11774,7 +11778,7 @@ GlifName: uni0146 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 352 806 N 1 0 0 1 14 3 2 @@ -11787,7 +11791,7 @@ GlifName: uni0156 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 352 806 N 1 0 0 1 -32 1 2 @@ -11800,7 +11804,7 @@ GlifName: uni0157 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 352 806 N 1 0 0 1 -52 -123 2 @@ -11813,7 +11817,7 @@ GlifName: uni0162 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 353 807 N 1 0 0 1 146 -154 2 @@ -11826,7 +11830,7 @@ GlifName: uni0163 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 353 807 N 1 0 0 1 498 -160 2 @@ -11872,7 +11876,7 @@ GlifName: uni0218 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 352 806 N 1 0 0 1 -4 -121 2 @@ -11885,7 +11889,7 @@ GlifName: uni0219 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 352 806 N 1 0 0 1 202 -121 2 @@ -11898,7 +11902,7 @@ GlifName: uni021A_ Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 352 806 N 1 0 0 1 0 -115 2 @@ -11911,7 +11915,7 @@ GlifName: uni021B_ Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 352 806 N 1 0 0 1 40 -113 2 @@ -12044,6 +12048,7 @@ GlifName: uni0302 Width: 0 VWidth: 0 GlyphClass: 2 +Flags: HW AnchorPoint: "top" 506 1427 mark 0 AnchorPoint: "top" 1007 1881 mark 0 LayerCount: 2 @@ -12068,6 +12073,7 @@ GlifName: uni0304 Width: 0 VWidth: 0 GlyphClass: 2 +Flags: HW AnchorPoint: "top" 488 1532 mark 0 AnchorPoint: "top" 1000 1476 mark 0 LayerCount: 2 @@ -12087,6 +12093,7 @@ GlifName: uni0306 Width: 0 VWidth: 0 GlyphClass: 2 +Flags: HW AnchorPoint: "top" 496 1440 mark 0 AnchorPoint: "top" 1024 1360 mark 0 LayerCount: 2 @@ -12116,6 +12123,7 @@ GlifName: uni0307 Width: 0 VWidth: 0 GlyphClass: 2 +Flags: HW AnchorPoint: "top" 508 1542 mark 0 AnchorPoint: "top" 988 1524 mark 0 LayerCount: 2 @@ -12135,6 +12143,7 @@ GlifName: uni0308 Width: 0 VWidth: 0 GlyphClass: 2 +Flags: HW AnchorPoint: "top" 516 1592 mark 0 AnchorPoint: "top" 972 1360 mark 0 LayerCount: 2 @@ -12159,6 +12168,7 @@ GlifName: uni030A_ Width: 0 VWidth: 0 GlyphClass: 2 +Flags: HW AnchorPoint: "top" 541 1536 mark 0 AnchorPoint: "top" 1037 1488 mark 0 LayerCount: 2 @@ -12183,6 +12193,7 @@ GlifName: uni030B_ Width: 0 VWidth: 0 GlyphClass: 2 +Flags: HW AnchorPoint: "top" 493 1280 mark 0 AnchorPoint: "top" 1021 1248 mark 0 LayerCount: 2 @@ -12196,6 +12207,7 @@ GlifName: uni030C_ Width: 0 VWidth: 0 GlyphClass: 2 +Flags: HW AnchorPoint: "top" 504 1315 mark 0 AnchorPoint: "top" 1120 1267 mark 0 LayerCount: 2 @@ -12220,6 +12232,7 @@ GlifName: uni0326 Width: 0 VWidth: 0 GlyphClass: 2 +Flags: HW AnchorPoint: "base" 534 -5 mark 0 AnchorPoint: "base" 534 -5 mark 0 LayerCount: 2 @@ -12244,6 +12257,7 @@ GlifName: uni0327 Width: 0 VWidth: 0 GlyphClass: 2 +Flags: HW AnchorPoint: "base" 654 191 mark 0 AnchorPoint: "base" 654 191 mark 0 LayerCount: 2 @@ -12278,6 +12292,7 @@ GlifName: uni0328 Width: 0 VWidth: 0 GlyphClass: 2 +Flags: HW AnchorPoint: "base" 990 23 mark 0 AnchorPoint: "base" 990 23 mark 0 LayerCount: 2 @@ -12307,7 +12322,7 @@ GlifName: uni0331 Width: 0 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW AnchorPoint: "base" 510 -163 mark 0 AnchorPoint: "base" 510 -163 mark 0 LayerCount: 2 @@ -19091,36 +19106,8 @@ EndSplineSet Ligature2: "blwsBelowBaseSubstitutionsinDevanagarilookup12 subtable" uni0930 uni0942 EndChar -StartChar: uni0930_uni094D.abvs -Encoding: 65628 -1 496 -GlifName: uni0930_uni094D_.abvs -Width: 2048 -VWidth: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet --16 1548 m 257 - 182 1548 l 257 - 182 1871 l 257 - -16 1871 l 257 - -16 1548 l 257 -244 2142 m 257 - 244 1942 l 257 - 572 1942 l 257 - 572 2142 l 257 - 244 2142 l 257 -244 2142 m 257 - -17 1869 l 257 - 181 1869 l 257 - 244 1942 l 257 - 244 2142 l 257 -EndSplineSet -EndChar - StartChar: uni0930_uni094D.blwf -Encoding: 65629 -1 497 +Encoding: 65629 -1 496 GlifName: uni0930_uni094D_.blwf Width: 2048 VWidth: 0 @@ -19149,7 +19136,7 @@ Ligature2: "blwfBelowBaseFormsinDevanagarilookup0 subtable" uni094D uni0930 EndChar StartChar: uni0930_uni094D.half -Encoding: 65630 -1 498 +Encoding: 65630 -1 497 GlifName: uni0930_uni094D_.half Width: 2048 VWidth: 0 @@ -19184,7 +19171,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0930 uni094D EndChar StartChar: uni0930_uni094D.haln -Encoding: 65631 -1 499 +Encoding: 65631 -1 498 GlifName: uni0930_uni094D_.haln Width: 2048 VWidth: 0 @@ -19228,7 +19215,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0930 uni094D EndChar StartChar: uni0930_uni094D.rphf -Encoding: 65632 -1 500 +Encoding: 65632 -1 499 GlifName: uni0930_uni094D_.rphf Width: 2048 VWidth: 0 @@ -19261,26 +19248,8 @@ EndSplineSet Ligature2: "rphfRephForminDevanagarilookup0 subtable" uni0930 uni094D EndChar -StartChar: uni0930_uni094D.vatu -Encoding: 65633 -1 501 -GlifName: uni0930_uni094D_.vatu -Width: 2048 -VWidth: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -52 0 m 257 - 476 0 l 257 - 1778 215 l 257 - 1778 416 l 257 - 52 0 l 257 -EndSplineSet -EndChar - StartChar: uni0931 -Encoding: 2353 2353 502 +Encoding: 2353 2353 500 GlifName: uni0931 Width: 2048 VWidth: 0 @@ -19319,7 +19288,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0930 uni093C EndChar StartChar: uni0931_uni0930_uni094D.vatu -Encoding: 65634 -1 503 +Encoding: 65634 -1 501 GlifName: uni0931_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -19363,7 +19332,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0931 uni0930_uni09 EndChar StartChar: uni0931_uni094D.haln -Encoding: 65635 -1 504 +Encoding: 65635 -1 502 GlifName: uni0931_uni094D_.haln Width: 2048 VWidth: 0 @@ -19412,7 +19381,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0931 uni094D EndChar StartChar: uni0932 -Encoding: 2354 2354 505 +Encoding: 2354 2354 503 GlifName: uni0932 Width: 2048 VWidth: 0 @@ -19450,7 +19419,7 @@ EndSplineSet EndChar StartChar: uni0932_uni0930_uni094D.vatu -Encoding: 65636 -1 506 +Encoding: 65636 -1 504 GlifName: uni0932_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -19494,7 +19463,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0932 uni0930_uni09 EndChar StartChar: uni0932_uni094D.half -Encoding: 65637 -1 507 +Encoding: 65637 -1 505 GlifName: uni0932_uni094D_.half Width: 2048 VWidth: 0 @@ -19528,7 +19497,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0932 uni094D EndChar StartChar: uni0932_uni094D.haln -Encoding: 65638 -1 508 +Encoding: 65638 -1 506 GlifName: uni0932_uni094D_.haln Width: 2048 VWidth: 0 @@ -19577,7 +19546,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0932 uni094D EndChar StartChar: uni0933 -Encoding: 2355 2355 509 +Encoding: 2355 2355 507 GlifName: uni0933 Width: 2048 VWidth: 0 @@ -19620,7 +19589,7 @@ EndSplineSet EndChar StartChar: uni0933_uni0930_uni094D.vatu -Encoding: 65639 -1 510 +Encoding: 65639 -1 508 GlifName: uni0933_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -19674,7 +19643,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0933 uni0930_uni09 EndChar StartChar: uni0933_uni094D.half -Encoding: 65640 -1 511 +Encoding: 65640 -1 509 GlifName: uni0933_uni094D_.half Width: 2048 VWidth: 0 @@ -19718,7 +19687,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0933 uni094D EndChar StartChar: uni0933_uni094D.haln -Encoding: 65641 -1 512 +Encoding: 65641 -1 510 GlifName: uni0933_uni094D_.haln Width: 2048 VWidth: 0 @@ -19772,7 +19741,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0933 uni094D EndChar StartChar: uni0934 -Encoding: 2356 2356 513 +Encoding: 2356 2356 511 GlifName: uni0934 Width: 2048 VWidth: 0 @@ -19821,7 +19790,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0933 uni093C EndChar StartChar: uni0934_uni0930_uni094D.vatu -Encoding: 65642 -1 514 +Encoding: 65642 -1 512 GlifName: uni0934_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -19880,7 +19849,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0934 uni0930_uni09 EndChar StartChar: uni0934_uni094D.half -Encoding: 65643 -1 515 +Encoding: 65643 -1 513 GlifName: uni0934_uni094D_.half Width: 2048 VWidth: 0 @@ -19929,7 +19898,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0934 uni094D EndChar StartChar: uni0934_uni094D.haln -Encoding: 65644 -1 516 +Encoding: 65644 -1 514 GlifName: uni0934_uni094D_.haln Width: 2048 VWidth: 0 @@ -19988,7 +19957,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0934 uni094D EndChar StartChar: uni0935 -Encoding: 2357 2357 517 +Encoding: 2357 2357 515 GlifName: uni0935 Width: 2048 VWidth: 0 @@ -20026,7 +19995,7 @@ EndSplineSet EndChar StartChar: uni0935_uni0930_uni094D.vatu -Encoding: 65645 -1 518 +Encoding: 65645 -1 516 GlifName: uni0935_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -20070,7 +20039,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0935 uni0930_uni09 EndChar StartChar: uni0935_uni094D.half -Encoding: 65646 -1 519 +Encoding: 65646 -1 517 GlifName: uni0935_uni094D_.half Width: 2048 VWidth: 0 @@ -20104,7 +20073,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0935 uni094D EndChar StartChar: uni0935_uni094D.haln -Encoding: 65647 -1 520 +Encoding: 65647 -1 518 GlifName: uni0935_uni094D_.haln Width: 2048 VWidth: 0 @@ -20153,7 +20122,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0935 uni094D EndChar StartChar: uni0936 -Encoding: 2358 2358 521 +Encoding: 2358 2358 519 GlifName: uni0936 Width: 2048 VWidth: 0 @@ -20201,7 +20170,7 @@ EndSplineSet EndChar StartChar: uni0936_uni0930_uni094D.vatu -Encoding: 65648 -1 522 +Encoding: 65648 -1 520 GlifName: uni0936_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -20255,7 +20224,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0936 uni0930_uni09 EndChar StartChar: uni0936_uni094D.half -Encoding: 65649 -1 523 +Encoding: 65649 -1 521 GlifName: uni0936_uni094D_.half Width: 2048 VWidth: 0 @@ -20294,7 +20263,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0936 uni094D EndChar StartChar: uni0936_uni094D.haln -Encoding: 65650 -1 524 +Encoding: 65650 -1 522 GlifName: uni0936_uni094D_.haln Width: 2048 VWidth: 0 @@ -20353,7 +20322,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0936 uni094D EndChar StartChar: uni0937 -Encoding: 2359 2359 525 +Encoding: 2359 2359 523 GlifName: uni0937 Width: 2048 VWidth: 0 @@ -20391,7 +20360,7 @@ EndSplineSet EndChar StartChar: uni0937_uni0930_uni094D.vatu -Encoding: 65651 -1 526 +Encoding: 65651 -1 524 GlifName: uni0937_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -20435,7 +20404,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0937 uni0930_uni09 EndChar StartChar: uni0937_uni094D.half -Encoding: 65652 -1 527 +Encoding: 65652 -1 525 GlifName: uni0937_uni094D_.half Width: 2048 VWidth: 0 @@ -20469,7 +20438,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0937 uni094D EndChar StartChar: uni0937_uni094D.haln -Encoding: 65653 -1 528 +Encoding: 65653 -1 526 GlifName: uni0937_uni094D_.haln Width: 2048 VWidth: 0 @@ -20518,7 +20487,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0937 uni094D EndChar StartChar: uni0938 -Encoding: 2360 2360 529 +Encoding: 2360 2360 527 GlifName: uni0938 Width: 2048 VWidth: 0 @@ -20556,7 +20525,7 @@ EndSplineSet EndChar StartChar: uni0938_uni0930_uni094D.vatu -Encoding: 65654 -1 530 +Encoding: 65654 -1 528 GlifName: uni0938_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -20600,7 +20569,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0938 uni0930_uni09 EndChar StartChar: uni0938_uni094D.half -Encoding: 65655 -1 531 +Encoding: 65655 -1 529 GlifName: uni0938_uni094D_.half Width: 2048 VWidth: 0 @@ -20634,7 +20603,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0938 uni094D EndChar StartChar: uni0938_uni094D.haln -Encoding: 65656 -1 532 +Encoding: 65656 -1 530 GlifName: uni0938_uni094D_.haln Width: 2048 VWidth: 0 @@ -20683,7 +20652,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0938 uni094D EndChar StartChar: uni0939 -Encoding: 2361 2361 533 +Encoding: 2361 2361 531 GlifName: uni0939 Width: 2048 VWidth: 0 @@ -20736,7 +20705,7 @@ EndSplineSet EndChar StartChar: uni0939_uni0930_uni094D.vatu -Encoding: 65657 -1 534 +Encoding: 65657 -1 532 GlifName: uni0939_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -20795,7 +20764,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0939 uni0930_uni09 EndChar StartChar: uni0939_uni0943.blws -Encoding: 65658 -1 535 +Encoding: 65658 -1 533 GlifName: uni0939_uni0943.blws Width: 2048 VWidth: 0 @@ -20854,7 +20823,7 @@ Ligature2: "blwsBelowBaseSubstitutionsinDevanagarilookup12 subtable" uni0939 uni EndChar StartChar: uni0939_uni094D.half -Encoding: 65659 -1 536 +Encoding: 65659 -1 534 GlifName: uni0939_uni094D_.half Width: 2048 VWidth: 0 @@ -20903,7 +20872,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0939 uni094D EndChar StartChar: uni0939_uni094D.haln -Encoding: 65660 -1 537 +Encoding: 65660 -1 535 GlifName: uni0939_uni094D_.haln Width: 2048 VWidth: 0 @@ -20967,7 +20936,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0939 uni094D EndChar StartChar: uni0939_uni094D_uni092E.pres -Encoding: 65661 -1 538 +Encoding: 65661 -1 536 GlifName: uni0939_uni094D__uni092E_.pres Width: 2048 VWidth: 0 @@ -21041,7 +21010,7 @@ Ligature2: "presPreBaseSubstitutionsinDevanagarilookup0 subtable" uni0939_uni094 EndChar StartChar: uni093A -Encoding: 2362 2362 539 +Encoding: 2362 2362 537 GlifName: uni093A_ Width: 2048 VWidth: 0 @@ -21059,7 +21028,7 @@ EndSplineSet EndChar StartChar: uni093B -Encoding: 2363 2363 540 +Encoding: 2363 2363 538 GlifName: uni093B_ Width: 2048 VWidth: 0 @@ -21082,7 +21051,7 @@ EndSplineSet EndChar StartChar: uni093C -Encoding: 2364 2364 541 +Encoding: 2364 2364 539 GlifName: uni093C_ Width: 2048 VWidth: 0 @@ -21100,7 +21069,7 @@ EndSplineSet EndChar StartChar: uni093D -Encoding: 2365 2365 542 +Encoding: 2365 2365 540 GlifName: uni093D_ Width: 2048 VWidth: 0 @@ -21133,7 +21102,7 @@ EndSplineSet EndChar StartChar: uni093E -Encoding: 2366 2366 543 +Encoding: 2366 2366 541 GlifName: uni093E_ Width: 2048 VWidth: 0 @@ -21156,7 +21125,7 @@ EndSplineSet EndChar StartChar: uni093E_uni0930_uni094D.abvs -Encoding: 65662 -1 544 +Encoding: 65662 -1 542 GlifName: uni093E__uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -21195,7 +21164,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni093E uni0 EndChar StartChar: uni093F -Encoding: 2367 2367 545 +Encoding: 2367 2367 543 GlifName: uni093F_ Width: 2048 VWidth: 0 @@ -21228,7 +21197,7 @@ EndSplineSet EndChar StartChar: uni0940 -Encoding: 2368 2368 546 +Encoding: 2368 2368 544 GlifName: uni0940 Width: 2048 VWidth: 0 @@ -21261,7 +21230,7 @@ EndSplineSet EndChar StartChar: uni0940_uni0902.abvs -Encoding: 65663 -1 547 +Encoding: 65663 -1 545 GlifName: uni0940_uni0902.abvs Width: 2048 VWidth: 0 @@ -21300,7 +21269,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0940 uni0 EndChar StartChar: uni0940_uni0930_uni094D.abvs -Encoding: 65664 -1 548 +Encoding: 65664 -1 546 GlifName: uni0940_uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -21349,7 +21318,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0940 uni0 EndChar StartChar: uni0941 -Encoding: 2369 2369 549 +Encoding: 2369 2369 547 GlifName: uni0941 Width: 0 VWidth: 0 @@ -21383,7 +21352,7 @@ EndSplineSet EndChar StartChar: uni0942 -Encoding: 2370 2370 550 +Encoding: 2370 2370 548 GlifName: uni0942 Width: 0 VWidth: 0 @@ -21417,7 +21386,7 @@ EndSplineSet EndChar StartChar: uni0943 -Encoding: 2371 2371 551 +Encoding: 2371 2371 549 GlifName: uni0943 Width: 0 VWidth: 0 @@ -21446,7 +21415,7 @@ EndSplineSet EndChar StartChar: uni0944 -Encoding: 2372 2372 552 +Encoding: 2372 2372 550 GlifName: uni0944 Width: 0 VWidth: 0 @@ -21480,7 +21449,7 @@ EndSplineSet EndChar StartChar: uni0945 -Encoding: 2373 2373 553 +Encoding: 2373 2373 551 GlifName: uni0945 Width: 2048 VWidth: 0 @@ -21513,7 +21482,7 @@ EndSplineSet EndChar StartChar: uni0945_uni0902.abvs -Encoding: 65673 -1 554 +Encoding: 65673 -1 552 GlifName: uni0945_uni0902.abvs Width: 2048 VWidth: 0 @@ -21552,7 +21521,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0945 uni0 EndChar StartChar: uni0945_uni0930_uni094D.abvs -Encoding: 65674 -1 555 +Encoding: 65674 -1 553 GlifName: uni0945_uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -21601,7 +21570,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0945 uni0 EndChar StartChar: uni0946 -Encoding: 2374 2374 556 +Encoding: 2374 2374 554 GlifName: uni0946 Width: 2048 VWidth: 0 @@ -21634,7 +21603,7 @@ EndSplineSet EndChar StartChar: uni0946_uni0902.abvs -Encoding: 65675 -1 557 +Encoding: 65675 -1 555 GlifName: uni0946_uni0902.abvs Width: 2048 VWidth: 0 @@ -21673,7 +21642,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0946 uni0 EndChar StartChar: uni0946_uni0930_uni094D.abvs -Encoding: 65676 -1 558 +Encoding: 65676 -1 556 GlifName: uni0946_uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -21722,7 +21691,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0946 uni0 EndChar StartChar: uni0947 -Encoding: 2375 2375 559 +Encoding: 2375 2375 557 GlifName: uni0947 Width: 2048 VWidth: 0 @@ -21745,7 +21714,7 @@ EndSplineSet EndChar StartChar: uni0947_uni0902.abvs -Encoding: 65677 -1 560 +Encoding: 65677 -1 558 GlifName: uni0947_uni0902.abvs Width: 2048 VWidth: 0 @@ -21774,7 +21743,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0947 uni0 EndChar StartChar: uni0947_uni0930_uni094D.abvs -Encoding: 65678 -1 561 +Encoding: 65678 -1 559 GlifName: uni0947_uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -21813,7 +21782,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0947 uni0 EndChar StartChar: uni0948 -Encoding: 2376 2376 562 +Encoding: 2376 2376 560 GlifName: uni0948 Width: 2048 VWidth: 0 @@ -21841,7 +21810,7 @@ EndSplineSet EndChar StartChar: uni0948_uni0902.abvs -Encoding: 65679 -1 563 +Encoding: 65679 -1 561 GlifName: uni0948_uni0902.abvs Width: 2048 VWidth: 0 @@ -21875,7 +21844,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0948 uni0 EndChar StartChar: uni0948_uni0930_uni094D.abvs -Encoding: 65680 -1 564 +Encoding: 65680 -1 562 GlifName: uni0948_uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -21919,7 +21888,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0948 uni0 EndChar StartChar: uni0949 -Encoding: 2377 2377 565 +Encoding: 2377 2377 563 GlifName: uni0949 Width: 2048 VWidth: 0 @@ -21957,7 +21926,7 @@ EndSplineSet EndChar StartChar: uni0949_uni0902.abvs -Encoding: 65681 -1 566 +Encoding: 65681 -1 564 GlifName: uni0949_uni0902.abvs Width: 2048 VWidth: 0 @@ -22001,7 +21970,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0949 uni0 EndChar StartChar: uni0949_uni0930_uni094D.abvs -Encoding: 65682 -1 567 +Encoding: 65682 -1 565 GlifName: uni0949_uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -22055,7 +22024,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0949 uni0 EndChar StartChar: uni094A -Encoding: 2378 2378 568 +Encoding: 2378 2378 566 GlifName: uni094A_ Width: 2048 VWidth: 0 @@ -22093,7 +22062,7 @@ EndSplineSet EndChar StartChar: uni094A_uni0902.abvs -Encoding: 65683 -1 569 +Encoding: 65683 -1 567 GlifName: uni094A__uni0902.abvs Width: 2048 VWidth: 0 @@ -22137,7 +22106,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094A uni0 EndChar StartChar: uni094A_uni0930_uni094D.abvs -Encoding: 65684 -1 570 +Encoding: 65684 -1 568 GlifName: uni094A__uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -22191,7 +22160,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094A uni0 EndChar StartChar: uni094B -Encoding: 2379 2379 571 +Encoding: 2379 2379 569 GlifName: uni094B_ Width: 2048 VWidth: 0 @@ -22219,7 +22188,7 @@ EndSplineSet EndChar StartChar: uni094B_uni0902.abvs -Encoding: 65685 -1 572 +Encoding: 65685 -1 570 GlifName: uni094B__uni0902.abvs Width: 2048 VWidth: 0 @@ -22253,7 +22222,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094B uni0 EndChar StartChar: uni094B_uni0930_uni094D.abvs -Encoding: 65686 -1 573 +Encoding: 65686 -1 571 GlifName: uni094B__uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -22297,7 +22266,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094B uni0 EndChar StartChar: uni094C -Encoding: 2380 2380 574 +Encoding: 2380 2380 572 GlifName: uni094C_ Width: 2048 VWidth: 0 @@ -22330,7 +22299,7 @@ EndSplineSet EndChar StartChar: uni094C_uni0902.abvs -Encoding: 65687 -1 575 +Encoding: 65687 -1 573 GlifName: uni094C__uni0902.abvs Width: 2048 VWidth: 0 @@ -22369,7 +22338,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094C uni0 EndChar StartChar: uni094C_uni0930_uni094D.abvs -Encoding: 65688 -1 576 +Encoding: 65688 -1 574 GlifName: uni094C__uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -22418,12 +22387,12 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094C uni0 EndChar StartChar: uni094D -Encoding: 2381 2381 577 +Encoding: 2381 2381 575 GlifName: uni094D_ Width: 0 VWidth: 0 GlyphClass: 4 -Flags: HWO +Flags: HW AnchorPoint: "blwm" -360 2 mark 0 LayerCount: 2 Fore @@ -22442,7 +22411,7 @@ EndSplineSet EndChar StartChar: uni094E -Encoding: 2382 2382 578 +Encoding: 2382 2382 576 GlifName: uni094E_ Width: 2048 VWidth: 0 @@ -22465,7 +22434,7 @@ EndSplineSet EndChar StartChar: uni094F -Encoding: 2383 2383 579 +Encoding: 2383 2383 577 GlifName: uni094F_ Width: 2048 VWidth: 0 @@ -22518,7 +22487,7 @@ EndSplineSet EndChar StartChar: uni0950 -Encoding: 2384 2384 580 +Encoding: 2384 2384 578 GlifName: uni0950 Width: 2048 VWidth: 0 @@ -22576,7 +22545,7 @@ EndSplineSet EndChar StartChar: uni0951 -Encoding: 2385 2385 581 +Encoding: 2385 2385 579 GlifName: uni0951 Width: 2048 VWidth: 0 @@ -22595,7 +22564,7 @@ EndSplineSet EndChar StartChar: uni0952 -Encoding: 2386 2386 582 +Encoding: 2386 2386 580 GlifName: uni0952 Width: 2048 VWidth: 0 @@ -22614,7 +22583,7 @@ EndSplineSet EndChar StartChar: uni0953 -Encoding: 2387 2387 583 +Encoding: 2387 2387 581 GlifName: uni0953 Width: 2048 VWidth: 0 @@ -22633,7 +22602,7 @@ EndSplineSet EndChar StartChar: uni0954 -Encoding: 2388 2388 584 +Encoding: 2388 2388 582 GlifName: uni0954 Width: 2048 VWidth: 0 @@ -22652,7 +22621,7 @@ EndSplineSet EndChar StartChar: uni0955 -Encoding: 2389 2389 585 +Encoding: 2389 2389 583 GlifName: uni0955 Width: 2048 VWidth: 0 @@ -22690,7 +22659,7 @@ EndSplineSet EndChar StartChar: uni0956 -Encoding: 2390 2390 586 +Encoding: 2390 2390 584 GlifName: uni0956 Width: 2048 VWidth: 0 @@ -22723,7 +22692,7 @@ EndSplineSet EndChar StartChar: uni0957 -Encoding: 2391 2391 587 +Encoding: 2391 2391 585 GlifName: uni0957 Width: 2048 VWidth: 0 @@ -22771,7 +22740,7 @@ EndSplineSet EndChar StartChar: uni0958 -Encoding: 2392 2392 588 +Encoding: 2392 2392 586 GlifName: uni0958 Width: 2048 VWidth: 0 @@ -22825,7 +22794,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0915 uni093C EndChar StartChar: uni0958_uni0930_uni094D.vatu -Encoding: 65689 -1 589 +Encoding: 65689 -1 587 GlifName: uni0958_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -22884,7 +22853,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0958 uni0930_uni09 EndChar StartChar: uni0958_uni094D.half -Encoding: 65690 -1 590 +Encoding: 65690 -1 588 GlifName: uni0958_uni094D_.half Width: 2048 VWidth: 0 @@ -22933,7 +22902,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0958 uni094D EndChar StartChar: uni0958_uni094D.haln -Encoding: 65691 -1 591 +Encoding: 65691 -1 589 GlifName: uni0958_uni094D_.haln Width: 2048 VWidth: 0 @@ -22997,7 +22966,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0958 uni094D EndChar StartChar: uni0959 -Encoding: 2393 2393 592 +Encoding: 2393 2393 590 GlifName: uni0959 Width: 2048 VWidth: 0 @@ -23056,7 +23025,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0916 uni093C EndChar StartChar: uni0959_uni0930_uni094D.vatu -Encoding: 65692 -1 593 +Encoding: 65692 -1 591 GlifName: uni0959_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -23120,7 +23089,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0959 uni0930_uni09 EndChar StartChar: uni0959_uni094D.half -Encoding: 65693 -1 594 +Encoding: 65693 -1 592 GlifName: uni0959_uni094D_.half Width: 2048 VWidth: 0 @@ -23174,7 +23143,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0959 uni094D EndChar StartChar: uni0959_uni094D.haln -Encoding: 65694 -1 595 +Encoding: 65694 -1 593 GlifName: uni0959_uni094D_.haln Width: 2048 VWidth: 0 @@ -23243,7 +23212,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0959 uni094D EndChar StartChar: uni095A -Encoding: 2394 2394 596 +Encoding: 2394 2394 594 GlifName: uni095A_ Width: 2048 VWidth: 0 @@ -23287,7 +23256,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0917 uni093C EndChar StartChar: uni095A_uni0930_uni094D.vatu -Encoding: 65695 -1 597 +Encoding: 65695 -1 595 GlifName: uni095A__uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -23336,7 +23305,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095A uni0930_uni09 EndChar StartChar: uni095A_uni094D.half -Encoding: 65696 -1 598 +Encoding: 65696 -1 596 GlifName: uni095A__uni094D_.half Width: 2048 VWidth: 0 @@ -23375,7 +23344,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni095A uni094D EndChar StartChar: uni095A_uni094D.haln -Encoding: 65697 -1 599 +Encoding: 65697 -1 597 GlifName: uni095A__uni094D_.haln Width: 2048 VWidth: 0 @@ -23429,7 +23398,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095A uni094D EndChar StartChar: uni095B -Encoding: 2395 2395 600 +Encoding: 2395 2395 598 GlifName: uni095B_ Width: 2048 VWidth: 0 @@ -23478,7 +23447,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni091C uni093C EndChar StartChar: uni095B_uni0930_uni094D.vatu -Encoding: 65698 -1 601 +Encoding: 65698 -1 599 GlifName: uni095B__uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -23532,7 +23501,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095B uni0930_uni09 EndChar StartChar: uni095B_uni094D.half -Encoding: 65699 -1 602 +Encoding: 65699 -1 600 GlifName: uni095B__uni094D_.half Width: 2048 VWidth: 0 @@ -23576,7 +23545,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni095B uni094D EndChar StartChar: uni095B_uni094D.haln -Encoding: 65700 -1 603 +Encoding: 65700 -1 601 GlifName: uni095B__uni094D_.haln Width: 2048 VWidth: 0 @@ -23635,7 +23604,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095B uni094D EndChar StartChar: uni095C -Encoding: 2396 2396 604 +Encoding: 2396 2396 602 GlifName: uni095C_ Width: 2048 VWidth: 0 @@ -23694,7 +23663,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0921 uni093C EndChar StartChar: uni095C_uni0930_uni094D.vatu -Encoding: 65701 -1 605 +Encoding: 65701 -1 603 GlifName: uni095C__uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -23763,7 +23732,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095C uni0930_uni09 EndChar StartChar: uni095C_uni094D.haln -Encoding: 65702 -1 606 +Encoding: 65702 -1 604 GlifName: uni095C__uni094D_.haln Width: 2048 VWidth: 0 @@ -23832,7 +23801,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095C uni094D EndChar StartChar: uni095D -Encoding: 2397 2397 607 +Encoding: 2397 2397 605 GlifName: uni095D_ Width: 2048 VWidth: 0 @@ -23886,7 +23855,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0922 uni093C EndChar StartChar: uni095D_uni0930_uni094D.vatu -Encoding: 65703 -1 608 +Encoding: 65703 -1 606 GlifName: uni095D__uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -23950,7 +23919,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095D uni0930_uni09 EndChar StartChar: uni095D_uni094D.haln -Encoding: 65704 -1 609 +Encoding: 65704 -1 607 GlifName: uni095D__uni094D_.haln Width: 2048 VWidth: 0 @@ -24014,7 +23983,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095D uni094D EndChar StartChar: uni095E -Encoding: 2398 2398 610 +Encoding: 2398 2398 608 GlifName: uni095E_ Width: 2048 VWidth: 0 @@ -24058,7 +24027,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni092B uni093C EndChar StartChar: uni095E_uni0930_uni094D.vatu -Encoding: 65705 -1 611 +Encoding: 65705 -1 609 GlifName: uni095E__uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -24107,7 +24076,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095E uni0930_uni09 EndChar StartChar: uni095E_uni094D.half -Encoding: 65706 -1 612 +Encoding: 65706 -1 610 GlifName: uni095E__uni094D_.half Width: 2048 VWidth: 0 @@ -24146,7 +24115,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni095E uni094D EndChar StartChar: uni095E_uni094D.haln -Encoding: 65707 -1 613 +Encoding: 65707 -1 611 GlifName: uni095E__uni094D_.haln Width: 2048 VWidth: 0 @@ -24200,7 +24169,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095E uni094D EndChar StartChar: uni095F -Encoding: 2399 2399 614 +Encoding: 2399 2399 612 GlifName: uni095F_ Width: 2048 VWidth: 0 @@ -24244,7 +24213,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni092F uni093C EndChar StartChar: uni095F_uni0930_uni094D.vatu -Encoding: 65708 -1 615 +Encoding: 65708 -1 613 GlifName: uni095F__uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -24293,7 +24262,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095F uni0930_uni09 EndChar StartChar: uni095F_uni094D.half -Encoding: 65709 -1 616 +Encoding: 65709 -1 614 GlifName: uni095F__uni094D_.half Width: 2048 VWidth: 0 @@ -24347,7 +24316,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni095F uni094D EndChar StartChar: uni095F_uni094D.haln -Encoding: 65710 -1 617 +Encoding: 65710 -1 615 GlifName: uni095F__uni094D_.haln Width: 2048 VWidth: 0 @@ -24401,7 +24370,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095F uni094D EndChar StartChar: uni0960 -Encoding: 2400 2400 618 +Encoding: 2400 2400 616 GlifName: uni0960 Width: 2048 VWidth: 0 @@ -24459,7 +24428,7 @@ EndSplineSet EndChar StartChar: uni0961 -Encoding: 2401 2401 619 +Encoding: 2401 2401 617 GlifName: uni0961 Width: 2048 VWidth: 0 @@ -24512,7 +24481,7 @@ EndSplineSet EndChar StartChar: uni0962 -Encoding: 2402 2402 620 +Encoding: 2402 2402 618 GlifName: uni0962 Width: 2048 VWidth: 0 @@ -24555,7 +24524,7 @@ EndSplineSet EndChar StartChar: uni0963 -Encoding: 2403 2403 621 +Encoding: 2403 2403 619 GlifName: uni0963 Width: 2048 VWidth: 0 @@ -24603,7 +24572,7 @@ EndSplineSet EndChar StartChar: uni0964 -Encoding: 2404 2404 622 +Encoding: 2404 2404 620 GlifName: uni0964 Width: 2048 VWidth: 0 @@ -24621,7 +24590,7 @@ EndSplineSet EndChar StartChar: uni0965 -Encoding: 2405 2405 623 +Encoding: 2405 2405 621 GlifName: uni0965 Width: 2048 VWidth: 0 @@ -24644,7 +24613,7 @@ EndSplineSet EndChar StartChar: uni0966 -Encoding: 2406 2406 624 +Encoding: 2406 2406 622 GlifName: uni0966 Width: 2048 VWidth: 0 @@ -24677,7 +24646,7 @@ EndSplineSet EndChar StartChar: uni0967 -Encoding: 2407 2407 625 +Encoding: 2407 2407 623 GlifName: uni0967 Width: 2048 VWidth: 0 @@ -24710,7 +24679,7 @@ EndSplineSet EndChar StartChar: uni0968 -Encoding: 2408 2408 626 +Encoding: 2408 2408 624 GlifName: uni0968 Width: 2048 VWidth: 0 @@ -24748,7 +24717,7 @@ EndSplineSet EndChar StartChar: uni0969 -Encoding: 2409 2409 627 +Encoding: 2409 2409 625 GlifName: uni0969 Width: 2048 VWidth: 0 @@ -24786,7 +24755,7 @@ EndSplineSet EndChar StartChar: uni096A -Encoding: 2410 2410 628 +Encoding: 2410 2410 626 GlifName: uni096A_ Width: 2048 VWidth: 0 @@ -24834,7 +24803,7 @@ EndSplineSet EndChar StartChar: uni096B -Encoding: 2411 2411 629 +Encoding: 2411 2411 627 GlifName: uni096B_ Width: 2048 VWidth: 0 @@ -24867,7 +24836,7 @@ EndSplineSet EndChar StartChar: uni096C -Encoding: 2412 2412 630 +Encoding: 2412 2412 628 GlifName: uni096C_ Width: 2048 VWidth: 0 @@ -24905,7 +24874,7 @@ EndSplineSet EndChar StartChar: uni096D -Encoding: 2413 2413 631 +Encoding: 2413 2413 629 GlifName: uni096D_ Width: 2048 VWidth: 0 @@ -24943,7 +24912,7 @@ EndSplineSet EndChar StartChar: uni096E -Encoding: 2414 2414 632 +Encoding: 2414 2414 630 GlifName: uni096E_ Width: 2048 VWidth: 0 @@ -24971,7 +24940,7 @@ EndSplineSet EndChar StartChar: uni096F -Encoding: 2415 2415 633 +Encoding: 2415 2415 631 GlifName: uni096F_ Width: 2048 VWidth: 0 @@ -25009,7 +24978,7 @@ EndSplineSet EndChar StartChar: uni0970 -Encoding: 2416 2416 634 +Encoding: 2416 2416 632 GlifName: uni0970 Width: 2048 VWidth: 0 @@ -25027,7 +24996,7 @@ EndSplineSet EndChar StartChar: uni0971 -Encoding: 2417 2417 635 +Encoding: 2417 2417 633 GlifName: uni0971 Width: 2048 VWidth: 0 @@ -25045,7 +25014,7 @@ EndSplineSet EndChar StartChar: uni0972 -Encoding: 2418 2418 636 +Encoding: 2418 2418 634 GlifName: uni0972 Width: 2048 VWidth: 0 @@ -25103,7 +25072,7 @@ EndSplineSet EndChar StartChar: uni0973 -Encoding: 2419 2419 637 +Encoding: 2419 2419 635 GlifName: uni0973 Width: 2048 VWidth: 0 @@ -25151,7 +25120,7 @@ EndSplineSet EndChar StartChar: uni0974 -Encoding: 2420 2420 638 +Encoding: 2420 2420 636 GlifName: uni0974 Width: 2048 VWidth: 0 @@ -25199,7 +25168,7 @@ EndSplineSet EndChar StartChar: uni0975 -Encoding: 2421 2421 639 +Encoding: 2421 2421 637 GlifName: uni0975 Width: 2048 VWidth: 0 @@ -25272,7 +25241,7 @@ EndSplineSet EndChar StartChar: uni0976 -Encoding: 2422 2422 640 +Encoding: 2422 2422 638 GlifName: uni0976 Width: 2048 VWidth: 0 @@ -25330,7 +25299,7 @@ EndSplineSet EndChar StartChar: uni0977 -Encoding: 2423 2423 641 +Encoding: 2423 2423 639 GlifName: uni0977 Width: 2048 VWidth: 0 @@ -25403,7 +25372,7 @@ EndSplineSet EndChar StartChar: uni0978 -Encoding: 2424 2424 642 +Encoding: 2424 2424 640 GlifName: uni0978 Width: 2048 VWidth: 0 @@ -25436,7 +25405,7 @@ EndSplineSet EndChar StartChar: uni0979 -Encoding: 2425 2425 643 +Encoding: 2425 2425 641 GlifName: uni0979 Width: 2048 VWidth: 0 @@ -25494,7 +25463,7 @@ EndSplineSet EndChar StartChar: uni097A -Encoding: 2426 2426 644 +Encoding: 2426 2426 642 GlifName: uni097A_ Width: 2048 VWidth: 0 @@ -25537,7 +25506,7 @@ EndSplineSet EndChar StartChar: uni097B -Encoding: 2427 2427 645 +Encoding: 2427 2427 643 GlifName: uni097B_ Width: 2048 VWidth: 0 @@ -25580,7 +25549,7 @@ EndSplineSet EndChar StartChar: uni097C -Encoding: 2428 2428 646 +Encoding: 2428 2428 644 GlifName: uni097C_ Width: 2048 VWidth: 0 @@ -25628,7 +25597,7 @@ EndSplineSet EndChar StartChar: uni097D -Encoding: 2429 2429 647 +Encoding: 2429 2429 645 GlifName: uni097D_ Width: 2048 VWidth: 0 @@ -25661,7 +25630,7 @@ EndSplineSet EndChar StartChar: uni097E -Encoding: 2430 2430 648 +Encoding: 2430 2430 646 GlifName: uni097E_ Width: 2048 VWidth: 0 @@ -25709,7 +25678,7 @@ EndSplineSet EndChar StartChar: uni097F -Encoding: 2431 2431 649 +Encoding: 2431 2431 647 GlifName: uni097F_ Width: 2048 VWidth: 0 @@ -25757,12 +25726,12 @@ EndSplineSet EndChar StartChar: uni1E0C -Encoding: 7692 7692 650 +Encoding: 7692 7692 648 GlifName: uni1E_0C_ Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0 1 -258 81 2 @@ -25770,12 +25739,12 @@ Refer: 19 68 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E0D -Encoding: 7693 7693 651 +Encoding: 7693 7693 649 GlifName: uni1E_0D_ Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0 1 536 81 2 @@ -25783,12 +25752,12 @@ Refer: 160 100 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E34 -Encoding: 7732 7732 652 +Encoding: 7732 7732 650 GlifName: uni1E_34 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 355 817 N 1 0 0 1 266 47 2 @@ -25796,12 +25765,12 @@ Refer: 56 75 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E35 -Encoding: 7733 7733 653 +Encoding: 7733 7733 651 GlifName: uni1E_35 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 355 817 N 1 0 0 1 420 45 2 @@ -25809,12 +25778,12 @@ Refer: 224 107 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E36 -Encoding: 7734 7734 654 +Encoding: 7734 7734 652 GlifName: uni1E_36 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0 1 512 85 2 @@ -25822,12 +25791,12 @@ Refer: 57 76 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E37 -Encoding: 7735 7735 655 +Encoding: 7735 7735 653 GlifName: uni1E_37 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0 1 512 91 2 @@ -25835,38 +25804,38 @@ Refer: 225 108 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E38 -Encoding: 7736 7736 656 +Encoding: 7736 7736 654 GlifName: uni1E_38 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 345 772 N 1 0 0 1 -778 112 2 -Refer: 654 7734 N 1 0 0 1 0 0 2 +Refer: 652 7734 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E39 -Encoding: 7737 7737 657 +Encoding: 7737 7737 655 GlifName: uni1E_39 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 345 772 N 1 0 0 1 -388 118 2 -Refer: 655 7735 N 1 0 0 1 0 0 2 +Refer: 653 7735 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E3A -Encoding: 7738 7738 658 +Encoding: 7738 7738 656 GlifName: uni1E_3A_ Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 355 817 N 1 0 0 1 518 51 2 @@ -25874,12 +25843,12 @@ Refer: 57 76 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E3B -Encoding: 7739 7739 659 +Encoding: 7739 7739 657 GlifName: uni1E_3B_ Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 355 817 N 1 0 0 1 518 57 2 @@ -25887,12 +25856,12 @@ Refer: 225 108 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E42 -Encoding: 7746 7746 660 +Encoding: 7746 7746 658 GlifName: uni1E_42 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0 1 512 79 2 @@ -25900,12 +25869,12 @@ Refer: 62 77 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E43 -Encoding: 7747 7747 661 +Encoding: 7747 7747 659 GlifName: uni1E_43 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0 1 550 80 2 @@ -25913,12 +25882,12 @@ Refer: 232 109 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E44 -Encoding: 7748 7748 662 +Encoding: 7748 7748 660 GlifName: uni1E_44 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 347 775 N 1 0 0 1 -42 31 2 @@ -25926,12 +25895,12 @@ Refer: 63 78 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E45 -Encoding: 7749 7749 663 +Encoding: 7749 7749 661 GlifName: uni1E_45 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 347 775 N 1 0 0 1 0 -488 2 @@ -25939,12 +25908,12 @@ Refer: 237 110 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E46 -Encoding: 7750 7750 664 +Encoding: 7750 7750 662 GlifName: uni1E_46 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0 1 516 81 2 @@ -25952,12 +25921,12 @@ Refer: 63 78 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E47 -Encoding: 7751 7751 665 +Encoding: 7751 7751 663 GlifName: uni1E_47 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0 1 602 80 2 @@ -25965,12 +25934,12 @@ Refer: 237 110 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E48 -Encoding: 7752 7752 666 +Encoding: 7752 7752 664 GlifName: uni1E_48 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 355 817 N 1 0 0 1 487 47 2 @@ -25978,12 +25947,12 @@ Refer: 63 78 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E49 -Encoding: 7753 7753 667 +Encoding: 7753 7753 665 GlifName: uni1E_49 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 355 817 N 1 0 0 1 608 46 2 @@ -25991,12 +25960,12 @@ Refer: 237 110 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E4C -Encoding: 7756 7756 668 +Encoding: 7756 7756 666 GlifName: uni1E_4C_ Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 40 1277 2 @@ -26004,12 +25973,12 @@ Refer: 77 213 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E4D -Encoding: 7757 7757 669 +Encoding: 7757 7757 667 GlifName: uni1E_4D_ Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 79 712 2 @@ -26017,12 +25986,12 @@ Refer: 259 245 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E58 -Encoding: 7768 7768 670 +Encoding: 7768 7768 668 GlifName: uni1E_58 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 347 775 N 1 0 0 1 -2 21 2 @@ -26030,12 +25999,12 @@ Refer: 80 82 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E59 -Encoding: 7769 7769 671 +Encoding: 7769 7769 669 GlifName: uni1E_59 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 347 775 N 1 0 0 1 0 -491 2 @@ -26043,12 +26012,12 @@ Refer: 281 114 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E5A -Encoding: 7770 7770 672 +Encoding: 7770 7770 670 GlifName: uni1E_5A_ Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0 1 614 78 2 @@ -26056,12 +26025,12 @@ Refer: 80 82 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E5B -Encoding: 7771 7771 673 +Encoding: 7771 7771 671 GlifName: uni1E_5B_ Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0 1 460 80 2 @@ -26069,38 +26038,38 @@ Refer: 281 114 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E5C -Encoding: 7772 7772 674 +Encoding: 7772 7772 672 GlifName: uni1E_5C_ Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 345 772 N 1 0 0 1 -2 110 2 -Refer: 672 7770 N 1 0 0 1 0 0 2 +Refer: 670 7770 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E5D -Encoding: 7773 7773 675 +Encoding: 7773 7773 673 GlifName: uni1E_5D_ Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 345 772 N 1 0 0 1 0 -406 2 -Refer: 673 7771 N 1 0 0 1 0 0 2 +Refer: 671 7771 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E5E -Encoding: 7774 7774 676 +Encoding: 7774 7774 674 GlifName: uni1E_5E_ Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 355 817 N 1 0 0 1 620 44 2 @@ -26108,12 +26077,12 @@ Refer: 80 82 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E5F -Encoding: 7775 7775 677 +Encoding: 7775 7775 675 GlifName: uni1E_5F_ Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 355 817 N 1 0 0 1 466 46 2 @@ -26121,12 +26090,12 @@ Refer: 281 114 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E62 -Encoding: 7778 7778 678 +Encoding: 7778 7778 676 GlifName: uni1E_62 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0 1 508 82 2 @@ -26134,12 +26103,12 @@ Refer: 83 83 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E63 -Encoding: 7779 7779 679 +Encoding: 7779 7779 677 GlifName: uni1E_63 Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0 1 614 82 2 @@ -26147,12 +26116,12 @@ Refer: 286 115 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E6C -Encoding: 7788 7788 680 +Encoding: 7788 7788 678 GlifName: uni1E_6C_ Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0 1 512 88 2 @@ -26160,12 +26129,12 @@ Refer: 88 84 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E6D -Encoding: 7789 7789 681 +Encoding: 7789 7789 679 GlifName: uni1E_6D_ Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 170 803 N 1 0 0 1 550 82 2 @@ -26173,12 +26142,12 @@ Refer: 298 116 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E8E -Encoding: 7822 7822 682 +Encoding: 7822 7822 680 GlifName: uni1E_8E_ Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 347 775 N 1 0 0 1 -42 29 2 @@ -26186,20 +26155,20 @@ Refer: 109 89 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E8F -Encoding: 7823 7823 683 +Encoding: 7823 7823 681 GlifName: uni1E_8F_ Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 347 775 N 1 0 0 1 0 -495 2 -Refer: 702 121 N 1 0 0 1 0 0 2 +Refer: 700 121 N 1 0 0 1 0 0 2 EndChar StartChar: uni1E9E -Encoding: 7838 7838 684 +Encoding: 7838 7838 682 GlifName: uni1E_9E_ Width: 2048 VWidth: 0 @@ -26242,7 +26211,7 @@ EndSplineSet EndChar StartChar: uni200C -Encoding: 8204 8204 685 +Encoding: 8204 8204 683 GlifName: uni200C_ Width: 2048 VWidth: 0 @@ -26265,7 +26234,7 @@ EndSplineSet EndChar StartChar: uni200D -Encoding: 8205 8205 686 +Encoding: 8205 8205 684 GlifName: uni200D_ Width: 2048 VWidth: 0 @@ -26283,7 +26252,7 @@ EndSplineSet EndChar StartChar: uni2044 -Encoding: 8260 8260 687 +Encoding: 8260 8260 685 GlifName: uni2044 Width: 2048 VWidth: 0 @@ -26301,7 +26270,7 @@ EndSplineSet EndChar StartChar: uni20B9 -Encoding: 8377 8377 688 +Encoding: 8377 8377 686 GlifName: uni20B_9 Width: 2048 VWidth: 0 @@ -26339,7 +26308,7 @@ EndSplineSet EndChar StartChar: uni25CC -Encoding: 9676 9676 689 +Encoding: 9676 9676 687 GlifName: uni25C_C_ Width: 2048 VWidth: 0 @@ -26394,7 +26363,7 @@ EndSplineSet EndChar StartChar: uniFB01 -Encoding: 64257 64257 690 +Encoding: 64257 64257 688 GlifName: uniF_B_01 Width: 2048 VWidth: 0 @@ -26433,7 +26402,7 @@ Ligature2: "dligDiscretionaryLigatureslookup0 subtable" f i EndChar StartChar: uniFB02 -Encoding: 64258 64258 691 +Encoding: 64258 64258 689 GlifName: uniF_B_02 Width: 2048 VWidth: 0 @@ -26477,12 +26446,12 @@ Ligature2: "dligDiscretionaryLigatureslookup0 subtable" f l EndChar StartChar: uogonek -Encoding: 371 371 692 +Encoding: 371 371 690 GlifName: uogonek Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 354 808 N 1 0 0 1 596 4 2 @@ -26490,12 +26459,12 @@ Refer: 307 117 N 1 0 0 1 0 0 2 EndChar StartChar: uring -Encoding: 367 367 693 +Encoding: 367 367 691 GlifName: uring Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 349 778 N 1 0 0 1 -142 -390 2 @@ -26503,12 +26472,12 @@ Refer: 307 117 N 1 0 0 1 0 0 2 EndChar StartChar: utilde -Encoding: 361 361 694 +Encoding: 361 361 692 GlifName: utilde Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 304 771 N 1 0 0 1 -142 -707 2 @@ -26516,7 +26485,7 @@ Refer: 307 117 N 1 0 0 1 0 0 2 EndChar StartChar: v -Encoding: 118 118 695 +Encoding: 118 118 693 GlifName: v Width: 2048 VWidth: 0 @@ -26540,7 +26509,7 @@ EndSplineSet EndChar StartChar: w -Encoding: 119 119 696 +Encoding: 119 119 694 GlifName: w Width: 2048 VWidth: 0 @@ -26574,59 +26543,59 @@ EndSplineSet EndChar StartChar: wacute -Encoding: 7811 7811 697 +Encoding: 7811 7811 695 GlifName: wacute Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 -48 358 2 -Refer: 696 119 N 1 0 0 1 0 0 2 +Refer: 694 119 N 1 0 0 1 0 0 2 EndChar StartChar: wcircumflex -Encoding: 373 373 698 +Encoding: 373 373 696 GlifName: wcircumflex Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 344 770 N 1 0 0 1 6 -810 2 -Refer: 696 119 N 1 0 0 1 0 0 2 +Refer: 694 119 N 1 0 0 1 0 0 2 EndChar StartChar: wdieresis -Encoding: 7813 7813 699 +Encoding: 7813 7813 697 GlifName: wdieresis Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 348 776 N 1 0 0 1 50 -431 2 -Refer: 696 119 N 1 0 0 1 0 0 2 +Refer: 694 119 N 1 0 0 1 0 0 2 EndChar StartChar: wgrave -Encoding: 7809 7809 700 +Encoding: 7809 7809 698 GlifName: wgrave Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 201 768 N 1 0 0 1 16 423 2 -Refer: 696 119 N 1 0 0 1 0 0 2 +Refer: 694 119 N 1 0 0 1 0 0 2 EndChar StartChar: x -Encoding: 120 120 701 +Encoding: 120 120 699 GlifName: x Width: 2048 VWidth: 0 @@ -26649,7 +26618,7 @@ EndSplineSet EndChar StartChar: y -Encoding: 121 121 702 +Encoding: 121 121 700 GlifName: y Width: 2048 VWidth: 0 @@ -26684,46 +26653,46 @@ EndSplineSet EndChar StartChar: yacute -Encoding: 253 253 703 +Encoding: 253 253 701 GlifName: yacute Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 22 466 2 -Refer: 702 121 N 1 0 0 1 0 0 2 +Refer: 700 121 N 1 0 0 1 0 0 2 EndChar StartChar: ycircumflex -Encoding: 375 375 704 +Encoding: 375 375 702 GlifName: ycircumflex Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 344 770 N 1 0 0 1 0 -814 2 -Refer: 702 121 N 1 0 0 1 0 0 2 +Refer: 700 121 N 1 0 0 1 0 0 2 EndChar StartChar: ydieresis -Encoding: 255 255 705 +Encoding: 255 255 703 GlifName: ydieresis Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 348 776 N 1 0 0 1 0 -491 2 -Refer: 702 121 N 1 0 0 1 0 0 2 +Refer: 700 121 N 1 0 0 1 0 0 2 EndChar StartChar: yen -Encoding: 165 165 706 +Encoding: 165 165 704 GlifName: yen Width: 2048 VWidth: 0 @@ -26766,20 +26735,20 @@ EndSplineSet EndChar StartChar: ygrave -Encoding: 7923 7923 707 +Encoding: 7923 7923 705 GlifName: ygrave Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 201 768 N 1 0 0 1 -14 475 2 -Refer: 702 121 N 1 0 0 1 0 0 2 +Refer: 700 121 N 1 0 0 1 0 0 2 EndChar StartChar: z -Encoding: 122 122 708 +Encoding: 122 122 706 GlifName: z Width: 2048 VWidth: 0 @@ -26809,46 +26778,46 @@ EndSplineSet EndChar StartChar: zacute -Encoding: 378 378 709 +Encoding: 378 378 707 GlifName: zacute Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0 1 22 469 2 -Refer: 708 122 N 1 0 0 1 0 0 2 +Refer: 706 122 N 1 0 0 1 0 0 2 EndChar StartChar: zcaron -Encoding: 382 382 710 +Encoding: 382 382 708 GlifName: zcaron Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 351 780 N 1 0 0 1 4 -198 2 -Refer: 708 122 N 1 0 0 1 0 0 2 +Refer: 706 122 N 1 0 0 1 0 0 2 EndChar StartChar: zdotaccent -Encoding: 380 380 711 +Encoding: 380 380 709 GlifName: zdotaccent Width: 2048 VWidth: 0 GlyphClass: 2 -Flags: W +Flags: HW LayerCount: 2 Fore Refer: 347 775 N 1 0 0 1 0 -488 2 -Refer: 708 122 N 1 0 0 1 0 0 2 +Refer: 706 122 N 1 0 0 1 0 0 2 EndChar StartChar: zero -Encoding: 48 48 712 +Encoding: 48 48 710 GlifName: zero Width: 2048 VWidth: 0 @@ -26876,10 +26845,10 @@ EndSplineSet EndChar StartChar: uni0305 -Encoding: 773 773 713 +Encoding: 773 773 711 Width: 0 VWidth: 0 -Flags: W +Flags: HW HStem: 1542 60 AnchorPoint: "top" -487 1478 mark 0 LayerCount: 2 @@ -26894,10 +26863,10 @@ EndSplineSet EndChar StartChar: hookabovecomb -Encoding: 777 777 714 +Encoding: 777 777 712 Width: 0 VWidth: 0 -Flags: W +Flags: HW HStem: 1190 584 VStem: 122 460 AnchorPoint: "top" 305 1094 mark 0 @@ -26928,7 +26897,7 @@ EndSplineSet EndChar StartChar: uni01C4 -Encoding: 452 452 715 +Encoding: 452 452 713 Width: 2048 Flags: HW LayerCount: 2 @@ -26938,22 +26907,22 @@ Refer: 19 68 N 0.5 0 0 1 -2.75 0 2 EndChar StartChar: uni01C5 -Encoding: 453 453 716 +Encoding: 453 453 714 Width: 2048 Flags: HW LayerCount: 2 Fore -Refer: 710 382 N 0.5 0 0 1 1022 0 2 +Refer: 708 382 N 0.5 0 0 1 1022 0 2 Refer: 19 68 N 0.5 0 0 1 -2 0 2 EndChar StartChar: uni01C6 -Encoding: 454 454 717 +Encoding: 454 454 715 Width: 2048 Flags: HW LayerCount: 2 Fore -Refer: 710 382 N 0.5 0 0 1 1015.5 0 2 +Refer: 708 382 N 0.5 0 0 1 1015.5 0 2 Refer: 160 100 N 0.5 0 0 1 -8.5 0 2 EndChar EndChars diff --git a/sources/Samaano-Wide-Bold.ufo/features.fea b/sources/Samaano-Wide-Bold.ufo/features.fea index a10791b8f..a06e0c56e 100644 --- a/sources/Samaano-Wide-Bold.ufo/features.fea +++ b/sources/Samaano-Wide-Bold.ufo/features.fea @@ -235,7 +235,7 @@ feature half { script DFLT; language dflt ; lookup halfHalfFormsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup halfHalfFormsinDevanagarilookup0; } half; @@ -243,7 +243,7 @@ feature haln { script DFLT; language dflt ; lookup halnHalantFormsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup halnHalantFormsinDevanagarilookup0; } haln; @@ -251,7 +251,7 @@ feature vatu { script DFLT; language dflt ; lookup vatuVattuVariantsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup vatuVattuVariantsinDevanagarilookup0; } vatu; @@ -259,7 +259,7 @@ feature pres { script DFLT; language dflt ; lookup presPreBaseSubstitutionsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup presPreBaseSubstitutionsinDevanagarilookup0; } pres; @@ -267,7 +267,7 @@ feature abvs { script DFLT; language dflt ; lookup abvsAboveBaseSubstitutionsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup abvsAboveBaseSubstitutionsinDevanagarilookup0; } abvs; @@ -275,7 +275,7 @@ feature blws { script DFLT; language dflt ; lookup blwsBelowBaseSubstitutionsinDevanagarilookup12; - script dev2; + script deva; language dflt ; lookup blwsBelowBaseSubstitutionsinDevanagarilookup12; } blws; @@ -288,22 +288,22 @@ feature dlig { lookup dligDiscretionaryLigatureslookup0; } dlig;@CombiningTopAccents = [acutecomb oe tildecomb uni0302 uni0304 uni0306 uni0308 uni030A uni030B uni030C]; lookup markMarkPositioninglookup0 { - markClass gravecomb @top; - markClass acutecomb @top; - markClass uni0302 @top; - markClass tildecomb @top; - markClass uni0304 @top; - markClass uni0306 @top; - markClass uni0307 @top; - markClass uni0308 @top; - markClass uni030A @top; - markClass uni030B @top; - markClass uni030C @top; - markClass dotbelowcomb @base; - markClass uni0326 @base; - markClass uni0327 @base; - markClass uni0328 @base; - markClass uni0331 @base; + markClass gravecomb @top; + markClass acutecomb @top; + markClass uni0302 @top; + markClass tildecomb @top; + markClass uni0304 @top; + markClass uni0306 @top; + markClass uni0307 @top; + markClass uni0308 @top; + markClass uni030A @top; + markClass uni030B @top; + markClass uni030C @top; + markClass dotbelowcomb @base; + markClass uni0326 @base; + markClass uni0327 @base; + markClass uni0328 @base; + markClass uni0331 @base; pos base A mark @top; pos base C mark @top; pos base D mark @top; @@ -377,9 +377,9 @@ lookup markMarkPositioninglookup0 { pos base uni25CC mark @base; } markMarkPositioninglookup0; lookup abvmAboveBaseMarkinDevanagari2lookup1 { - markClass uni0900 @abvm; - markClass uni0901 @abvm; - markClass uni0902 @abvm; + markClass uni0900 @abvm; + markClass uni0901 @abvm; + markClass uni0902 @abvm; markClass uni0951 @abvm; markClass uni0953 @abvm; markClass uni0954 @abvm; @@ -415,9 +415,8 @@ feature blwm { script dev2; language dflt ; lookup blwmBelowBaseMarkinDevanagari2lookup2; -} blwm; -@GDEF_base = [A AE Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Emacron Eng Eogonek Eth Euro F G Gbreve Gcircumflex Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek Itilde J Jcircumflex K L Lacute Lcaron Ldot Lslash M N Nacute Ncaron Ntilde O OE Oacute Obreve Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Otilde P Q R Racute Rcaron S Sacute Scaron Scedilla Scircumflex T Tcaron Thorn U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ygrave Z Zacute Zcaron Zdotaccent a aacute abreve acircumflex acute adieresis ae agrave amacron ampersand aogonek aring asciicircum asciitilde asterisk at atilde b backslash bar braceleft braceright bracketleft bracketright breve brokenbar bullet c cacute caron ccaron ccedilla ccircumflex cdotaccent cedilla cent circumflex colon comma copyright currency d dagger daggerdbl dcaron dcroat degree dieresis divide dollar dotaccent dotlessi e eacute ebreve ecaron ecircumflex edieresis edotaccent egrave eight ellipsis emacron emdash endash eng eogonek equal eth exclam exclamdown f five four g gbreve gcircumflex gdotaccent germandbls grave greater guillemotleft guillemotright guilsinglleft guilsinglright h hbar hcircumflex hookabovecomb hungarumlaut hyphen i iacute ibreve icircumflex idieresis igrave ij imacron iogonek itilde j jcircumflex k l lacute lcaron ldot less logicalnot lslash m macron minus mu multiply n nacute ncaron nine ntilde numbersign o oacute obreve ocircumflex odieresis oe ogonek ograve ohungarumlaut omacron one onehalf onequarter ordfeminine ordmasculine oslash otilde p paragraph parenleft parenright percent period periodcentered perthousand plus plusminus q question questiondown quotedbl quotedblbase quotedblleft quotedblright quoteleft quoteright quotesinglbase quotesingle r racute rcaron registered ring s sacute scaron scedilla scircumflex section semicolon seven six slash space sterling t tcaron thorn three threequarters tilde trademark two u uacute ubreve ucircumflex udieresis ugrave uhungarumlaut umacron underscore uni00A0 uni00B2 uni00B3 uni00B9 uni0122 uni0123 uni0136 uni0137 uni013B uni013C uni0145 uni0146 uni0156 uni0157 uni0162 uni0163 uni0192 uni01C4 uni01C5 uni01C6 uni0218 uni0219 uni021A uni021B uni0237 uni02B9 uni02BA uni02BC uni02C9 uni02CA uni02CB uni0305 uni0903 uni0904 uni0905 uni0906 uni0907 uni0908 uni0909 uni090A uni090B uni090C uni090D uni090E uni090F uni0910 uni0911 uni0912 uni0913 uni0914 uni0915 uni0915_uni094D.half uni0915_uni094D_uni0937_uni094D uni0916 uni0916_uni094D.half uni0917 uni0918 uni0919 uni091A uni091A_uni0930_uni094D.vatu uni091B uni091C uni091C_uni0930_uni094D.vatu uni091C_uni094D_uni091E_uni094D uni091D uni091E uni091F uni0920 uni0921 uni0922 uni0922_uni0930_uni094D.vatu uni0923 uni0923_uni0930_uni094D.vatu uni0924 uni0925 uni0926 uni0927 uni0928 uni0929 uni092A uni092B uni092C uni092D uni092E uni092F uni0930 uni0930_uni094D.abvs uni0930_uni094D.haln uni0930_uni094D.vatu uni0931 uni0932 uni0933 uni0934 uni0935 uni0936 uni0936_uni094D.haln uni0937 uni0938 uni0938_uni0930_uni094D.vatu uni0938_uni094D.haln uni0939 uni0939_uni0930_uni094D.vatu uni093B uni093D uni093E uni093F uni0940 uni0940_uni0930_uni094D.abvs uni0945_uni0930_uni094D.abvs uni0946_uni0930_uni094D.abvs uni0947_uni0930_uni094D.abvs uni0948_uni0930_uni094D.abvs uni0949 uni0949_uni0930_uni094D.abvs uni094A uni094A_uni0930_uni094D.abvs uni094B uni094B_uni0930_uni094D.abvs uni094C uni094C_uni0930_uni094D.abvs uni094E uni094F uni0950 uni0958 uni0959 uni095A uni095A_uni094D.haln uni095B uni095C uni095D uni095E uni095E_uni0930_uni094D.vatu uni095F uni095F_uni0930_uni094D.vatu uni0960 uni0961 uni0964 uni0965 uni0966 uni0967 uni0968 uni0969 uni096A uni096B uni096C uni096D uni096E uni096F uni0970 uni0971 uni0972 uni0973 uni0974 uni0975 uni0976 uni0977 uni0978 uni0979 uni097A uni097B uni097C uni097D uni097E uni097F uni1E0C uni1E0D uni1E34 uni1E35 uni1E36 uni1E37 uni1E38 uni1E39 uni1E3A uni1E3B uni1E42 uni1E43 uni1E44 uni1E45 uni1E46 uni1E47 uni1E48 uni1E49 uni1E4C uni1E4D uni1E58 uni1E59 uni1E5A uni1E5B uni1E5C uni1E5D uni1E5E uni1E5F uni1E62 uni1E63 uni1E6C uni1E6D uni1E8E uni1E8F uni1E9E uni200C uni200D uni2044 uni20B9 uni25CC uogonek uring utilde v w wacute wcircumflex wdieresis wgrave x y yacute ycircumflex ydieresis yen ygrave z zacute zcaron zdotaccent zero]; -@GDEF_mark = [acutecomb dotbelowcomb glyph094D gravecomb tildecomb uni0302 uni0304 uni0306 uni0307 uni0308 uni030A uni030B uni030C uni0326 uni0327 uni0328 uni0331 uni0900 uni0901 uni0902 uni0930_uni094D.blwf uni0930_uni094D.rphf uni093A uni093C uni0941 uni0942 uni0943 uni0944 uni0945 uni0946 uni0947 uni0948 uni094D uni0951 uni0952 uni0953 uni0954 uni0955 uni0956 uni0957 uni0962 uni0963]; +} blwm;@GDEF_base = [A AE Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Emacron Eng Eogonek Eth Euro F G Gbreve Gcircumflex Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek Itilde J Jcircumflex K L Lacute Lcaron Ldot Lslash M N Nacute Ncaron Ntilde O OE Oacute Obreve Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Otilde P Q R Racute Rcaron S Sacute Scaron Scedilla Scircumflex T Tcaron Thorn U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ygrave Z Zacute Zcaron Zdotaccent a aacute abreve acircumflex acute adieresis ae agrave amacron ampersand aogonek aring asciicircum asciitilde asterisk at atilde b backslash bar braceleft braceright bracketleft bracketright breve brokenbar bullet c cacute caron ccaron ccedilla ccircumflex cdotaccent cedilla cent circumflex colon comma copyright currency d dagger daggerdbl dcaron dcroat degree dieresis divide dollar dotaccent dotlessi e eacute ebreve ecaron ecircumflex edieresis edotaccent egrave eight ellipsis emacron emdash endash eng eogonek equal eth exclam exclamdown f five four g gbreve gcircumflex gdotaccent germandbls grave greater guillemotleft guillemotright guilsinglleft guilsinglright h hbar hcircumflex hungarumlaut hyphen i iacute ibreve icircumflex idieresis igrave ij imacron iogonek itilde j jcircumflex k l lacute lcaron ldot less logicalnot lslash m macron minus mu multiply n nacute ncaron nine ntilde numbersign o oacute obreve ocircumflex odieresis oe ogonek ograve ohungarumlaut omacron one onehalf onequarter ordfeminine ordmasculine oslash otilde p paragraph parenleft parenright percent period periodcentered perthousand plus plusminus q question questiondown quotedbl quotedblbase quotedblleft quotedblright quoteleft quoteright quotesinglbase quotesingle r racute rcaron registered ring s sacute scaron scedilla scircumflex section semicolon seven six slash space sterling t tcaron thorn three threequarters tilde trademark two u uacute ubreve ucircumflex udieresis ugrave uhungarumlaut umacron underscore uni00A0 uni00B2 uni00B3 uni00B9 uni0122 uni0123 uni0136 uni0137 uni013B uni013C uni0145 uni0146 uni0156 uni0157 uni0162 uni0163 uni0192 uni01C4 uni01C5 uni01C6 uni0218 uni0219 uni021A uni021B uni0237 uni02B9 uni02BA uni02BC uni02C9 uni02CA uni02CB uni0903 uni0904 uni0905 uni0906 uni0907 uni0908 uni0909 uni090A uni090B uni090C uni090D uni090E uni090F uni0910 uni0911 uni0912 uni0913 uni0914 uni0915 uni0915_uni094D.half uni0915_uni094D_uni0937_uni094D uni0916 uni0916_uni094D.half uni0917 uni0918 uni0919 uni091A uni091A_uni0930_uni094D.vatu uni091B uni091C uni091C_uni0930_uni094D.vatu uni091C_uni094D_uni091E_uni094D uni091D uni091E uni091F uni0920 uni0921 uni0922 uni0922_uni0930_uni094D.vatu uni0923 uni0923_uni0930_uni094D.vatu uni0924 uni0925 uni0926 uni0927 uni0928 uni0929 uni092A uni092B uni092C uni092D uni092E uni092F uni0930 uni0930_uni094D.haln uni0931 uni0932 uni0933 uni0934 uni0935 uni0936 uni0936_uni094D.haln uni0937 uni0938 uni0938_uni0930_uni094D.vatu uni0938_uni094D.haln uni0939 uni0939_uni0930_uni094D.vatu uni093B uni093D uni093E uni093F uni0940 uni0940_uni0930_uni094D.abvs uni0945_uni0930_uni094D.abvs uni0946_uni0930_uni094D.abvs uni0947_uni0930_uni094D.abvs uni0948_uni0930_uni094D.abvs uni0949 uni0949_uni0930_uni094D.abvs uni094A uni094A_uni0930_uni094D.abvs uni094B uni094B_uni0930_uni094D.abvs uni094C uni094C_uni0930_uni094D.abvs uni094E uni094F uni0950 uni0958 uni0959 uni095A uni095A_uni094D.haln uni095B uni095C uni095D uni095E uni095E_uni0930_uni094D.vatu uni095F uni095F_uni0930_uni094D.vatu uni0960 uni0961 uni0964 uni0965 uni0966 uni0967 uni0968 uni0969 uni096A uni096B uni096C uni096D uni096E uni096F uni0970 uni0971 uni0972 uni0973 uni0974 uni0975 uni0976 uni0977 uni0978 uni0979 uni097A uni097B uni097C uni097D uni097E uni097F uni1E0C uni1E0D uni1E34 uni1E35 uni1E36 uni1E37 uni1E38 uni1E39 uni1E3A uni1E3B uni1E42 uni1E43 uni1E44 uni1E45 uni1E46 uni1E47 uni1E48 uni1E49 uni1E4C uni1E4D uni1E58 uni1E59 uni1E5A uni1E5B uni1E5C uni1E5D uni1E5E uni1E5F uni1E62 uni1E63 uni1E6C uni1E6D uni1E8E uni1E8F uni1E9E uni200C uni200D uni2044 uni20B9 uni25CC uogonek uring utilde v w wacute wcircumflex wdieresis wgrave x y yacute ycircumflex ydieresis yen ygrave z zacute zcaron zdotaccent zero]; +@GDEF_mark = [acutecomb dotbelowcomb gravecomb hookabovecomb tildecomb uni0302 uni0304 uni0305 uni0306 uni0307 uni0308 uni030A uni030B uni030C uni0326 uni0327 uni0328 uni0331 uni0900 uni0901 uni0902 uni0930_uni094D.blwf uni0930_uni094D.rphf uni093A uni093C uni0941 uni0942 uni0943 uni0944 uni0945 uni0946 uni0947 uni0948 uni094D uni0951 uni0952 uni0953 uni0954 uni0955 uni0956 uni0957 uni0962 uni0963]; @GDEF_ligature = [uni0915_uni0930_uni094D.vatu uni0915_uni094D.haln uni0915_uni094D_uni0937.akhn uni0915_uni094D_uni0937.half uni0916_uni0930_uni094D.vatu uni0916_uni094D.haln uni0917_uni0930_uni094D.vatu uni0917_uni094D.half uni0917_uni094D.haln uni0918_uni0930_uni094D.vatu uni0918_uni094D.half uni0918_uni094D.haln uni0919_uni0930_uni094D.vatu uni0919_uni094D.half uni0919_uni094D.haln uni091A_uni094D.half uni091A_uni094D.haln uni091B_uni0930_uni094D.vatu uni091B_uni094D.half uni091B_uni094D.haln uni091C_uni094D.half uni091C_uni094D.haln uni091C_uni094D_uni091E.akhn uni091C_uni094D_uni091E.half uni091D_uni0930_uni094D.vatu uni091D_uni094D.half uni091D_uni094D.haln uni091E_uni0930_uni094D.vatu uni091E_uni094D.half uni091E_uni094D.haln uni091F_uni0930_uni094D.vatu uni091F_uni094D.haln uni0920_uni0930_uni094D.vatu uni0920_uni094D.haln uni0921_uni0930_uni094D.vatu uni0921_uni094D.haln uni0922_uni094D.haln uni0923_uni094D.half uni0923_uni094D.haln uni0924_uni0930_uni094D.vatu uni0924_uni094D.half uni0924_uni094D.haln uni0924_uni094D_uni0924.pres uni0925_uni0930_uni094D.vatu uni0925_uni094D.half uni0925_uni094D.haln uni0926_uni0930_uni094D.vatu uni0926_uni094D.half uni0926_uni094D.haln uni0926_uni094D_uni0926.pres uni0926_uni094D_uni0927.pres uni0926_uni094D_uni092F.pres uni0926_uni094D_uni0935.pres uni0927_uni0930_uni094D.vatu uni0927_uni094D.half uni0927_uni094D.haln uni0928_uni0930_uni094D.vatu uni0928_uni094D.half uni0928_uni094D.haln uni0929_uni0930_uni094D.vatu uni0929_uni094D.half uni0929_uni094D.haln uni092A_uni0930_uni094D.vatu uni092A_uni094D.half uni092A_uni094D.haln uni092B_uni0930_uni094D.vatu uni092B_uni094D.half uni092B_uni094D.haln uni092C_uni0930_uni094D.vatu uni092C_uni094D.half uni092C_uni094D.haln uni092D_uni0930_uni094D.vatu uni092D_uni094D.half uni092D_uni094D.haln uni092E_uni0930_uni094D.vatu uni092E_uni094D.half uni092E_uni094D.haln uni092F_uni0930_uni094D.vatu uni092F_uni094D.half uni092F_uni094D.haln uni0930_uni0930_uni094D.vatu uni0930_uni0941.blws uni0930_uni0942.blws uni0930_uni094D.half uni0931_uni0930_uni094D.vatu uni0931_uni094D.haln uni0932_uni0930_uni094D.vatu uni0932_uni094D.half uni0932_uni094D.haln uni0933_uni0930_uni094D.vatu uni0933_uni094D.half uni0933_uni094D.haln uni0934_uni0930_uni094D.vatu uni0934_uni094D.half uni0934_uni094D.haln uni0935_uni0930_uni094D.vatu uni0935_uni094D.half uni0935_uni094D.haln uni0936_uni0930_uni094D.vatu uni0936_uni094D.half uni0937_uni0930_uni094D.vatu uni0937_uni094D.half uni0937_uni094D.haln uni0938_uni094D.half uni0939_uni0943.blws uni0939_uni094D.half uni0939_uni094D.haln uni0939_uni094D_uni092E.pres uni093E_uni0930_uni094D.abvs uni0940_uni0902.abvs uni0945_uni0902.abvs uni0946_uni0902.abvs uni0947_uni0902.abvs uni0948_uni0902.abvs uni0949_uni0902.abvs uni094A_uni0902.abvs uni094B_uni0902.abvs uni094C_uni0902.abvs uni0958_uni0930_uni094D.vatu uni0958_uni094D.half uni0958_uni094D.haln uni0959_uni0930_uni094D.vatu uni0959_uni094D.half uni0959_uni094D.haln uni095A_uni0930_uni094D.vatu uni095A_uni094D.half uni095B_uni0930_uni094D.vatu uni095B_uni094D.half uni095B_uni094D.haln uni095C_uni0930_uni094D.vatu uni095C_uni094D.haln uni095D_uni0930_uni094D.vatu uni095D_uni094D.haln uni095E_uni094D.half uni095E_uni094D.haln uni095F_uni094D.half uni095F_uni094D.haln uniFB01 uniFB02]; @GDEF_component = []; @@ -428,4 +427,4 @@ feature blwm { @GDEF_component; LigatureCaretByPos uniFB01 32; LigatureCaretByPos uniFB02 84; -} GDEF; +} GDEF; \ No newline at end of file diff --git a/sources/Samaano-Wide-Bold.ufo/fontinfo.plist b/sources/Samaano-Wide-Bold.ufo/fontinfo.plist index c419e541d..1e1b1c6c4 100644 --- a/sources/Samaano-Wide-Bold.ufo/fontinfo.plist +++ b/sources/Samaano-Wide-Bold.ufo/fontinfo.plist @@ -95,7 +95,7 @@ This license is available with a FAQ at: http://scripts.sil.org/OFL openTypeOS2WinAscent 2476 openTypeOS2WinDescent - 958 + 978 openTypeVheaVertTypoLineGap 0 postscriptFontName diff --git a/sources/Samaano-Wide-Bold.ufo/glyphs/contents.plist b/sources/Samaano-Wide-Bold.ufo/glyphs/contents.plist index 43e9c29e9..cb08942a7 100644 --- a/sources/Samaano-Wide-Bold.ufo/glyphs/contents.plist +++ b/sources/Samaano-Wide-Bold.ufo/glyphs/contents.plist @@ -1004,8 +1004,6 @@ uni0930_uni0941.blws.glif uni0930_uni0942.blws uni0930_uni0942.blws.glif - uni0930_uni094D.abvs - uni0930_uni094D_.abvs.glif uni0930_uni094D.blwf uni0930_uni094D_.blwf.glif uni0930_uni094D.half @@ -1014,8 +1012,6 @@ uni0930_uni094D_.haln.glif uni0930_uni094D.rphf uni0930_uni094D_.rphf.glif - uni0930_uni094D.vatu - uni0930_uni094D_.vatu.glif uni0931 uni0931.glif uni0931_uni0930_uni094D.vatu diff --git a/sources/Samaano-Wide-Bold.ufo/glyphs/uni0930_uni094D_.abvs.glif b/sources/Samaano-Wide-Bold.ufo/glyphs/uni0930_uni094D_.abvs.glif deleted file mode 100644 index 881aca28d..000000000 --- a/sources/Samaano-Wide-Bold.ufo/glyphs/uni0930_uni094D_.abvs.glif +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/Samaano-Wide-Bold.ufo/glyphs/uni0930_uni094D_.vatu.glif b/sources/Samaano-Wide-Bold.ufo/glyphs/uni0930_uni094D_.vatu.glif deleted file mode 100644 index d791bd977..000000000 --- a/sources/Samaano-Wide-Bold.ufo/glyphs/uni0930_uni094D_.vatu.glif +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/sources/Samaano-Wide-Bold.ufo/lib.plist b/sources/Samaano-Wide-Bold.ufo/lib.plist index 26761d1d8..2e06bed63 100644 --- a/sources/Samaano-Wide-Bold.ufo/lib.plist +++ b/sources/Samaano-Wide-Bold.ufo/lib.plist @@ -647,12 +647,10 @@ uni0930_uni0930_uni094D.vatu uni0930_uni0941.blws uni0930_uni0942.blws - uni0930_uni094D.abvs uni0930_uni094D.blwf uni0930_uni094D.half uni0930_uni094D.haln uni0930_uni094D.rphf - uni0930_uni094D.vatu uni0931_uni0930_uni094D.vatu uni0931_uni094D.haln uni0932_uni0930_uni094D.vatu @@ -1725,8 +1723,6 @@ base uni0930_uni0942.blws base - uni0930_uni094D.abvs - base uni0930_uni094D.blwf base uni0930_uni094D.half @@ -1735,8 +1731,6 @@ base uni0930_uni094D.rphf base - uni0930_uni094D.vatu - base uni0931 base uni0931_uni0930_uni094D.vatu diff --git a/sources/Samaano-Wide-Thin-Slanted.sfd b/sources/Samaano-Wide-Thin-Slanted.sfd index 207643cdf..110cd3787 100644 --- a/sources/Samaano-Wide-Thin-Slanted.sfd +++ b/sources/Samaano-Wide-Thin-Slanted.sfd @@ -23,7 +23,7 @@ OS2Version: 0 OS2_WeightWidthSlopeOnly: 1 OS2_UseTypoMetrics: 1 CreationTime: 1729163604 -ModificationTime: 1729412738 +ModificationTime: 1729498043 PfmFamily: 49 TTFWeight: 100 TTFWidth: 9 @@ -4354,7 +4354,7 @@ NameList: AGL For New Fonts DisplaySize: -96 AntiAlias: 1 FitToEm: 1 -WinInfo: 0 13 5 +WinInfo: 65611 13 5 BeginPrivate: 0 EndPrivate Grid @@ -4366,7 +4366,7 @@ Grid 2048 1023 l 1024 EndSplineSet AnchorClass2: "blwm" "'blwm' Below Base Mark in Devanagari2 lookup 2-1" "abvm" "'abvm' Above Base Mark in Devanagari2 lookup 1-1" "base" "markMarkPositioninglookup0 subtable" "top" "markMarkPositioninglookup0 subtable" "base""" "top""" -BeginChars: 65711 718 +BeginChars: 65711 716 StartChar: .notdef Encoding: 0 0 0 @@ -6800,8 +6800,7 @@ Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "top" 466 1888 mark 0 -AnchorPoint: "top" 466 1888 mark 0 +AnchorPoint: "top" 1234 712 mark 0 LayerCount: 2 Fore SplineSet @@ -8735,8 +8734,7 @@ Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "top" 592 1881 mark 0 -AnchorPoint: "top" 592 1881 mark 0 +AnchorPoint: "top" 1360 577 mark 0 LayerCount: 2 Fore SplineSet @@ -11371,8 +11369,7 @@ Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "top" 492 1855 mark 0 -AnchorPoint: "top" 492 1855 mark 0 +AnchorPoint: "top" 1764 1815 mark 0 LayerCount: 2 Fore SplineSet @@ -12055,8 +12052,7 @@ Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "top" 506 1427 mark 0 -AnchorPoint: "top" 471 1881 mark 0 +AnchorPoint: "top" 1474 1219 mark 0 LayerCount: 2 Fore SplineSet @@ -12080,8 +12076,7 @@ Width: 0 VWidth: 0 GlyphClass: 2 Flags: HW -AnchorPoint: "top" 488 1532 mark 0 -AnchorPoint: "top" 488 1532 mark 0 +AnchorPoint: "top" 1576 1476 mark 0 LayerCount: 2 Fore SplineSet @@ -19127,36 +19122,8 @@ EndSplineSet Ligature2: "blwsBelowBaseSubstitutionsinDevanagarilookup12 subtable" uni0930 uni0942 EndChar -StartChar: uni0930_uni094D.abvs -Encoding: 65628 -1 497 -GlifName: uni0930_uni094D_.abvs -Width: 2048 -VWidth: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -684.154296875 1550 m 257 - 744.154296875 1550 l 257 - 860.260742188 1869 l 257 - 800.260742188 1869 l 257 - 684.154296875 1550 l 257 -972.66796875 2002 m 257 - 950.830078125 1942 l 257 - 1278.83007812 1942 l 257 - 1300.66796875 2002 l 257 - 972.66796875 2002 l 257 -972.66796875 2002 m 257 - 800.260742188 1869 l 257 - 860.260742188 1869 l 257 - 950.830078125 1942 l 257 - 972.66796875 2002 l 257 -EndSplineSet -EndChar - StartChar: uni0930_uni094D.blwf -Encoding: 65629 -1 498 +Encoding: 65629 -1 497 GlifName: uni0930_uni094D_.blwf Width: 2048 VWidth: 0 @@ -19185,7 +19152,7 @@ Ligature2: "blwfBelowBaseFormsinDevanagarilookup0 subtable" uni094D uni0930 EndChar StartChar: uni0930_uni094D.half -Encoding: 65630 -1 499 +Encoding: 65630 -1 498 GlifName: uni0930_uni094D_.half Width: 2048 VWidth: 0 @@ -19220,7 +19187,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0930 uni094D EndChar StartChar: uni0930_uni094D.haln -Encoding: 65631 -1 500 +Encoding: 65631 -1 499 GlifName: uni0930_uni094D_.haln Width: 2048 VWidth: 0 @@ -19264,7 +19231,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0930 uni094D EndChar StartChar: uni0930_uni094D.rphf -Encoding: 65632 -1 501 +Encoding: 65632 -1 500 GlifName: uni0930_uni094D_.rphf Width: 2048 VWidth: 0 @@ -19297,26 +19264,8 @@ EndSplineSet Ligature2: "rphfRephForminDevanagarilookup0 subtable" uni0930 uni094D EndChar -StartChar: uni0930_uni094D.vatu -Encoding: 65633 -1 502 -GlifName: uni0930_uni094D_.vatu -Width: 2048 -VWidth: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -126 0 m 257 - 383 0 l 257 - 1929.9375 357 l 257 - 1951.41113281 416 l 257 - 126 0 l 257 -EndSplineSet -EndChar - StartChar: uni0931 -Encoding: 2353 2353 503 +Encoding: 2353 2353 501 GlifName: uni0931 Width: 2048 VWidth: 0 @@ -19355,7 +19304,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0930 uni093C EndChar StartChar: uni0931_uni0930_uni094D.vatu -Encoding: 65634 -1 504 +Encoding: 65634 -1 502 GlifName: uni0931_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -19399,7 +19348,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0931 uni0930_uni09 EndChar StartChar: uni0931_uni094D.haln -Encoding: 65635 -1 505 +Encoding: 65635 -1 503 GlifName: uni0931_uni094D_.haln Width: 2048 VWidth: 0 @@ -19448,7 +19397,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0931 uni094D EndChar StartChar: uni0932 -Encoding: 2354 2354 506 +Encoding: 2354 2354 504 GlifName: uni0932 Width: 2048 VWidth: 0 @@ -19486,7 +19435,7 @@ EndSplineSet EndChar StartChar: uni0932_uni0930_uni094D.vatu -Encoding: 65636 -1 507 +Encoding: 65636 -1 505 GlifName: uni0932_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -19530,7 +19479,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0932 uni0930_uni09 EndChar StartChar: uni0932_uni094D.half -Encoding: 65637 -1 508 +Encoding: 65637 -1 506 GlifName: uni0932_uni094D_.half Width: 2048 VWidth: 0 @@ -19564,7 +19513,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0932 uni094D EndChar StartChar: uni0932_uni094D.haln -Encoding: 65638 -1 509 +Encoding: 65638 -1 507 GlifName: uni0932_uni094D_.haln Width: 2048 VWidth: 0 @@ -19613,7 +19562,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0932 uni094D EndChar StartChar: uni0933 -Encoding: 2355 2355 510 +Encoding: 2355 2355 508 GlifName: uni0933 Width: 2048 VWidth: 0 @@ -19656,7 +19605,7 @@ EndSplineSet EndChar StartChar: uni0933_uni0930_uni094D.vatu -Encoding: 65639 -1 511 +Encoding: 65639 -1 509 GlifName: uni0933_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -19710,7 +19659,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0933 uni0930_uni09 EndChar StartChar: uni0933_uni094D.half -Encoding: 65640 -1 512 +Encoding: 65640 -1 510 GlifName: uni0933_uni094D_.half Width: 2048 VWidth: 0 @@ -19754,7 +19703,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0933 uni094D EndChar StartChar: uni0933_uni094D.haln -Encoding: 65641 -1 513 +Encoding: 65641 -1 511 GlifName: uni0933_uni094D_.haln Width: 2048 VWidth: 0 @@ -19808,7 +19757,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0933 uni094D EndChar StartChar: uni0934 -Encoding: 2356 2356 514 +Encoding: 2356 2356 512 GlifName: uni0934 Width: 2048 VWidth: 0 @@ -19857,7 +19806,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0933 uni093C EndChar StartChar: uni0934_uni0930_uni094D.vatu -Encoding: 65642 -1 515 +Encoding: 65642 -1 513 GlifName: uni0934_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -19916,7 +19865,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0934 uni0930_uni09 EndChar StartChar: uni0934_uni094D.half -Encoding: 65643 -1 516 +Encoding: 65643 -1 514 GlifName: uni0934_uni094D_.half Width: 2048 VWidth: 0 @@ -19965,7 +19914,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0934 uni094D EndChar StartChar: uni0934_uni094D.haln -Encoding: 65644 -1 517 +Encoding: 65644 -1 515 GlifName: uni0934_uni094D_.haln Width: 2048 VWidth: 0 @@ -20024,7 +19973,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0934 uni094D EndChar StartChar: uni0935 -Encoding: 2357 2357 518 +Encoding: 2357 2357 516 GlifName: uni0935 Width: 2048 VWidth: 0 @@ -20062,7 +20011,7 @@ EndSplineSet EndChar StartChar: uni0935_uni0930_uni094D.vatu -Encoding: 65645 -1 519 +Encoding: 65645 -1 517 GlifName: uni0935_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -20106,7 +20055,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0935 uni0930_uni09 EndChar StartChar: uni0935_uni094D.half -Encoding: 65646 -1 520 +Encoding: 65646 -1 518 GlifName: uni0935_uni094D_.half Width: 2048 VWidth: 0 @@ -20140,7 +20089,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0935 uni094D EndChar StartChar: uni0935_uni094D.haln -Encoding: 65647 -1 521 +Encoding: 65647 -1 519 GlifName: uni0935_uni094D_.haln Width: 2048 VWidth: 0 @@ -20189,7 +20138,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0935 uni094D EndChar StartChar: uni0936 -Encoding: 2358 2358 522 +Encoding: 2358 2358 520 GlifName: uni0936 Width: 2048 VWidth: 0 @@ -20237,7 +20186,7 @@ EndSplineSet EndChar StartChar: uni0936_uni0930_uni094D.vatu -Encoding: 65648 -1 523 +Encoding: 65648 -1 521 GlifName: uni0936_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -20291,7 +20240,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0936 uni0930_uni09 EndChar StartChar: uni0936_uni094D.half -Encoding: 65649 -1 524 +Encoding: 65649 -1 522 GlifName: uni0936_uni094D_.half Width: 2048 VWidth: 0 @@ -20330,7 +20279,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0936 uni094D EndChar StartChar: uni0936_uni094D.haln -Encoding: 65650 -1 525 +Encoding: 65650 -1 523 GlifName: uni0936_uni094D_.haln Width: 2048 VWidth: 0 @@ -20389,7 +20338,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0936 uni094D EndChar StartChar: uni0937 -Encoding: 2359 2359 526 +Encoding: 2359 2359 524 GlifName: uni0937 Width: 2048 VWidth: 0 @@ -20427,7 +20376,7 @@ EndSplineSet EndChar StartChar: uni0937_uni0930_uni094D.vatu -Encoding: 65651 -1 527 +Encoding: 65651 -1 525 GlifName: uni0937_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -20471,7 +20420,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0937 uni0930_uni09 EndChar StartChar: uni0937_uni094D.half -Encoding: 65652 -1 528 +Encoding: 65652 -1 526 GlifName: uni0937_uni094D_.half Width: 2048 VWidth: 0 @@ -20505,7 +20454,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0937 uni094D EndChar StartChar: uni0937_uni094D.haln -Encoding: 65653 -1 529 +Encoding: 65653 -1 527 GlifName: uni0937_uni094D_.haln Width: 2048 VWidth: 0 @@ -20554,7 +20503,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0937 uni094D EndChar StartChar: uni0938 -Encoding: 2360 2360 530 +Encoding: 2360 2360 528 GlifName: uni0938 Width: 2048 VWidth: 0 @@ -20592,7 +20541,7 @@ EndSplineSet EndChar StartChar: uni0938_uni0930_uni094D.vatu -Encoding: 65654 -1 531 +Encoding: 65654 -1 529 GlifName: uni0938_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -20636,7 +20585,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0938 uni0930_uni09 EndChar StartChar: uni0938_uni094D.half -Encoding: 65655 -1 532 +Encoding: 65655 -1 530 GlifName: uni0938_uni094D_.half Width: 2048 VWidth: 0 @@ -20670,7 +20619,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0938 uni094D EndChar StartChar: uni0938_uni094D.haln -Encoding: 65656 -1 533 +Encoding: 65656 -1 531 GlifName: uni0938_uni094D_.haln Width: 2048 VWidth: 0 @@ -20719,7 +20668,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0938 uni094D EndChar StartChar: uni0939 -Encoding: 2361 2361 534 +Encoding: 2361 2361 532 GlifName: uni0939 Width: 2048 VWidth: 0 @@ -20772,7 +20721,7 @@ EndSplineSet EndChar StartChar: uni0939_uni0930_uni094D.vatu -Encoding: 65657 -1 535 +Encoding: 65657 -1 533 GlifName: uni0939_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -20831,7 +20780,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0939 uni0930_uni09 EndChar StartChar: uni0939_uni0943.blws -Encoding: 65658 -1 536 +Encoding: 65658 -1 534 GlifName: uni0939_uni0943.blws Width: 2048 VWidth: 0 @@ -20890,7 +20839,7 @@ Ligature2: "blwsBelowBaseSubstitutionsinDevanagarilookup12 subtable" uni0939 uni EndChar StartChar: uni0939_uni094D.half -Encoding: 65659 -1 537 +Encoding: 65659 -1 535 GlifName: uni0939_uni094D_.half Width: 2048 VWidth: 0 @@ -20939,7 +20888,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0939 uni094D EndChar StartChar: uni0939_uni094D.haln -Encoding: 65660 -1 538 +Encoding: 65660 -1 536 GlifName: uni0939_uni094D_.haln Width: 2048 VWidth: 0 @@ -21003,7 +20952,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0939 uni094D EndChar StartChar: uni0939_uni094D_uni092E.pres -Encoding: 65661 -1 539 +Encoding: 65661 -1 537 GlifName: uni0939_uni094D__uni092E_.pres Width: 2048 VWidth: 0 @@ -21077,7 +21026,7 @@ Ligature2: "presPreBaseSubstitutionsinDevanagarilookup0 subtable" uni0939_uni094 EndChar StartChar: uni093A -Encoding: 2362 2362 540 +Encoding: 2362 2362 538 GlifName: uni093A_ Width: 2048 VWidth: 0 @@ -21095,7 +21044,7 @@ EndSplineSet EndChar StartChar: uni093B -Encoding: 2363 2363 541 +Encoding: 2363 2363 539 GlifName: uni093B_ Width: 2048 VWidth: 0 @@ -21118,7 +21067,7 @@ EndSplineSet EndChar StartChar: uni093C -Encoding: 2364 2364 542 +Encoding: 2364 2364 540 GlifName: uni093C_ Width: 2048 VWidth: 0 @@ -21136,7 +21085,7 @@ EndSplineSet EndChar StartChar: uni093D -Encoding: 2365 2365 543 +Encoding: 2365 2365 541 GlifName: uni093D_ Width: 2048 VWidth: 0 @@ -21169,7 +21118,7 @@ EndSplineSet EndChar StartChar: uni093E -Encoding: 2366 2366 544 +Encoding: 2366 2366 542 GlifName: uni093E_ Width: 2048 VWidth: 0 @@ -21192,7 +21141,7 @@ EndSplineSet EndChar StartChar: uni093E_uni0930_uni094D.abvs -Encoding: 65662 -1 545 +Encoding: 65662 -1 543 GlifName: uni093E__uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -21231,7 +21180,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni093E uni0 EndChar StartChar: uni093F -Encoding: 2367 2367 546 +Encoding: 2367 2367 544 GlifName: uni093F_ Width: 2048 VWidth: 0 @@ -21264,7 +21213,7 @@ EndSplineSet EndChar StartChar: uni0940 -Encoding: 2368 2368 547 +Encoding: 2368 2368 545 GlifName: uni0940 Width: 2048 VWidth: 0 @@ -21297,7 +21246,7 @@ EndSplineSet EndChar StartChar: uni0940_uni0902.abvs -Encoding: 65663 -1 548 +Encoding: 65663 -1 546 GlifName: uni0940_uni0902.abvs Width: 2048 VWidth: 0 @@ -21336,7 +21285,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0940 uni0 EndChar StartChar: uni0940_uni0930_uni094D.abvs -Encoding: 65664 -1 549 +Encoding: 65664 -1 547 GlifName: uni0940_uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -21385,7 +21334,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0940 uni0 EndChar StartChar: uni0941 -Encoding: 2369 2369 550 +Encoding: 2369 2369 548 GlifName: uni0941 Width: 0 VWidth: 0 @@ -21419,7 +21368,7 @@ EndSplineSet EndChar StartChar: uni0942 -Encoding: 2370 2370 551 +Encoding: 2370 2370 549 GlifName: uni0942 Width: 0 VWidth: 0 @@ -21453,7 +21402,7 @@ EndSplineSet EndChar StartChar: uni0943 -Encoding: 2371 2371 552 +Encoding: 2371 2371 550 GlifName: uni0943 Width: 0 VWidth: 0 @@ -21482,7 +21431,7 @@ EndSplineSet EndChar StartChar: uni0944 -Encoding: 2372 2372 553 +Encoding: 2372 2372 551 GlifName: uni0944 Width: 0 VWidth: 0 @@ -21516,7 +21465,7 @@ EndSplineSet EndChar StartChar: uni0945 -Encoding: 2373 2373 554 +Encoding: 2373 2373 552 GlifName: uni0945 Width: 2048 VWidth: 0 @@ -21549,7 +21498,7 @@ EndSplineSet EndChar StartChar: uni0945_uni0902.abvs -Encoding: 65673 -1 555 +Encoding: 65673 -1 553 GlifName: uni0945_uni0902.abvs Width: 2048 VWidth: 0 @@ -21588,7 +21537,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0945 uni0 EndChar StartChar: uni0945_uni0930_uni094D.abvs -Encoding: 65674 -1 556 +Encoding: 65674 -1 554 GlifName: uni0945_uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -21637,7 +21586,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0945 uni0 EndChar StartChar: uni0946 -Encoding: 2374 2374 557 +Encoding: 2374 2374 555 GlifName: uni0946 Width: 2048 VWidth: 0 @@ -21670,7 +21619,7 @@ EndSplineSet EndChar StartChar: uni0946_uni0902.abvs -Encoding: 65675 -1 558 +Encoding: 65675 -1 556 GlifName: uni0946_uni0902.abvs Width: 2048 VWidth: 0 @@ -21709,7 +21658,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0946 uni0 EndChar StartChar: uni0946_uni0930_uni094D.abvs -Encoding: 65676 -1 559 +Encoding: 65676 -1 557 GlifName: uni0946_uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -21758,7 +21707,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0946 uni0 EndChar StartChar: uni0947 -Encoding: 2375 2375 560 +Encoding: 2375 2375 558 GlifName: uni0947 Width: 2048 VWidth: 0 @@ -21781,7 +21730,7 @@ EndSplineSet EndChar StartChar: uni0947_uni0902.abvs -Encoding: 65677 -1 561 +Encoding: 65677 -1 559 GlifName: uni0947_uni0902.abvs Width: 2048 VWidth: 0 @@ -21810,7 +21759,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0947 uni0 EndChar StartChar: uni0947_uni0930_uni094D.abvs -Encoding: 65678 -1 562 +Encoding: 65678 -1 560 GlifName: uni0947_uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -21849,7 +21798,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0947 uni0 EndChar StartChar: uni0948 -Encoding: 2376 2376 563 +Encoding: 2376 2376 561 GlifName: uni0948 Width: 2048 VWidth: 0 @@ -21877,7 +21826,7 @@ EndSplineSet EndChar StartChar: uni0948_uni0902.abvs -Encoding: 65679 -1 564 +Encoding: 65679 -1 562 GlifName: uni0948_uni0902.abvs Width: 2048 VWidth: 0 @@ -21911,7 +21860,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0948 uni0 EndChar StartChar: uni0948_uni0930_uni094D.abvs -Encoding: 65680 -1 565 +Encoding: 65680 -1 563 GlifName: uni0948_uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -21955,7 +21904,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0948 uni0 EndChar StartChar: uni0949 -Encoding: 2377 2377 566 +Encoding: 2377 2377 564 GlifName: uni0949 Width: 2048 VWidth: 0 @@ -21993,7 +21942,7 @@ EndSplineSet EndChar StartChar: uni0949_uni0902.abvs -Encoding: 65681 -1 567 +Encoding: 65681 -1 565 GlifName: uni0949_uni0902.abvs Width: 2048 VWidth: 0 @@ -22037,7 +21986,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0949 uni0 EndChar StartChar: uni0949_uni0930_uni094D.abvs -Encoding: 65682 -1 568 +Encoding: 65682 -1 566 GlifName: uni0949_uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -22091,7 +22040,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0949 uni0 EndChar StartChar: uni094A -Encoding: 2378 2378 569 +Encoding: 2378 2378 567 GlifName: uni094A_ Width: 2048 VWidth: 0 @@ -22129,7 +22078,7 @@ EndSplineSet EndChar StartChar: uni094A_uni0902.abvs -Encoding: 65683 -1 570 +Encoding: 65683 -1 568 GlifName: uni094A__uni0902.abvs Width: 2048 VWidth: 0 @@ -22173,7 +22122,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094A uni0 EndChar StartChar: uni094A_uni0930_uni094D.abvs -Encoding: 65684 -1 571 +Encoding: 65684 -1 569 GlifName: uni094A__uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -22227,7 +22176,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094A uni0 EndChar StartChar: uni094B -Encoding: 2379 2379 572 +Encoding: 2379 2379 570 GlifName: uni094B_ Width: 2048 VWidth: 0 @@ -22255,7 +22204,7 @@ EndSplineSet EndChar StartChar: uni094B_uni0902.abvs -Encoding: 65685 -1 573 +Encoding: 65685 -1 571 GlifName: uni094B__uni0902.abvs Width: 2048 VWidth: 0 @@ -22289,7 +22238,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094B uni0 EndChar StartChar: uni094B_uni0930_uni094D.abvs -Encoding: 65686 -1 574 +Encoding: 65686 -1 572 GlifName: uni094B__uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -22333,7 +22282,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094B uni0 EndChar StartChar: uni094C -Encoding: 2380 2380 575 +Encoding: 2380 2380 573 GlifName: uni094C_ Width: 2048 VWidth: 0 @@ -22366,7 +22315,7 @@ EndSplineSet EndChar StartChar: uni094C_uni0902.abvs -Encoding: 65687 -1 576 +Encoding: 65687 -1 574 GlifName: uni094C__uni0902.abvs Width: 2048 VWidth: 0 @@ -22405,7 +22354,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094C uni0 EndChar StartChar: uni094C_uni0930_uni094D.abvs -Encoding: 65688 -1 577 +Encoding: 65688 -1 575 GlifName: uni094C__uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -22454,7 +22403,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094C uni0 EndChar StartChar: uni094D -Encoding: 2381 2381 578 +Encoding: 2381 2381 576 GlifName: uni094D_ Width: 0 VWidth: 0 @@ -22478,7 +22427,7 @@ EndSplineSet EndChar StartChar: uni094E -Encoding: 2382 2382 579 +Encoding: 2382 2382 577 GlifName: uni094E_ Width: 2048 VWidth: 0 @@ -22501,7 +22450,7 @@ EndSplineSet EndChar StartChar: uni094F -Encoding: 2383 2383 580 +Encoding: 2383 2383 578 GlifName: uni094F_ Width: 2048 VWidth: 0 @@ -22554,7 +22503,7 @@ EndSplineSet EndChar StartChar: uni0950 -Encoding: 2384 2384 581 +Encoding: 2384 2384 579 GlifName: uni0950 Width: 2048 VWidth: 0 @@ -22612,7 +22561,7 @@ EndSplineSet EndChar StartChar: uni0951 -Encoding: 2385 2385 582 +Encoding: 2385 2385 580 GlifName: uni0951 Width: 2048 VWidth: 0 @@ -22630,7 +22579,7 @@ EndSplineSet EndChar StartChar: uni0952 -Encoding: 2386 2386 583 +Encoding: 2386 2386 581 GlifName: uni0952 Width: 2048 VWidth: 0 @@ -22649,7 +22598,7 @@ EndSplineSet EndChar StartChar: uni0953 -Encoding: 2387 2387 584 +Encoding: 2387 2387 582 GlifName: uni0953 Width: 2048 VWidth: 0 @@ -22667,7 +22616,7 @@ EndSplineSet EndChar StartChar: uni0954 -Encoding: 2388 2388 585 +Encoding: 2388 2388 583 GlifName: uni0954 Width: 2048 VWidth: 0 @@ -22685,7 +22634,7 @@ EndSplineSet EndChar StartChar: uni0955 -Encoding: 2389 2389 586 +Encoding: 2389 2389 584 GlifName: uni0955 Width: 2048 VWidth: 0 @@ -22723,7 +22672,7 @@ EndSplineSet EndChar StartChar: uni0956 -Encoding: 2390 2390 587 +Encoding: 2390 2390 585 GlifName: uni0956 Width: 2048 VWidth: 0 @@ -22756,7 +22705,7 @@ EndSplineSet EndChar StartChar: uni0957 -Encoding: 2391 2391 588 +Encoding: 2391 2391 586 GlifName: uni0957 Width: 2048 VWidth: 0 @@ -22804,7 +22753,7 @@ EndSplineSet EndChar StartChar: uni0958 -Encoding: 2392 2392 589 +Encoding: 2392 2392 587 GlifName: uni0958 Width: 2048 VWidth: 0 @@ -22858,7 +22807,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0915 uni093C EndChar StartChar: uni0958_uni0930_uni094D.vatu -Encoding: 65689 -1 590 +Encoding: 65689 -1 588 GlifName: uni0958_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -22917,7 +22866,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0958 uni0930_uni09 EndChar StartChar: uni0958_uni094D.half -Encoding: 65690 -1 591 +Encoding: 65690 -1 589 GlifName: uni0958_uni094D_.half Width: 2048 VWidth: 0 @@ -22966,7 +22915,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0958 uni094D EndChar StartChar: uni0958_uni094D.haln -Encoding: 65691 -1 592 +Encoding: 65691 -1 590 GlifName: uni0958_uni094D_.haln Width: 2048 VWidth: 0 @@ -23030,7 +22979,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0958 uni094D EndChar StartChar: uni0959 -Encoding: 2393 2393 593 +Encoding: 2393 2393 591 GlifName: uni0959 Width: 2048 VWidth: 0 @@ -23089,7 +23038,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0916 uni093C EndChar StartChar: uni0959_uni0930_uni094D.vatu -Encoding: 65692 -1 594 +Encoding: 65692 -1 592 GlifName: uni0959_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -23153,7 +23102,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0959 uni0930_uni09 EndChar StartChar: uni0959_uni094D.half -Encoding: 65693 -1 595 +Encoding: 65693 -1 593 GlifName: uni0959_uni094D_.half Width: 2048 VWidth: 0 @@ -23207,7 +23156,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0959 uni094D EndChar StartChar: uni0959_uni094D.haln -Encoding: 65694 -1 596 +Encoding: 65694 -1 594 GlifName: uni0959_uni094D_.haln Width: 2048 VWidth: 0 @@ -23276,7 +23225,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0959 uni094D EndChar StartChar: uni095A -Encoding: 2394 2394 597 +Encoding: 2394 2394 595 GlifName: uni095A_ Width: 2048 VWidth: 0 @@ -23320,7 +23269,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0917 uni093C EndChar StartChar: uni095A_uni0930_uni094D.vatu -Encoding: 65695 -1 598 +Encoding: 65695 -1 596 GlifName: uni095A__uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -23369,7 +23318,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095A uni0930_uni09 EndChar StartChar: uni095A_uni094D.half -Encoding: 65696 -1 599 +Encoding: 65696 -1 597 GlifName: uni095A__uni094D_.half Width: 2048 VWidth: 0 @@ -23408,7 +23357,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni095A uni094D EndChar StartChar: uni095A_uni094D.haln -Encoding: 65697 -1 600 +Encoding: 65697 -1 598 GlifName: uni095A__uni094D_.haln Width: 2048 VWidth: 0 @@ -23462,7 +23411,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095A uni094D EndChar StartChar: uni095B -Encoding: 2395 2395 601 +Encoding: 2395 2395 599 GlifName: uni095B_ Width: 2048 VWidth: 0 @@ -23511,7 +23460,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni091C uni093C EndChar StartChar: uni095B_uni0930_uni094D.vatu -Encoding: 65698 -1 602 +Encoding: 65698 -1 600 GlifName: uni095B__uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -23565,7 +23514,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095B uni0930_uni09 EndChar StartChar: uni095B_uni094D.half -Encoding: 65699 -1 603 +Encoding: 65699 -1 601 GlifName: uni095B__uni094D_.half Width: 2048 VWidth: 0 @@ -23609,7 +23558,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni095B uni094D EndChar StartChar: uni095B_uni094D.haln -Encoding: 65700 -1 604 +Encoding: 65700 -1 602 GlifName: uni095B__uni094D_.haln Width: 2048 VWidth: 0 @@ -23668,7 +23617,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095B uni094D EndChar StartChar: uni095C -Encoding: 2396 2396 605 +Encoding: 2396 2396 603 GlifName: uni095C_ Width: 2048 VWidth: 0 @@ -23727,7 +23676,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0921 uni093C EndChar StartChar: uni095C_uni0930_uni094D.vatu -Encoding: 65701 -1 606 +Encoding: 65701 -1 604 GlifName: uni095C__uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -23796,7 +23745,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095C uni0930_uni09 EndChar StartChar: uni095C_uni094D.haln -Encoding: 65702 -1 607 +Encoding: 65702 -1 605 GlifName: uni095C__uni094D_.haln Width: 2048 VWidth: 0 @@ -23865,7 +23814,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095C uni094D EndChar StartChar: uni095D -Encoding: 2397 2397 608 +Encoding: 2397 2397 606 GlifName: uni095D_ Width: 2048 VWidth: 0 @@ -23919,7 +23868,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0922 uni093C EndChar StartChar: uni095D_uni0930_uni094D.vatu -Encoding: 65703 -1 609 +Encoding: 65703 -1 607 GlifName: uni095D__uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -23983,7 +23932,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095D uni0930_uni09 EndChar StartChar: uni095D_uni094D.haln -Encoding: 65704 -1 610 +Encoding: 65704 -1 608 GlifName: uni095D__uni094D_.haln Width: 2048 VWidth: 0 @@ -24047,7 +23996,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095D uni094D EndChar StartChar: uni095E -Encoding: 2398 2398 611 +Encoding: 2398 2398 609 GlifName: uni095E_ Width: 2048 VWidth: 0 @@ -24091,7 +24040,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni092B uni093C EndChar StartChar: uni095E_uni0930_uni094D.vatu -Encoding: 65705 -1 612 +Encoding: 65705 -1 610 GlifName: uni095E__uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -24140,7 +24089,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095E uni0930_uni09 EndChar StartChar: uni095E_uni094D.half -Encoding: 65706 -1 613 +Encoding: 65706 -1 611 GlifName: uni095E__uni094D_.half Width: 2048 VWidth: 0 @@ -24179,7 +24128,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni095E uni094D EndChar StartChar: uni095E_uni094D.haln -Encoding: 65707 -1 614 +Encoding: 65707 -1 612 GlifName: uni095E__uni094D_.haln Width: 2048 VWidth: 0 @@ -24233,7 +24182,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095E uni094D EndChar StartChar: uni095F -Encoding: 2399 2399 615 +Encoding: 2399 2399 613 GlifName: uni095F_ Width: 2048 VWidth: 0 @@ -24277,7 +24226,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni092F uni093C EndChar StartChar: uni095F_uni0930_uni094D.vatu -Encoding: 65708 -1 616 +Encoding: 65708 -1 614 GlifName: uni095F__uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -24326,7 +24275,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095F uni0930_uni09 EndChar StartChar: uni095F_uni094D.half -Encoding: 65709 -1 617 +Encoding: 65709 -1 615 GlifName: uni095F__uni094D_.half Width: 2048 VWidth: 0 @@ -24380,7 +24329,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni095F uni094D EndChar StartChar: uni095F_uni094D.haln -Encoding: 65710 -1 618 +Encoding: 65710 -1 616 GlifName: uni095F__uni094D_.haln Width: 2048 VWidth: 0 @@ -24434,7 +24383,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095F uni094D EndChar StartChar: uni0960 -Encoding: 2400 2400 619 +Encoding: 2400 2400 617 GlifName: uni0960 Width: 2048 VWidth: 0 @@ -24492,7 +24441,7 @@ EndSplineSet EndChar StartChar: uni0961 -Encoding: 2401 2401 620 +Encoding: 2401 2401 618 GlifName: uni0961 Width: 2048 VWidth: 0 @@ -24545,7 +24494,7 @@ EndSplineSet EndChar StartChar: uni0962 -Encoding: 2402 2402 621 +Encoding: 2402 2402 619 GlifName: uni0962 Width: 2048 VWidth: 0 @@ -24588,7 +24537,7 @@ EndSplineSet EndChar StartChar: uni0963 -Encoding: 2403 2403 622 +Encoding: 2403 2403 620 GlifName: uni0963 Width: 2048 VWidth: 0 @@ -24636,7 +24585,7 @@ EndSplineSet EndChar StartChar: uni0964 -Encoding: 2404 2404 623 +Encoding: 2404 2404 621 GlifName: uni0964 Width: 2048 VWidth: 0 @@ -24654,7 +24603,7 @@ EndSplineSet EndChar StartChar: uni0965 -Encoding: 2405 2405 624 +Encoding: 2405 2405 622 GlifName: uni0965 Width: 2048 VWidth: 0 @@ -24677,7 +24626,7 @@ EndSplineSet EndChar StartChar: uni0966 -Encoding: 2406 2406 625 +Encoding: 2406 2406 623 GlifName: uni0966 Width: 2048 VWidth: 0 @@ -24710,7 +24659,7 @@ EndSplineSet EndChar StartChar: uni0967 -Encoding: 2407 2407 626 +Encoding: 2407 2407 624 GlifName: uni0967 Width: 2048 VWidth: 0 @@ -24743,7 +24692,7 @@ EndSplineSet EndChar StartChar: uni0968 -Encoding: 2408 2408 627 +Encoding: 2408 2408 625 GlifName: uni0968 Width: 2048 VWidth: 0 @@ -24781,7 +24730,7 @@ EndSplineSet EndChar StartChar: uni0969 -Encoding: 2409 2409 628 +Encoding: 2409 2409 626 GlifName: uni0969 Width: 2048 VWidth: 0 @@ -24819,7 +24768,7 @@ EndSplineSet EndChar StartChar: uni096A -Encoding: 2410 2410 629 +Encoding: 2410 2410 627 GlifName: uni096A_ Width: 2048 VWidth: 0 @@ -24867,7 +24816,7 @@ EndSplineSet EndChar StartChar: uni096B -Encoding: 2411 2411 630 +Encoding: 2411 2411 628 GlifName: uni096B_ Width: 2048 VWidth: 0 @@ -24900,7 +24849,7 @@ EndSplineSet EndChar StartChar: uni096C -Encoding: 2412 2412 631 +Encoding: 2412 2412 629 GlifName: uni096C_ Width: 2048 VWidth: 0 @@ -24938,7 +24887,7 @@ EndSplineSet EndChar StartChar: uni096D -Encoding: 2413 2413 632 +Encoding: 2413 2413 630 GlifName: uni096D_ Width: 2048 VWidth: 0 @@ -24976,7 +24925,7 @@ EndSplineSet EndChar StartChar: uni096E -Encoding: 2414 2414 633 +Encoding: 2414 2414 631 GlifName: uni096E_ Width: 2048 VWidth: 0 @@ -25004,7 +24953,7 @@ EndSplineSet EndChar StartChar: uni096F -Encoding: 2415 2415 634 +Encoding: 2415 2415 632 GlifName: uni096F_ Width: 2048 VWidth: 0 @@ -25042,7 +24991,7 @@ EndSplineSet EndChar StartChar: uni0970 -Encoding: 2416 2416 635 +Encoding: 2416 2416 633 GlifName: uni0970 Width: 2048 VWidth: 0 @@ -25060,7 +25009,7 @@ EndSplineSet EndChar StartChar: uni0971 -Encoding: 2417 2417 636 +Encoding: 2417 2417 634 GlifName: uni0971 Width: 2048 VWidth: 0 @@ -25078,7 +25027,7 @@ EndSplineSet EndChar StartChar: uni0972 -Encoding: 2418 2418 637 +Encoding: 2418 2418 635 GlifName: uni0972 Width: 2048 VWidth: 0 @@ -25136,7 +25085,7 @@ EndSplineSet EndChar StartChar: uni0973 -Encoding: 2419 2419 638 +Encoding: 2419 2419 636 GlifName: uni0973 Width: 2048 VWidth: 0 @@ -25184,7 +25133,7 @@ EndSplineSet EndChar StartChar: uni0974 -Encoding: 2420 2420 639 +Encoding: 2420 2420 637 GlifName: uni0974 Width: 2048 VWidth: 0 @@ -25232,7 +25181,7 @@ EndSplineSet EndChar StartChar: uni0975 -Encoding: 2421 2421 640 +Encoding: 2421 2421 638 GlifName: uni0975 Width: 2048 VWidth: 0 @@ -25305,7 +25254,7 @@ EndSplineSet EndChar StartChar: uni0976 -Encoding: 2422 2422 641 +Encoding: 2422 2422 639 GlifName: uni0976 Width: 2048 VWidth: 0 @@ -25363,7 +25312,7 @@ EndSplineSet EndChar StartChar: uni0977 -Encoding: 2423 2423 642 +Encoding: 2423 2423 640 GlifName: uni0977 Width: 2048 VWidth: 0 @@ -25436,7 +25385,7 @@ EndSplineSet EndChar StartChar: uni0978 -Encoding: 2424 2424 643 +Encoding: 2424 2424 641 GlifName: uni0978 Width: 2048 VWidth: 0 @@ -25469,7 +25418,7 @@ EndSplineSet EndChar StartChar: uni0979 -Encoding: 2425 2425 644 +Encoding: 2425 2425 642 GlifName: uni0979 Width: 2048 VWidth: 0 @@ -25527,7 +25476,7 @@ EndSplineSet EndChar StartChar: uni097A -Encoding: 2426 2426 645 +Encoding: 2426 2426 643 GlifName: uni097A_ Width: 2048 VWidth: 0 @@ -25570,7 +25519,7 @@ EndSplineSet EndChar StartChar: uni097B -Encoding: 2427 2427 646 +Encoding: 2427 2427 644 GlifName: uni097B_ Width: 2048 VWidth: 0 @@ -25613,7 +25562,7 @@ EndSplineSet EndChar StartChar: uni097C -Encoding: 2428 2428 647 +Encoding: 2428 2428 645 GlifName: uni097C_ Width: 2048 VWidth: 0 @@ -25661,7 +25610,7 @@ EndSplineSet EndChar StartChar: uni097D -Encoding: 2429 2429 648 +Encoding: 2429 2429 646 GlifName: uni097D_ Width: 2048 VWidth: 0 @@ -25694,7 +25643,7 @@ EndSplineSet EndChar StartChar: uni097E -Encoding: 2430 2430 649 +Encoding: 2430 2430 647 GlifName: uni097E_ Width: 2048 VWidth: 0 @@ -25742,7 +25691,7 @@ EndSplineSet EndChar StartChar: uni097F -Encoding: 2431 2431 650 +Encoding: 2431 2431 648 GlifName: uni097F_ Width: 2048 VWidth: 0 @@ -25790,7 +25739,7 @@ EndSplineSet EndChar StartChar: uni1E0C -Encoding: 7692 7692 651 +Encoding: 7692 7692 649 GlifName: uni1E_0C_ Width: 2048 VWidth: 0 @@ -25803,7 +25752,7 @@ Refer: 19 68 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E0D -Encoding: 7693 7693 652 +Encoding: 7693 7693 650 GlifName: uni1E_0D_ Width: 2048 VWidth: 0 @@ -25816,7 +25765,7 @@ Refer: 160 100 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E34 -Encoding: 7732 7732 653 +Encoding: 7732 7732 651 GlifName: uni1E_34 Width: 2048 VWidth: 0 @@ -25829,7 +25778,7 @@ Refer: 56 75 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E35 -Encoding: 7733 7733 654 +Encoding: 7733 7733 652 GlifName: uni1E_35 Width: 2048 VWidth: 0 @@ -25842,7 +25791,7 @@ Refer: 224 107 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E36 -Encoding: 7734 7734 655 +Encoding: 7734 7734 653 GlifName: uni1E_36 Width: 2048 VWidth: 0 @@ -25855,7 +25804,7 @@ Refer: 57 76 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E37 -Encoding: 7735 7735 656 +Encoding: 7735 7735 654 GlifName: uni1E_37 Width: 2048 VWidth: 0 @@ -25868,7 +25817,7 @@ Refer: 225 108 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E38 -Encoding: 7736 7736 657 +Encoding: 7736 7736 655 GlifName: uni1E_38 Width: 2048 VWidth: 0 @@ -25877,11 +25826,11 @@ Flags: HW LayerCount: 2 Fore Refer: 345 772 N 1 0 0.36397 1 -744.868 124 2 -Refer: 655 7734 N 1 0 0.36397 1 0 0 2 +Refer: 653 7734 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E39 -Encoding: 7737 7737 658 +Encoding: 7737 7737 656 GlifName: uni1E_39 Width: 2048 VWidth: 0 @@ -25890,11 +25839,11 @@ Flags: HW LayerCount: 2 Fore Refer: 345 772 N 1 0 0.36397 1 -30.2317 123 2 -Refer: 656 7735 N 1 0 0.36397 1 0 0 2 +Refer: 654 7735 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E3A -Encoding: 7738 7738 659 +Encoding: 7738 7738 657 GlifName: uni1E_3A_ Width: 2048 VWidth: 0 @@ -25907,7 +25856,7 @@ Refer: 57 76 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E3B -Encoding: 7739 7739 660 +Encoding: 7739 7739 658 GlifName: uni1E_3B_ Width: 2048 VWidth: 0 @@ -25920,7 +25869,7 @@ Refer: 225 108 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E42 -Encoding: 7746 7746 661 +Encoding: 7746 7746 659 GlifName: uni1E_42 Width: 2048 VWidth: 0 @@ -25933,7 +25882,7 @@ Refer: 62 77 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E43 -Encoding: 7747 7747 662 +Encoding: 7747 7747 660 GlifName: uni1E_43 Width: 2048 VWidth: 0 @@ -25946,7 +25895,7 @@ Refer: 232 109 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E44 -Encoding: 7748 7748 663 +Encoding: 7748 7748 661 GlifName: uni1E_44 Width: 2048 VWidth: 0 @@ -25959,7 +25908,7 @@ Refer: 63 78 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E45 -Encoding: 7749 7749 664 +Encoding: 7749 7749 662 GlifName: uni1E_45 Width: 2048 VWidth: 0 @@ -25972,7 +25921,7 @@ Refer: 237 110 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E46 -Encoding: 7750 7750 665 +Encoding: 7750 7750 663 GlifName: uni1E_46 Width: 2048 VWidth: 0 @@ -25985,7 +25934,7 @@ Refer: 63 78 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E47 -Encoding: 7751 7751 666 +Encoding: 7751 7751 664 GlifName: uni1E_47 Width: 2048 VWidth: 0 @@ -25998,7 +25947,7 @@ Refer: 237 110 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E48 -Encoding: 7752 7752 667 +Encoding: 7752 7752 665 GlifName: uni1E_48 Width: 2048 VWidth: 0 @@ -26011,7 +25960,7 @@ Refer: 63 78 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E49 -Encoding: 7753 7753 668 +Encoding: 7753 7753 666 GlifName: uni1E_49 Width: 2048 VWidth: 0 @@ -26024,7 +25973,7 @@ Refer: 237 110 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E4C -Encoding: 7756 7756 669 +Encoding: 7756 7756 667 GlifName: uni1E_4C_ Width: 2048 VWidth: 0 @@ -26037,7 +25986,7 @@ Refer: 77 213 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E4D -Encoding: 7757 7757 670 +Encoding: 7757 7757 668 GlifName: uni1E_4D_ Width: 2048 VWidth: 0 @@ -26050,7 +25999,7 @@ Refer: 259 245 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E58 -Encoding: 7768 7768 671 +Encoding: 7768 7768 669 GlifName: uni1E_58 Width: 2048 VWidth: 0 @@ -26063,7 +26012,7 @@ Refer: 80 82 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E59 -Encoding: 7769 7769 672 +Encoding: 7769 7769 670 GlifName: uni1E_59 Width: 2048 VWidth: 0 @@ -26076,7 +26025,7 @@ Refer: 281 114 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E5A -Encoding: 7770 7770 673 +Encoding: 7770 7770 671 GlifName: uni1E_5A_ Width: 2048 VWidth: 0 @@ -26089,7 +26038,7 @@ Refer: 80 82 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E5B -Encoding: 7771 7771 674 +Encoding: 7771 7771 672 GlifName: uni1E_5B_ Width: 2048 VWidth: 0 @@ -26102,7 +26051,7 @@ Refer: 281 114 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E5C -Encoding: 7772 7772 675 +Encoding: 7772 7772 673 GlifName: uni1E_5C_ Width: 2048 VWidth: 0 @@ -26111,11 +26060,11 @@ Flags: HW LayerCount: 2 Fore Refer: 345 772 N 1 0 0.36397 1 57.1323 124 2 -Refer: 673 7770 N 1 0 0.36397 1 0 0 2 +Refer: 671 7770 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E5D -Encoding: 7773 7773 676 +Encoding: 7773 7773 674 GlifName: uni1E_5D_ Width: 2048 VWidth: 0 @@ -26124,11 +26073,11 @@ Flags: HW LayerCount: 2 Fore Refer: 345 772 N 1 0 0.36397 1 -146.68 -403 2 -Refer: 674 7771 N 1 0 0.36397 1 0 0 2 +Refer: 672 7771 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E5E -Encoding: 7774 7774 677 +Encoding: 7774 7774 675 GlifName: uni1E_5E_ Width: 2048 VWidth: 0 @@ -26141,7 +26090,7 @@ Refer: 80 82 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E5F -Encoding: 7775 7775 678 +Encoding: 7775 7775 676 GlifName: uni1E_5F_ Width: 2048 VWidth: 0 @@ -26154,7 +26103,7 @@ Refer: 281 114 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E62 -Encoding: 7778 7778 679 +Encoding: 7778 7778 677 GlifName: uni1E_62 Width: 2048 VWidth: 0 @@ -26167,7 +26116,7 @@ Refer: 83 83 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E63 -Encoding: 7779 7779 680 +Encoding: 7779 7779 678 GlifName: uni1E_63 Width: 2048 VWidth: 0 @@ -26180,7 +26129,7 @@ Refer: 286 115 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E6C -Encoding: 7788 7788 681 +Encoding: 7788 7788 679 GlifName: uni1E_6C_ Width: 2048 VWidth: 0 @@ -26193,7 +26142,7 @@ Refer: 88 84 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E6D -Encoding: 7789 7789 682 +Encoding: 7789 7789 680 GlifName: uni1E_6D_ Width: 2048 VWidth: 0 @@ -26206,7 +26155,7 @@ Refer: 298 116 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E8E -Encoding: 7822 7822 683 +Encoding: 7822 7822 681 GlifName: uni1E_8E_ Width: 2048 VWidth: 0 @@ -26219,7 +26168,7 @@ Refer: 109 89 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E8F -Encoding: 7823 7823 684 +Encoding: 7823 7823 682 GlifName: uni1E_8F_ Width: 2048 VWidth: 0 @@ -26228,11 +26177,11 @@ Flags: HW LayerCount: 2 Fore Refer: 348 775 N 1 0 0.36397 1 -177.617 -488 2 -Refer: 703 121 N 1 0 0.36397 1 0 0 2 +Refer: 701 121 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uni1E9E -Encoding: 7838 7838 685 +Encoding: 7838 7838 683 GlifName: uni1E_9E_ Width: 2048 VWidth: 0 @@ -26275,7 +26224,7 @@ EndSplineSet EndChar StartChar: uni200C -Encoding: 8204 8204 686 +Encoding: 8204 8204 684 GlifName: uni200C_ Width: 2048 VWidth: 0 @@ -26298,7 +26247,7 @@ EndSplineSet EndChar StartChar: uni200D -Encoding: 8205 8205 687 +Encoding: 8205 8205 685 GlifName: uni200D_ Width: 2048 VWidth: 0 @@ -26316,7 +26265,7 @@ EndSplineSet EndChar StartChar: uni2044 -Encoding: 8260 8260 688 +Encoding: 8260 8260 686 GlifName: uni2044 Width: 2048 VWidth: 0 @@ -26334,7 +26283,7 @@ EndSplineSet EndChar StartChar: uni20B9 -Encoding: 8377 8377 689 +Encoding: 8377 8377 687 GlifName: uni20B_9 Width: 2048 VWidth: 0 @@ -26372,7 +26321,7 @@ EndSplineSet EndChar StartChar: uni25CC -Encoding: 9676 9676 690 +Encoding: 9676 9676 688 GlifName: uni25C_C_ Width: 2048 VWidth: 0 @@ -26427,7 +26376,7 @@ EndSplineSet EndChar StartChar: uniFB01 -Encoding: 64257 64257 691 +Encoding: 64257 64257 689 GlifName: uniF_B_01 Width: 2048 VWidth: 0 @@ -26466,7 +26415,7 @@ Ligature2: "dligDiscretionaryLigatureslookup0 subtable" f i EndChar StartChar: uniFB02 -Encoding: 64258 64258 692 +Encoding: 64258 64258 690 GlifName: uniF_B_02 Width: 2048 VWidth: 0 @@ -26510,7 +26459,7 @@ Ligature2: "dligDiscretionaryLigatureslookup0 subtable" f l EndChar StartChar: uogonek -Encoding: 371 371 693 +Encoding: 371 371 691 GlifName: uogonek Width: 2048 VWidth: 0 @@ -26523,7 +26472,7 @@ Refer: 307 117 N 1 0 0.36397 1 0 0 2 EndChar StartChar: uring -Encoding: 367 367 694 +Encoding: 367 367 692 GlifName: uring Width: 2048 VWidth: 0 @@ -26536,7 +26485,7 @@ Refer: 307 117 N 1 0 0.36397 1 0 0 2 EndChar StartChar: utilde -Encoding: 361 361 695 +Encoding: 361 361 693 GlifName: utilde Width: 2048 VWidth: 0 @@ -26549,7 +26498,7 @@ Refer: 307 117 N 1 0 0.36397 1 0 0 2 EndChar StartChar: v -Encoding: 118 118 696 +Encoding: 118 118 694 GlifName: v Width: 2048 VWidth: 0 @@ -26573,7 +26522,7 @@ EndSplineSet EndChar StartChar: w -Encoding: 119 119 697 +Encoding: 119 119 695 GlifName: w Width: 2048 VWidth: 0 @@ -26607,7 +26556,7 @@ EndSplineSet EndChar StartChar: wacute -Encoding: 7811 7811 698 +Encoding: 7811 7811 696 GlifName: wacute Width: 2048 VWidth: 0 @@ -26616,11 +26565,11 @@ Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0.36397 1 176.838 332 2 -Refer: 697 119 N 1 0 0.36397 1 0 0 2 +Refer: 695 119 N 1 0 0.36397 1 0 0 2 EndChar StartChar: wcircumflex -Encoding: 373 373 699 +Encoding: 373 373 697 GlifName: wcircumflex Width: 2048 VWidth: 0 @@ -26629,11 +26578,11 @@ Flags: HW LayerCount: 2 Fore Refer: 344 770 N 1 0 0.36397 1 -340.867 -964 2 -Refer: 697 119 N 1 0 0.36397 1 0 0 2 +Refer: 695 119 N 1 0 0.36397 1 0 0 2 EndChar StartChar: wdieresis -Encoding: 7813 7813 700 +Encoding: 7813 7813 698 GlifName: wdieresis Width: 2048 VWidth: 0 @@ -26642,11 +26591,11 @@ Flags: HW LayerCount: 2 Fore Refer: 349 776 N 1 0 0.36397 1 -144.548 -551 2 -Refer: 697 119 N 1 0 0.36397 1 0 0 2 +Refer: 695 119 N 1 0 0.36397 1 0 0 2 EndChar StartChar: wgrave -Encoding: 7809 7809 701 +Encoding: 7809 7809 699 GlifName: wgrave Width: 2048 VWidth: 0 @@ -26655,11 +26604,11 @@ Flags: HW LayerCount: 2 Fore Refer: 201 768 N 1 0 0.36397 1 203.864 409 2 -Refer: 697 119 N 1 0 0.36397 1 0 0 2 +Refer: 695 119 N 1 0 0.36397 1 0 0 2 EndChar StartChar: x -Encoding: 120 120 702 +Encoding: 120 120 700 GlifName: x Width: 2048 VWidth: 0 @@ -26682,7 +26631,7 @@ EndSplineSet EndChar StartChar: y -Encoding: 121 121 703 +Encoding: 121 121 701 GlifName: y Width: 2048 VWidth: 0 @@ -26717,7 +26666,7 @@ EndSplineSet EndChar StartChar: yacute -Encoding: 253 253 704 +Encoding: 253 253 702 GlifName: yacute Width: 2048 VWidth: 0 @@ -26726,11 +26675,11 @@ Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0.36397 1 232.504 419 2 -Refer: 703 121 N 1 0 0.36397 1 0 0 2 +Refer: 701 121 N 1 0 0.36397 1 0 0 2 EndChar StartChar: ycircumflex -Encoding: 375 375 705 +Encoding: 375 375 703 GlifName: ycircumflex Width: 2048 VWidth: 0 @@ -26739,11 +26688,11 @@ Flags: HW LayerCount: 2 Fore Refer: 344 770 N 1 0 0.36397 1 -180.584 -661 2 -Refer: 703 121 N 1 0 0.36397 1 0 0 2 +Refer: 701 121 N 1 0 0.36397 1 0 0 2 EndChar StartChar: ydieresis -Encoding: 255 255 706 +Encoding: 255 255 704 GlifName: ydieresis Width: 2048 VWidth: 0 @@ -26752,11 +26701,11 @@ Flags: HW LayerCount: 2 Fore Refer: 349 776 N 1 0 0.36397 1 -112.088 -536 2 -Refer: 703 121 N 1 0 0.36397 1 0 0 2 +Refer: 701 121 N 1 0 0.36397 1 0 0 2 EndChar StartChar: yen -Encoding: 165 165 707 +Encoding: 165 165 705 GlifName: yen Width: 2048 VWidth: 0 @@ -26799,7 +26748,7 @@ EndSplineSet EndChar StartChar: ygrave -Encoding: 7923 7923 708 +Encoding: 7923 7923 706 GlifName: ygrave Width: 2048 VWidth: 0 @@ -26808,11 +26757,11 @@ Flags: HW LayerCount: 2 Fore Refer: 201 768 N 1 0 0.36397 1 141.25 476 2 -Refer: 703 121 N 1 0 0.36397 1 0 0 2 +Refer: 701 121 N 1 0 0.36397 1 0 0 2 EndChar StartChar: z -Encoding: 122 122 709 +Encoding: 122 122 707 GlifName: z Width: 2048 VWidth: 0 @@ -26842,7 +26791,7 @@ EndSplineSet EndChar StartChar: zacute -Encoding: 378 378 710 +Encoding: 378 378 708 GlifName: zacute Width: 2048 VWidth: 0 @@ -26851,11 +26800,11 @@ Flags: HW LayerCount: 2 Fore Refer: 123 769 N 1 0 0.36397 1 212.136 407 2 -Refer: 709 122 N 1 0 0.36397 1 0 0 2 +Refer: 707 122 N 1 0 0.36397 1 0 0 2 EndChar StartChar: zcaron -Encoding: 382 382 711 +Encoding: 382 382 709 GlifName: zcaron Width: 2048 VWidth: 0 @@ -26864,11 +26813,11 @@ Flags: HW LayerCount: 2 Fore Refer: 352 780 N 1 0 0.36397 1 31.5773 -177 2 -Refer: 709 122 N 1 0 0.36397 1 0 0 2 +Refer: 707 122 N 1 0 0.36397 1 0 0 2 EndChar StartChar: zdotaccent -Encoding: 380 380 712 +Encoding: 380 380 710 GlifName: zdotaccent Width: 2048 VWidth: 0 @@ -26877,11 +26826,11 @@ Flags: HW LayerCount: 2 Fore Refer: 348 775 N 1 0 0.36397 1 -113.441 -504 2 -Refer: 709 122 N 1 0 0.36397 1 0 0 2 +Refer: 707 122 N 1 0 0.36397 1 0 0 2 EndChar StartChar: zero -Encoding: 48 48 713 +Encoding: 48 48 711 GlifName: zero Width: 2048 VWidth: 0 @@ -26909,7 +26858,7 @@ EndSplineSet EndChar StartChar: hookabovecomb -Encoding: 777 777 714 +Encoding: 777 777 712 Width: 0 VWidth: 0 Flags: HW @@ -26940,7 +26889,7 @@ EndSplineSet EndChar StartChar: uni01C4 -Encoding: 452 452 715 +Encoding: 452 452 713 Width: 2048 Flags: HW LayerCount: 2 @@ -26950,22 +26899,22 @@ Refer: 19 68 N 0.5 0 0 1 -284.577 0 2 EndChar StartChar: uni01C5 -Encoding: 453 453 716 +Encoding: 453 453 714 Width: 2048 Flags: HW LayerCount: 2 Fore -Refer: 711 382 N 0.5 0 0 1 835.329 0 2 +Refer: 709 382 N 0.5 0 0 1 835.329 0 2 Refer: 19 68 N 0.5 0 0 1 -188.671 0 2 EndChar StartChar: uni01C6 -Encoding: 454 454 717 +Encoding: 454 454 715 Width: 2048 Flags: HW LayerCount: 2 Fore -Refer: 711 382 N 0.5 0 0 1 816.329 0 2 +Refer: 709 382 N 0.5 0 0 1 816.329 0 2 Refer: 160 100 N 0.5 0 0 1 -207.671 0 2 EndChar EndChars diff --git a/sources/Samaano-Wide-Thin-Slanted.ufo/features.fea b/sources/Samaano-Wide-Thin-Slanted.ufo/features.fea index a10791b8f..a06e0c56e 100644 --- a/sources/Samaano-Wide-Thin-Slanted.ufo/features.fea +++ b/sources/Samaano-Wide-Thin-Slanted.ufo/features.fea @@ -235,7 +235,7 @@ feature half { script DFLT; language dflt ; lookup halfHalfFormsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup halfHalfFormsinDevanagarilookup0; } half; @@ -243,7 +243,7 @@ feature haln { script DFLT; language dflt ; lookup halnHalantFormsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup halnHalantFormsinDevanagarilookup0; } haln; @@ -251,7 +251,7 @@ feature vatu { script DFLT; language dflt ; lookup vatuVattuVariantsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup vatuVattuVariantsinDevanagarilookup0; } vatu; @@ -259,7 +259,7 @@ feature pres { script DFLT; language dflt ; lookup presPreBaseSubstitutionsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup presPreBaseSubstitutionsinDevanagarilookup0; } pres; @@ -267,7 +267,7 @@ feature abvs { script DFLT; language dflt ; lookup abvsAboveBaseSubstitutionsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup abvsAboveBaseSubstitutionsinDevanagarilookup0; } abvs; @@ -275,7 +275,7 @@ feature blws { script DFLT; language dflt ; lookup blwsBelowBaseSubstitutionsinDevanagarilookup12; - script dev2; + script deva; language dflt ; lookup blwsBelowBaseSubstitutionsinDevanagarilookup12; } blws; @@ -288,22 +288,22 @@ feature dlig { lookup dligDiscretionaryLigatureslookup0; } dlig;@CombiningTopAccents = [acutecomb oe tildecomb uni0302 uni0304 uni0306 uni0308 uni030A uni030B uni030C]; lookup markMarkPositioninglookup0 { - markClass gravecomb @top; - markClass acutecomb @top; - markClass uni0302 @top; - markClass tildecomb @top; - markClass uni0304 @top; - markClass uni0306 @top; - markClass uni0307 @top; - markClass uni0308 @top; - markClass uni030A @top; - markClass uni030B @top; - markClass uni030C @top; - markClass dotbelowcomb @base; - markClass uni0326 @base; - markClass uni0327 @base; - markClass uni0328 @base; - markClass uni0331 @base; + markClass gravecomb @top; + markClass acutecomb @top; + markClass uni0302 @top; + markClass tildecomb @top; + markClass uni0304 @top; + markClass uni0306 @top; + markClass uni0307 @top; + markClass uni0308 @top; + markClass uni030A @top; + markClass uni030B @top; + markClass uni030C @top; + markClass dotbelowcomb @base; + markClass uni0326 @base; + markClass uni0327 @base; + markClass uni0328 @base; + markClass uni0331 @base; pos base A mark @top; pos base C mark @top; pos base D mark @top; @@ -377,9 +377,9 @@ lookup markMarkPositioninglookup0 { pos base uni25CC mark @base; } markMarkPositioninglookup0; lookup abvmAboveBaseMarkinDevanagari2lookup1 { - markClass uni0900 @abvm; - markClass uni0901 @abvm; - markClass uni0902 @abvm; + markClass uni0900 @abvm; + markClass uni0901 @abvm; + markClass uni0902 @abvm; markClass uni0951 @abvm; markClass uni0953 @abvm; markClass uni0954 @abvm; @@ -415,9 +415,8 @@ feature blwm { script dev2; language dflt ; lookup blwmBelowBaseMarkinDevanagari2lookup2; -} blwm; -@GDEF_base = [A AE Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Emacron Eng Eogonek Eth Euro F G Gbreve Gcircumflex Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek Itilde J Jcircumflex K L Lacute Lcaron Ldot Lslash M N Nacute Ncaron Ntilde O OE Oacute Obreve Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Otilde P Q R Racute Rcaron S Sacute Scaron Scedilla Scircumflex T Tcaron Thorn U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ygrave Z Zacute Zcaron Zdotaccent a aacute abreve acircumflex acute adieresis ae agrave amacron ampersand aogonek aring asciicircum asciitilde asterisk at atilde b backslash bar braceleft braceright bracketleft bracketright breve brokenbar bullet c cacute caron ccaron ccedilla ccircumflex cdotaccent cedilla cent circumflex colon comma copyright currency d dagger daggerdbl dcaron dcroat degree dieresis divide dollar dotaccent dotlessi e eacute ebreve ecaron ecircumflex edieresis edotaccent egrave eight ellipsis emacron emdash endash eng eogonek equal eth exclam exclamdown f five four g gbreve gcircumflex gdotaccent germandbls grave greater guillemotleft guillemotright guilsinglleft guilsinglright h hbar hcircumflex hookabovecomb hungarumlaut hyphen i iacute ibreve icircumflex idieresis igrave ij imacron iogonek itilde j jcircumflex k l lacute lcaron ldot less logicalnot lslash m macron minus mu multiply n nacute ncaron nine ntilde numbersign o oacute obreve ocircumflex odieresis oe ogonek ograve ohungarumlaut omacron one onehalf onequarter ordfeminine ordmasculine oslash otilde p paragraph parenleft parenright percent period periodcentered perthousand plus plusminus q question questiondown quotedbl quotedblbase quotedblleft quotedblright quoteleft quoteright quotesinglbase quotesingle r racute rcaron registered ring s sacute scaron scedilla scircumflex section semicolon seven six slash space sterling t tcaron thorn three threequarters tilde trademark two u uacute ubreve ucircumflex udieresis ugrave uhungarumlaut umacron underscore uni00A0 uni00B2 uni00B3 uni00B9 uni0122 uni0123 uni0136 uni0137 uni013B uni013C uni0145 uni0146 uni0156 uni0157 uni0162 uni0163 uni0192 uni01C4 uni01C5 uni01C6 uni0218 uni0219 uni021A uni021B uni0237 uni02B9 uni02BA uni02BC uni02C9 uni02CA uni02CB uni0305 uni0903 uni0904 uni0905 uni0906 uni0907 uni0908 uni0909 uni090A uni090B uni090C uni090D uni090E uni090F uni0910 uni0911 uni0912 uni0913 uni0914 uni0915 uni0915_uni094D.half uni0915_uni094D_uni0937_uni094D uni0916 uni0916_uni094D.half uni0917 uni0918 uni0919 uni091A uni091A_uni0930_uni094D.vatu uni091B uni091C uni091C_uni0930_uni094D.vatu uni091C_uni094D_uni091E_uni094D uni091D uni091E uni091F uni0920 uni0921 uni0922 uni0922_uni0930_uni094D.vatu uni0923 uni0923_uni0930_uni094D.vatu uni0924 uni0925 uni0926 uni0927 uni0928 uni0929 uni092A uni092B uni092C uni092D uni092E uni092F uni0930 uni0930_uni094D.abvs uni0930_uni094D.haln uni0930_uni094D.vatu uni0931 uni0932 uni0933 uni0934 uni0935 uni0936 uni0936_uni094D.haln uni0937 uni0938 uni0938_uni0930_uni094D.vatu uni0938_uni094D.haln uni0939 uni0939_uni0930_uni094D.vatu uni093B uni093D uni093E uni093F uni0940 uni0940_uni0930_uni094D.abvs uni0945_uni0930_uni094D.abvs uni0946_uni0930_uni094D.abvs uni0947_uni0930_uni094D.abvs uni0948_uni0930_uni094D.abvs uni0949 uni0949_uni0930_uni094D.abvs uni094A uni094A_uni0930_uni094D.abvs uni094B uni094B_uni0930_uni094D.abvs uni094C uni094C_uni0930_uni094D.abvs uni094E uni094F uni0950 uni0958 uni0959 uni095A uni095A_uni094D.haln uni095B uni095C uni095D uni095E uni095E_uni0930_uni094D.vatu uni095F uni095F_uni0930_uni094D.vatu uni0960 uni0961 uni0964 uni0965 uni0966 uni0967 uni0968 uni0969 uni096A uni096B uni096C uni096D uni096E uni096F uni0970 uni0971 uni0972 uni0973 uni0974 uni0975 uni0976 uni0977 uni0978 uni0979 uni097A uni097B uni097C uni097D uni097E uni097F uni1E0C uni1E0D uni1E34 uni1E35 uni1E36 uni1E37 uni1E38 uni1E39 uni1E3A uni1E3B uni1E42 uni1E43 uni1E44 uni1E45 uni1E46 uni1E47 uni1E48 uni1E49 uni1E4C uni1E4D uni1E58 uni1E59 uni1E5A uni1E5B uni1E5C uni1E5D uni1E5E uni1E5F uni1E62 uni1E63 uni1E6C uni1E6D uni1E8E uni1E8F uni1E9E uni200C uni200D uni2044 uni20B9 uni25CC uogonek uring utilde v w wacute wcircumflex wdieresis wgrave x y yacute ycircumflex ydieresis yen ygrave z zacute zcaron zdotaccent zero]; -@GDEF_mark = [acutecomb dotbelowcomb glyph094D gravecomb tildecomb uni0302 uni0304 uni0306 uni0307 uni0308 uni030A uni030B uni030C uni0326 uni0327 uni0328 uni0331 uni0900 uni0901 uni0902 uni0930_uni094D.blwf uni0930_uni094D.rphf uni093A uni093C uni0941 uni0942 uni0943 uni0944 uni0945 uni0946 uni0947 uni0948 uni094D uni0951 uni0952 uni0953 uni0954 uni0955 uni0956 uni0957 uni0962 uni0963]; +} blwm;@GDEF_base = [A AE Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Emacron Eng Eogonek Eth Euro F G Gbreve Gcircumflex Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek Itilde J Jcircumflex K L Lacute Lcaron Ldot Lslash M N Nacute Ncaron Ntilde O OE Oacute Obreve Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Otilde P Q R Racute Rcaron S Sacute Scaron Scedilla Scircumflex T Tcaron Thorn U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ygrave Z Zacute Zcaron Zdotaccent a aacute abreve acircumflex acute adieresis ae agrave amacron ampersand aogonek aring asciicircum asciitilde asterisk at atilde b backslash bar braceleft braceright bracketleft bracketright breve brokenbar bullet c cacute caron ccaron ccedilla ccircumflex cdotaccent cedilla cent circumflex colon comma copyright currency d dagger daggerdbl dcaron dcroat degree dieresis divide dollar dotaccent dotlessi e eacute ebreve ecaron ecircumflex edieresis edotaccent egrave eight ellipsis emacron emdash endash eng eogonek equal eth exclam exclamdown f five four g gbreve gcircumflex gdotaccent germandbls grave greater guillemotleft guillemotright guilsinglleft guilsinglright h hbar hcircumflex hungarumlaut hyphen i iacute ibreve icircumflex idieresis igrave ij imacron iogonek itilde j jcircumflex k l lacute lcaron ldot less logicalnot lslash m macron minus mu multiply n nacute ncaron nine ntilde numbersign o oacute obreve ocircumflex odieresis oe ogonek ograve ohungarumlaut omacron one onehalf onequarter ordfeminine ordmasculine oslash otilde p paragraph parenleft parenright percent period periodcentered perthousand plus plusminus q question questiondown quotedbl quotedblbase quotedblleft quotedblright quoteleft quoteright quotesinglbase quotesingle r racute rcaron registered ring s sacute scaron scedilla scircumflex section semicolon seven six slash space sterling t tcaron thorn three threequarters tilde trademark two u uacute ubreve ucircumflex udieresis ugrave uhungarumlaut umacron underscore uni00A0 uni00B2 uni00B3 uni00B9 uni0122 uni0123 uni0136 uni0137 uni013B uni013C uni0145 uni0146 uni0156 uni0157 uni0162 uni0163 uni0192 uni01C4 uni01C5 uni01C6 uni0218 uni0219 uni021A uni021B uni0237 uni02B9 uni02BA uni02BC uni02C9 uni02CA uni02CB uni0903 uni0904 uni0905 uni0906 uni0907 uni0908 uni0909 uni090A uni090B uni090C uni090D uni090E uni090F uni0910 uni0911 uni0912 uni0913 uni0914 uni0915 uni0915_uni094D.half uni0915_uni094D_uni0937_uni094D uni0916 uni0916_uni094D.half uni0917 uni0918 uni0919 uni091A uni091A_uni0930_uni094D.vatu uni091B uni091C uni091C_uni0930_uni094D.vatu uni091C_uni094D_uni091E_uni094D uni091D uni091E uni091F uni0920 uni0921 uni0922 uni0922_uni0930_uni094D.vatu uni0923 uni0923_uni0930_uni094D.vatu uni0924 uni0925 uni0926 uni0927 uni0928 uni0929 uni092A uni092B uni092C uni092D uni092E uni092F uni0930 uni0930_uni094D.haln uni0931 uni0932 uni0933 uni0934 uni0935 uni0936 uni0936_uni094D.haln uni0937 uni0938 uni0938_uni0930_uni094D.vatu uni0938_uni094D.haln uni0939 uni0939_uni0930_uni094D.vatu uni093B uni093D uni093E uni093F uni0940 uni0940_uni0930_uni094D.abvs uni0945_uni0930_uni094D.abvs uni0946_uni0930_uni094D.abvs uni0947_uni0930_uni094D.abvs uni0948_uni0930_uni094D.abvs uni0949 uni0949_uni0930_uni094D.abvs uni094A uni094A_uni0930_uni094D.abvs uni094B uni094B_uni0930_uni094D.abvs uni094C uni094C_uni0930_uni094D.abvs uni094E uni094F uni0950 uni0958 uni0959 uni095A uni095A_uni094D.haln uni095B uni095C uni095D uni095E uni095E_uni0930_uni094D.vatu uni095F uni095F_uni0930_uni094D.vatu uni0960 uni0961 uni0964 uni0965 uni0966 uni0967 uni0968 uni0969 uni096A uni096B uni096C uni096D uni096E uni096F uni0970 uni0971 uni0972 uni0973 uni0974 uni0975 uni0976 uni0977 uni0978 uni0979 uni097A uni097B uni097C uni097D uni097E uni097F uni1E0C uni1E0D uni1E34 uni1E35 uni1E36 uni1E37 uni1E38 uni1E39 uni1E3A uni1E3B uni1E42 uni1E43 uni1E44 uni1E45 uni1E46 uni1E47 uni1E48 uni1E49 uni1E4C uni1E4D uni1E58 uni1E59 uni1E5A uni1E5B uni1E5C uni1E5D uni1E5E uni1E5F uni1E62 uni1E63 uni1E6C uni1E6D uni1E8E uni1E8F uni1E9E uni200C uni200D uni2044 uni20B9 uni25CC uogonek uring utilde v w wacute wcircumflex wdieresis wgrave x y yacute ycircumflex ydieresis yen ygrave z zacute zcaron zdotaccent zero]; +@GDEF_mark = [acutecomb dotbelowcomb gravecomb hookabovecomb tildecomb uni0302 uni0304 uni0305 uni0306 uni0307 uni0308 uni030A uni030B uni030C uni0326 uni0327 uni0328 uni0331 uni0900 uni0901 uni0902 uni0930_uni094D.blwf uni0930_uni094D.rphf uni093A uni093C uni0941 uni0942 uni0943 uni0944 uni0945 uni0946 uni0947 uni0948 uni094D uni0951 uni0952 uni0953 uni0954 uni0955 uni0956 uni0957 uni0962 uni0963]; @GDEF_ligature = [uni0915_uni0930_uni094D.vatu uni0915_uni094D.haln uni0915_uni094D_uni0937.akhn uni0915_uni094D_uni0937.half uni0916_uni0930_uni094D.vatu uni0916_uni094D.haln uni0917_uni0930_uni094D.vatu uni0917_uni094D.half uni0917_uni094D.haln uni0918_uni0930_uni094D.vatu uni0918_uni094D.half uni0918_uni094D.haln uni0919_uni0930_uni094D.vatu uni0919_uni094D.half uni0919_uni094D.haln uni091A_uni094D.half uni091A_uni094D.haln uni091B_uni0930_uni094D.vatu uni091B_uni094D.half uni091B_uni094D.haln uni091C_uni094D.half uni091C_uni094D.haln uni091C_uni094D_uni091E.akhn uni091C_uni094D_uni091E.half uni091D_uni0930_uni094D.vatu uni091D_uni094D.half uni091D_uni094D.haln uni091E_uni0930_uni094D.vatu uni091E_uni094D.half uni091E_uni094D.haln uni091F_uni0930_uni094D.vatu uni091F_uni094D.haln uni0920_uni0930_uni094D.vatu uni0920_uni094D.haln uni0921_uni0930_uni094D.vatu uni0921_uni094D.haln uni0922_uni094D.haln uni0923_uni094D.half uni0923_uni094D.haln uni0924_uni0930_uni094D.vatu uni0924_uni094D.half uni0924_uni094D.haln uni0924_uni094D_uni0924.pres uni0925_uni0930_uni094D.vatu uni0925_uni094D.half uni0925_uni094D.haln uni0926_uni0930_uni094D.vatu uni0926_uni094D.half uni0926_uni094D.haln uni0926_uni094D_uni0926.pres uni0926_uni094D_uni0927.pres uni0926_uni094D_uni092F.pres uni0926_uni094D_uni0935.pres uni0927_uni0930_uni094D.vatu uni0927_uni094D.half uni0927_uni094D.haln uni0928_uni0930_uni094D.vatu uni0928_uni094D.half uni0928_uni094D.haln uni0929_uni0930_uni094D.vatu uni0929_uni094D.half uni0929_uni094D.haln uni092A_uni0930_uni094D.vatu uni092A_uni094D.half uni092A_uni094D.haln uni092B_uni0930_uni094D.vatu uni092B_uni094D.half uni092B_uni094D.haln uni092C_uni0930_uni094D.vatu uni092C_uni094D.half uni092C_uni094D.haln uni092D_uni0930_uni094D.vatu uni092D_uni094D.half uni092D_uni094D.haln uni092E_uni0930_uni094D.vatu uni092E_uni094D.half uni092E_uni094D.haln uni092F_uni0930_uni094D.vatu uni092F_uni094D.half uni092F_uni094D.haln uni0930_uni0930_uni094D.vatu uni0930_uni0941.blws uni0930_uni0942.blws uni0930_uni094D.half uni0931_uni0930_uni094D.vatu uni0931_uni094D.haln uni0932_uni0930_uni094D.vatu uni0932_uni094D.half uni0932_uni094D.haln uni0933_uni0930_uni094D.vatu uni0933_uni094D.half uni0933_uni094D.haln uni0934_uni0930_uni094D.vatu uni0934_uni094D.half uni0934_uni094D.haln uni0935_uni0930_uni094D.vatu uni0935_uni094D.half uni0935_uni094D.haln uni0936_uni0930_uni094D.vatu uni0936_uni094D.half uni0937_uni0930_uni094D.vatu uni0937_uni094D.half uni0937_uni094D.haln uni0938_uni094D.half uni0939_uni0943.blws uni0939_uni094D.half uni0939_uni094D.haln uni0939_uni094D_uni092E.pres uni093E_uni0930_uni094D.abvs uni0940_uni0902.abvs uni0945_uni0902.abvs uni0946_uni0902.abvs uni0947_uni0902.abvs uni0948_uni0902.abvs uni0949_uni0902.abvs uni094A_uni0902.abvs uni094B_uni0902.abvs uni094C_uni0902.abvs uni0958_uni0930_uni094D.vatu uni0958_uni094D.half uni0958_uni094D.haln uni0959_uni0930_uni094D.vatu uni0959_uni094D.half uni0959_uni094D.haln uni095A_uni0930_uni094D.vatu uni095A_uni094D.half uni095B_uni0930_uni094D.vatu uni095B_uni094D.half uni095B_uni094D.haln uni095C_uni0930_uni094D.vatu uni095C_uni094D.haln uni095D_uni0930_uni094D.vatu uni095D_uni094D.haln uni095E_uni094D.half uni095E_uni094D.haln uni095F_uni094D.half uni095F_uni094D.haln uniFB01 uniFB02]; @GDEF_component = []; @@ -428,4 +427,4 @@ feature blwm { @GDEF_component; LigatureCaretByPos uniFB01 32; LigatureCaretByPos uniFB02 84; -} GDEF; +} GDEF; \ No newline at end of file diff --git a/sources/Samaano-Wide-Thin-Slanted.ufo/fontinfo.plist b/sources/Samaano-Wide-Thin-Slanted.ufo/fontinfo.plist index 4dda6b108..f053fde72 100644 --- a/sources/Samaano-Wide-Thin-Slanted.ufo/fontinfo.plist +++ b/sources/Samaano-Wide-Thin-Slanted.ufo/fontinfo.plist @@ -28,7 +28,7 @@ italicAngle - 0.0 + -20.0 note 2024-8-27: Created with FontForge (http://fontforge.org) openTypeHeadCreated @@ -47,13 +47,11 @@ https://github.com/mitradranirban openTypeNameLicense Copyright 2024 The Samaano Project Authors (https://github.com/mitradranirban/samaano-fonts) - -This Font Software is licensed under the SIL Open Font License, Version 1.1. -This license is available with a FAQ at: http://scripts.sil.org/OFL +This Font Software is licensed under the SIL Open Font License, Version 1.1.This license is available with a FAQ at: https://openfontlicence.org openTypeNameLicenseURL - http://scripts.sil.org/OFL + https://openfontlicence.org openTypeNameManufacturer Dr Anirban Mitra openTypeNameManufacturerURL @@ -80,6 +78,7 @@ This license is available with a FAQ at: http://scripts.sil.org/OFL openTypeOS2Selection + 8 7 openTypeOS2Type @@ -101,7 +100,7 @@ This license is available with a FAQ at: http://scripts.sil.org/OFL openTypeOS2WinAscent 2476 openTypeOS2WinDescent - 958 + 978 openTypeVheaVertTypoLineGap 0 postscriptFontName @@ -109,7 +108,7 @@ This license is available with a FAQ at: http://scripts.sil.org/OFL postscriptFullName Samaano Wide Thin Slanted postscriptSlantAngle - 0.0 + -20.0 postscriptUnderlinePosition 0.0 postscriptUnderlineThickness diff --git a/sources/Samaano-Wide-Thin-Slanted.ufo/glyphs/contents.plist b/sources/Samaano-Wide-Thin-Slanted.ufo/glyphs/contents.plist index 43e9c29e9..cb08942a7 100644 --- a/sources/Samaano-Wide-Thin-Slanted.ufo/glyphs/contents.plist +++ b/sources/Samaano-Wide-Thin-Slanted.ufo/glyphs/contents.plist @@ -1004,8 +1004,6 @@ uni0930_uni0941.blws.glif uni0930_uni0942.blws uni0930_uni0942.blws.glif - uni0930_uni094D.abvs - uni0930_uni094D_.abvs.glif uni0930_uni094D.blwf uni0930_uni094D_.blwf.glif uni0930_uni094D.half @@ -1014,8 +1012,6 @@ uni0930_uni094D_.haln.glif uni0930_uni094D.rphf uni0930_uni094D_.rphf.glif - uni0930_uni094D.vatu - uni0930_uni094D_.vatu.glif uni0931 uni0931.glif uni0931_uni0930_uni094D.vatu diff --git a/sources/Samaano-Wide-Thin-Slanted.ufo/glyphs/uni0930_uni094D_.abvs.glif b/sources/Samaano-Wide-Thin-Slanted.ufo/glyphs/uni0930_uni094D_.abvs.glif deleted file mode 100644 index fa8f79ef7..000000000 --- a/sources/Samaano-Wide-Thin-Slanted.ufo/glyphs/uni0930_uni094D_.abvs.glif +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/Samaano-Wide-Thin-Slanted.ufo/glyphs/uni0930_uni094D_.vatu.glif b/sources/Samaano-Wide-Thin-Slanted.ufo/glyphs/uni0930_uni094D_.vatu.glif deleted file mode 100644 index 6f32192b2..000000000 --- a/sources/Samaano-Wide-Thin-Slanted.ufo/glyphs/uni0930_uni094D_.vatu.glif +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/sources/Samaano-Wide-Thin-Slanted.ufo/lib.plist b/sources/Samaano-Wide-Thin-Slanted.ufo/lib.plist index 2c4d73573..3416a4e4e 100644 --- a/sources/Samaano-Wide-Thin-Slanted.ufo/lib.plist +++ b/sources/Samaano-Wide-Thin-Slanted.ufo/lib.plist @@ -647,12 +647,10 @@ uni0930_uni0930_uni094D.vatu uni0930_uni0941.blws uni0930_uni0942.blws - uni0930_uni094D.abvs uni0930_uni094D.blwf uni0930_uni094D.half uni0930_uni094D.haln uni0930_uni094D.rphf - uni0930_uni094D.vatu uni0931_uni0930_uni094D.vatu uni0931_uni094D.haln uni0932_uni0930_uni094D.vatu @@ -1725,8 +1723,6 @@ base uni0930_uni0942.blws base - uni0930_uni094D.abvs - base uni0930_uni094D.blwf base uni0930_uni094D.half @@ -1735,8 +1731,6 @@ base uni0930_uni094D.rphf base - uni0930_uni094D.vatu - base uni0931 base uni0931_uni0930_uni094D.vatu diff --git a/sources/Samaano-Wide-Thin.sfd b/sources/Samaano-Wide-Thin.sfd index 1eaf737e4..76be9aaa1 100644 --- a/sources/Samaano-Wide-Thin.sfd +++ b/sources/Samaano-Wide-Thin.sfd @@ -23,7 +23,7 @@ OS2Version: 0 OS2_WeightWidthSlopeOnly: 1 OS2_UseTypoMetrics: 0 CreationTime: 1729409894 -ModificationTime: 1729412756 +ModificationTime: 1729498063 PfmFamily: 49 TTFWeight: 100 TTFWidth: 9 @@ -37,7 +37,7 @@ OS2TypoDOffset: 0 OS2TypoLinegap: 0 OS2WinAscent: 2476 OS2WinAOffset: 0 -OS2WinDescent: 958 +OS2WinDescent: 978 OS2WinDOffset: 0 HheadAscent: 2457 HheadAOffset: 0 @@ -4324,13 +4324,14 @@ p2103 Vbase p2104 ss." -Encoding: Custom +Encoding: UnicodeBmp +Compacted: 1 UnicodeInterp: none NameList: AGL For New Fonts DisplaySize: -96 AntiAlias: 1 FitToEm: 0 -WinInfo: 0 13 5 +WinInfo: 494 13 5 BeginPrivate: 0 EndPrivate Grid @@ -4342,7 +4343,7 @@ Grid 2048 1023 l 1024 EndSplineSet AnchorClass2: "blwm" "'blwm' Below Base Mark in Devanagari2 lookup 2-1" "abvm" "'abvm' Above Base Mark in Devanagari2 lookup 1-1" "top" "markMarkPositioninglookup0 subtable" "base" "markMarkPositioninglookup0 subtable" -BeginChars: 718 718 +BeginChars: 65701 716 StartChar: .notdef Encoding: 0 0 0 @@ -4378,7 +4379,7 @@ EndSplineSet EndChar StartChar: A -Encoding: 1 65 1 +Encoding: 65 65 1 GlifName: A_ Width: 2048 VWidth: 0 @@ -4414,7 +4415,7 @@ EndSplineSet EndChar StartChar: AE -Encoding: 2 198 2 +Encoding: 198 198 2 GlifName: A_E_ Width: 2048 VWidth: 0 @@ -4451,115 +4452,115 @@ EndSplineSet EndChar StartChar: Aacute -Encoding: 3 193 3 +Encoding: 193 193 3 GlifName: A_acute Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 1 65 N 1 0 0 1 12 0 2 -Refer: 123 769 N 1 0 0 1 66 906 2 +Refer: 123 769 N 1 0 0 1 581 931 2 +Refer: 1 65 N 1 0 0 1 0 0 3 EndChar StartChar: Abreve -Encoding: 4 258 4 +Encoding: 258 258 4 GlifName: A_breve Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 1 65 N 1 0 0 1 0 0 2 -Refer: 351 774 N 1 0 0 1 62 180 2 +Refer: 351 774 N 1 0 0 1 549 201 2 +Refer: 1 65 N 1 0 0 1 0 0 3 EndChar StartChar: Acircumflex -Encoding: 5 194 5 +Encoding: 194 194 5 GlifName: A_circumflex Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 1 65 N 1 0 0 1 0 0 2 -Refer: 348 770 N 1 0 0 1 86 -344 2 +Refer: 348 770 N 1 0 0 1 567 214 2 +Refer: 1 65 N 1 0 0 1 0 0 3 EndChar StartChar: Adieresis -Encoding: 6 196 6 +Encoding: 196 196 6 GlifName: A_dieresis Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 1 65 N 1 0 0 1 12 0 2 -Refer: 353 776 N 1 0 0 1 48 35 2 +Refer: 353 776 N 1 0 0 1 529 49 2 +Refer: 1 65 N 1 0 0 1 0 0 3 EndChar StartChar: Agrave -Encoding: 7 192 7 +Encoding: 192 192 7 GlifName: A_grave Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 1 65 N 1 0 0 1 -20 0 2 -Refer: 201 768 N 1 0 0 1 68 1031 2 +Refer: 201 768 N 1 0 0 1 499 972 2 +Refer: 1 65 N 1 0 0 1 0 0 3 EndChar StartChar: Amacron -Encoding: 8 256 8 +Encoding: 256 256 8 GlifName: A_macron Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 1 65 N 1 0 0 1 0 0 2 -Refer: 349 772 N 1 0 0 1 8 124 2 +Refer: 349 772 N 1 0 0 1 557 109 2 +Refer: 1 65 N 1 0 0 1 0 0 3 EndChar StartChar: Aogonek -Encoding: 9 260 9 +Encoding: 260 260 9 GlifName: A_ogonek Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 1 65 N 1 0 0 1 1 0 2 -Refer: 359 808 N 1 0 0 1 606 1 2 +Refer: 359 808 N 1 0 0 1 379 -82 2 +Refer: 1 65 N 1 0 0 1 0 0 3 EndChar StartChar: Aring -Encoding: 10 197 10 +Encoding: 197 197 10 GlifName: A_ring Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 1 65 N 1 0 0 1 12 0 2 -Refer: 354 778 N 1 0 0 1 76 90 2 +Refer: 354 778 N 1 0 0 1 504 105 2 +Refer: 1 65 N 1 0 0 1 0 0 3 EndChar StartChar: Atilde -Encoding: 11 195 11 +Encoding: 195 195 11 GlifName: A_tilde Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 1 65 N 1 0 0 1 12 0 2 -Refer: 305 771 N 1 0 0 1 58 -173 2 +Refer: 305 771 N 1 0 0 1 553 -214 2 +Refer: 1 65 N 1 0 0 1 0 0 3 EndChar StartChar: B -Encoding: 12 66 12 +Encoding: 66 66 12 GlifName: B_ Width: 2048 VWidth: 0 @@ -4616,7 +4617,7 @@ EndSplineSet EndChar StartChar: C -Encoding: 13 67 13 +Encoding: 67 67 13 GlifName: C_ Width: 2048 VWidth: 0 @@ -4645,67 +4646,67 @@ EndSplineSet EndChar StartChar: Cacute -Encoding: 14 262 14 +Encoding: 262 262 14 GlifName: C_acute Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 13 67 N 1 0 0 1 0 0 2 -Refer: 123 769 N 1 0 0 1 115 946 2 +Refer: 123 769 N 1 0 0 1 518 927 2 +Refer: 13 67 N 1 0 0 1 0 0 3 EndChar StartChar: Ccaron -Encoding: 15 268 15 +Encoding: 268 268 15 GlifName: C_caron Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 13 67 N 1 0 0 1 0 0 2 -Refer: 356 780 N 1 0 0 1 72 388 2 +Refer: 356 780 N 1 0 0 1 499 322 2 +Refer: 13 67 N 1 0 0 1 0 0 3 EndChar StartChar: Ccedilla -Encoding: 16 199 16 +Encoding: 199 199 16 GlifName: C_cedilla Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 13 67 N 1 0 0 1 17 0 2 -Refer: 358 807 N 1 0 0 1 798 -162 2 +Refer: 358 807 N 1 0 0 1 708 -160.467 2 +Refer: 13 67 N 1 0 0 1 0 0 3 EndChar StartChar: Ccircumflex -Encoding: 17 264 17 +Encoding: 264 264 17 GlifName: C_circumflex Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 13 67 N 1 0 0 1 0 0 2 -Refer: 348 770 N 1 0 0 1 88 -292 2 +Refer: 348 770 N 1 0 0 1 504 210 2 +Refer: 13 67 N 1 0 0 1 0 0 3 EndChar StartChar: Cdotaccent -Encoding: 18 266 18 +Encoding: 266 266 18 GlifName: C_dotaccent Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 13 67 N 1 0 0 1 0 0 2 -Refer: 352 775 N 1 0 0 1 75 39 2 +Refer: 352 775 N 1 0 0 1 474 95 2 +Refer: 13 67 N 1 0 0 1 0 0 3 EndChar StartChar: D -Encoding: 19 68 19 +Encoding: 68 68 19 GlifName: D_ Width: 2048 VWidth: 0 @@ -4744,19 +4745,19 @@ EndSplineSet EndChar StartChar: Dcaron -Encoding: 20 270 20 +Encoding: 270 270 20 GlifName: D_caron Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 19 68 N 1 0 0 1 0 0 2 -Refer: 356 780 N 1 0 0 1 -288 388 2 +Refer: 356 780 N 1 0 0 1 323 326 2 +Refer: 19 68 N 1 0 0 1 0 0 3 EndChar StartChar: Dcroat -Encoding: 21 272 21 +Encoding: 272 272 21 GlifName: D_croat Width: 2048 VWidth: 0 @@ -4798,7 +4799,7 @@ EndSplineSet EndChar StartChar: E -Encoding: 22 69 22 +Encoding: 69 69 22 GlifName: E_ Width: 2048 VWidth: 0 @@ -4833,103 +4834,103 @@ EndSplineSet EndChar StartChar: Eacute -Encoding: 23 201 23 +Encoding: 201 201 23 GlifName: E_acute Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 22 69 N 1 0 0 1 -68 0 2 -Refer: 123 769 N 1 0 0 1 -362 946 2 +Refer: 123 769 N 1 0 0 1 518 931 2 +Refer: 22 69 N 1 0 0 1 0 0 3 EndChar StartChar: Ebreve -Encoding: 24 276 24 +Encoding: 276 276 24 GlifName: E_breve Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 22 69 N 1 0 0 1 0 0 2 -Refer: 351 774 N 1 0 0 1 63 228 2 +Refer: 351 774 N 1 0 0 1 486 201 2 +Refer: 22 69 N 1 0 0 1 0 0 3 EndChar StartChar: Ecaron -Encoding: 25 282 25 +Encoding: 282 282 25 GlifName: E_caron Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 22 69 N 1 0 0 1 37 0 2 -Refer: 356 780 N 1 0 0 1 95 354 2 +Refer: 356 780 N 1 0 0 1 499 326 2 +Refer: 22 69 N 1 0 0 1 0 0 3 EndChar StartChar: Ecircumflex -Encoding: 26 202 26 +Encoding: 202 202 26 GlifName: E_circumflex Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 22 69 N 1 0 0 1 0 0 2 -Refer: 348 770 N 1 0 0 1 116 -300 2 +Refer: 348 770 N 1 0 0 1 504 214 2 +Refer: 22 69 N 1 0 0 1 0 0 3 EndChar StartChar: Edieresis -Encoding: 27 203 27 +Encoding: 203 203 27 GlifName: E_dieresis Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 22 69 N 1 0 0 1 -6 0 2 -Refer: 353 776 N 1 0 0 1 -353 39 2 +Refer: 353 776 N 1 0 0 1 466 49 2 +Refer: 22 69 N 1 0 0 1 0 0 3 EndChar StartChar: Edotaccent -Encoding: 28 278 28 +Encoding: 278 278 28 GlifName: E_dotaccent Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 22 69 N 1 0 0 1 0 0 2 -Refer: 352 775 N 1 0 0 1 54 47 2 +Refer: 352 775 N 1 0 0 1 474 99 2 +Refer: 22 69 N 1 0 0 1 0 0 3 EndChar StartChar: Egrave -Encoding: 29 200 29 +Encoding: 200 200 29 GlifName: E_grave Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 22 69 N 1 0 0 1 -32 0 2 -Refer: 201 768 N 1 0 0 1 -332 1003 2 +Refer: 201 768 N 1 0 0 1 436 972 2 +Refer: 22 69 N 1 0 0 1 0 0 3 EndChar StartChar: Emacron -Encoding: 30 274 30 +Encoding: 274 274 30 GlifName: E_macron Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 22 69 N 1 0 0 1 0 0 2 -Refer: 349 772 N 1 0 0 1 56 124 2 +Refer: 349 772 N 1 0 0 1 494 109 2 +Refer: 22 69 N 1 0 0 1 0 0 3 EndChar StartChar: Eng -Encoding: 31 330 31 +Encoding: 330 330 31 GlifName: E_ng Width: 1024 VWidth: 0 @@ -4961,19 +4962,19 @@ EndSplineSet EndChar StartChar: Eogonek -Encoding: 32 280 32 +Encoding: 280 280 32 GlifName: E_ogonek Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 22 69 N 1 0 0 1 0 0 2 -Refer: 359 808 N 1 0 0 1 633 -19 2 +Refer: 359 808 N 1 0 0 1 306 -77 2 +Refer: 22 69 N 1 0 0 1 0 0 3 EndChar StartChar: Eth -Encoding: 33 208 33 +Encoding: 208 208 33 AltUni2: 000189.ffffffff.0 GlifName: E_th Width: 2048 @@ -5016,7 +5017,7 @@ EndSplineSet EndChar StartChar: Euro -Encoding: 34 8364 34 +Encoding: 8364 8364 34 GlifName: E_uro Width: 2048 VWidth: 0 @@ -5053,7 +5054,7 @@ EndSplineSet EndChar StartChar: F -Encoding: 35 70 35 +Encoding: 70 70 35 GlifName: F_ Width: 2048 VWidth: 0 @@ -5080,7 +5081,7 @@ EndSplineSet EndChar StartChar: G -Encoding: 36 71 36 +Encoding: 71 71 36 GlifName: G_ Width: 2048 VWidth: 0 @@ -5115,43 +5116,43 @@ EndSplineSet EndChar StartChar: Gbreve -Encoding: 37 286 37 +Encoding: 286 286 37 GlifName: G_breve Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 36 71 N 1 0 0 1 0 0 2 -Refer: 351 774 N 1 0 0 1 58 156 2 +Refer: 351 774 N 1 0 0 1 518 209 2 +Refer: 36 71 N 1 0 0 1 0 0 3 EndChar StartChar: Gcircumflex -Encoding: 38 284 38 +Encoding: 284 284 38 GlifName: G_circumflex Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 36 71 N 1 0 0 1 0 0 2 -Refer: 348 770 N 1 0 0 1 89 -134 2 +Refer: 348 770 N 1 0 0 1 536 222 2 +Refer: 36 71 N 1 0 0 1 0 0 3 EndChar StartChar: Gdotaccent -Encoding: 39 288 39 +Encoding: 288 288 39 GlifName: G_dotaccent Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 36 71 N 1 0 0 1 0 0 2 -Refer: 352 775 N 1 0 0 1 71 39 2 +Refer: 352 775 N 1 0 0 1 506 107 2 +Refer: 36 71 N 1 0 0 1 0 0 3 EndChar StartChar: H -Encoding: 40 72 40 +Encoding: 72 72 40 GlifName: H_ Width: 2048 VWidth: 0 @@ -5180,7 +5181,7 @@ EndSplineSet EndChar StartChar: Hbar -Encoding: 41 294 41 +Encoding: 294 294 41 GlifName: H_bar Width: 2048 VWidth: 0 @@ -5212,19 +5213,19 @@ EndSplineSet EndChar StartChar: Hcircumflex -Encoding: 42 292 42 +Encoding: 292 292 42 GlifName: H_circumflex Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 40 72 N 1 0 0 1 0 0 2 -Refer: 348 770 N 1 0 0 1 58 -300 2 +Refer: 348 770 N 1 0 0 1 530 211 2 +Refer: 40 72 N 1 0 0 1 0 0 3 EndChar StartChar: I -Encoding: 43 73 43 +Encoding: 73 73 43 GlifName: I_ Width: 2048 VWidth: 0 @@ -5254,127 +5255,127 @@ EndSplineSet EndChar StartChar: IJ -Encoding: 44 306 44 +Encoding: 306 306 44 GlifName: I_J_ Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 43 73 N 0.5 0 0 1 -2.5 0 2 Refer: 54 74 N 0.5 0 0 1 1021.5 0 2 +Refer: 43 73 N 0.5 0 0 1 -2.5 0 2 EndChar StartChar: Iacute -Encoding: 45 205 45 +Encoding: 205 205 45 GlifName: I_acute Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 43 73 N 1 0 0 1 10 0 2 -Refer: 123 769 N 1 0 0 1 0 946 2 +Refer: 123 769 N 1 0 0 1 518 931 2 +Refer: 43 73 N 1 0 0 1 0 0 3 EndChar StartChar: Ibreve -Encoding: 46 300 46 +Encoding: 300 300 46 GlifName: I_breve Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 43 73 N 1 0 0 1 0 0 2 -Refer: 351 774 N 1 0 0 1 60 172 2 +Refer: 351 774 N 1 0 0 1 486 201 2 +Refer: 43 73 N 1 0 0 1 0 0 3 EndChar StartChar: Icircumflex -Encoding: 47 206 47 +Encoding: 206 206 47 GlifName: I_circumflex Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 43 73 N 1 0 0 1 0 0 2 -Refer: 348 770 N 1 0 0 1 -8 -300 2 +Refer: 348 770 N 1 0 0 1 504 214 2 +Refer: 43 73 N 1 0 0 1 0 0 3 EndChar StartChar: Idieresis -Encoding: 48 207 48 +Encoding: 207 207 48 GlifName: I_dieresis Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 43 73 N 1 0 0 1 0 0 2 -Refer: 353 776 N 1 0 0 1 -62 39 2 +Refer: 353 776 N 1 0 0 1 466 49 2 +Refer: 43 73 N 1 0 0 1 0 0 3 EndChar StartChar: Idotaccent -Encoding: 49 304 49 +Encoding: 304 304 49 GlifName: I_dotaccent Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 43 73 N 1 0 0 1 0 0 2 -Refer: 352 775 N 1 0 0 1 10 47 2 +Refer: 352 775 N 1 0 0 1 474 99 2 +Refer: 43 73 N 1 0 0 1 0 0 3 EndChar StartChar: Igrave -Encoding: 50 204 50 +Encoding: 204 204 50 GlifName: I_grave Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 43 73 N 1 0 0 1 10 0 2 -Refer: 201 768 N 1 0 0 1 -6 1003 2 +Refer: 201 768 N 1 0 0 1 436 972 2 +Refer: 43 73 N 1 0 0 1 0 0 3 EndChar StartChar: Imacron -Encoding: 51 298 51 +Encoding: 298 298 51 GlifName: I_macron Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 43 73 N 1 0 0 1 0 0 2 -Refer: 349 772 N 1 0 0 1 38 140 2 +Refer: 349 772 N 1 0 0 1 494 109 2 +Refer: 43 73 N 1 0 0 1 0 0 3 EndChar StartChar: Iogonek -Encoding: 52 302 52 +Encoding: 302 302 52 GlifName: I_ogonek Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 43 73 N 1 0 0 1 0 0 2 -Refer: 359 808 N 1 0 0 1 261 20 2 +Refer: 359 808 N 1 0 0 1 258 -49 2 +Refer: 43 73 N 1 0 0 1 0 0 3 EndChar StartChar: Itilde -Encoding: 53 296 53 +Encoding: 296 296 53 GlifName: I_tilde Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 43 73 N 1 0 0 1 0 0 2 -Refer: 305 771 N 1 0 0 1 -18 -169 2 +Refer: 305 771 N 1 0 0 1 490 -214 2 +Refer: 43 73 N 1 0 0 1 0 0 3 EndChar StartChar: J -Encoding: 54 74 54 +Encoding: 74 74 54 GlifName: J_ Width: 2048 VWidth: 0 @@ -5403,19 +5404,19 @@ EndSplineSet EndChar StartChar: Jcircumflex -Encoding: 55 308 55 +Encoding: 308 308 55 GlifName: J_circumflex Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 54 74 N 1 0 0 1 -70 0 2 -Refer: 348 770 N 1 0 0 1 800 -300 2 +Refer: 348 770 N 1 0 0 1 832 222 2 +Refer: 54 74 N 1 0 0 1 0 0 3 EndChar StartChar: K -Encoding: 56 75 56 +Encoding: 75 75 56 GlifName: K_ Width: 2048 VWidth: 0 @@ -5443,7 +5444,7 @@ EndSplineSet EndChar StartChar: L -Encoding: 57 76 57 +Encoding: 76 76 57 GlifName: L_ Width: 2048 VWidth: 0 @@ -5466,19 +5467,19 @@ EndSplineSet EndChar StartChar: Lacute -Encoding: 58 313 58 +Encoding: 313 313 58 GlifName: L_acute Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 57 76 N 1 0 0 1 0 0 2 -Refer: 123 769 N 1 0 0 1 -858 938 2 +Refer: 123 769 N 1 0 0 1 188 940 2 +Refer: 57 76 N 1 0 0 1 0 0 3 EndChar StartChar: Lcaron -Encoding: 59 317 59 +Encoding: 317 317 59 GlifName: L_caron Width: 2048 VWidth: 0 @@ -5505,19 +5506,19 @@ EndSplineSet EndChar StartChar: Ldot -Encoding: 60 319 60 +Encoding: 319 319 60 GlifName: L_dot Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 57 76 N 1 0 0 1 0 0 2 -Refer: 267 183 N 1 0 0 1 -488 -228 2 +Refer: 267 183 N 1 0 0 1 0 -229 2 +Refer: 57 76 N 1 0 0 1 0 0 3 EndChar StartChar: Lslash -Encoding: 61 321 61 +Encoding: 321 321 61 GlifName: L_slash Width: 2048 VWidth: 0 @@ -5544,7 +5545,7 @@ EndSplineSet EndChar StartChar: M -Encoding: 62 77 62 +Encoding: 77 77 62 GlifName: M_ Width: 2048 VWidth: 0 @@ -5577,7 +5578,7 @@ EndSplineSet EndChar StartChar: N -Encoding: 63 78 63 +Encoding: 78 78 63 GlifName: N_ Width: 2048 VWidth: 0 @@ -5606,43 +5607,43 @@ EndSplineSet EndChar StartChar: Nacute -Encoding: 64 323 64 +Encoding: 323 323 64 GlifName: N_acute Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 63 78 N 1 0 0 1 0 0 2 -Refer: 123 769 N 1 0 0 1 81 963 2 +Refer: 123 769 N 1 0 0 1 536 932 2 +Refer: 63 78 N 1 0 0 1 0 0 3 EndChar StartChar: Ncaron -Encoding: 65 327 65 +Encoding: 327 327 65 GlifName: N_caron Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 63 78 N 1 0 0 1 84 0 2 -Refer: 356 780 N 1 0 0 1 110 300 2 +Refer: 356 780 N 1 0 0 1 517 327 2 +Refer: 63 78 N 1 0 0 1 0 0 3 EndChar StartChar: Ntilde -Encoding: 66 209 66 +Encoding: 209 209 66 GlifName: N_tilde Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 63 78 N 1 0 0 1 0 0 2 -Refer: 305 771 N 1 0 0 1 97 -168 2 +Refer: 305 771 N 1 0 0 1 508 -213 2 +Refer: 63 78 N 1 0 0 1 0 0 3 EndChar StartChar: O -Encoding: 67 79 67 +Encoding: 79 79 67 GlifName: O_ Width: 2048 VWidth: 0 @@ -5676,7 +5677,7 @@ EndSplineSet EndChar StartChar: OE -Encoding: 68 338 68 +Encoding: 338 338 68 GlifName: O_E_ Width: 2048 VWidth: 0 @@ -5713,91 +5714,91 @@ EndSplineSet EndChar StartChar: Oacute -Encoding: 69 211 69 +Encoding: 211 211 69 GlifName: O_acute Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 67 79 N 1 0 0 1 2 0 2 -Refer: 123 769 N 1 0 0 1 8 946 2 +Refer: 123 769 N 1 0 0 1 504 936 2 +Refer: 67 79 N 1 0 0 1 0 0 3 EndChar StartChar: Obreve -Encoding: 70 334 70 +Encoding: 334 334 70 GlifName: O_breve Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 67 79 N 1 0 0 1 0 0 2 -Refer: 351 774 N 1 0 0 1 51 172 2 +Refer: 351 774 N 1 0 0 1 472 206 2 +Refer: 67 79 N 1 0 0 1 0 0 3 EndChar StartChar: Ocircumflex -Encoding: 71 212 71 +Encoding: 212 212 71 GlifName: O_circumflex Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 67 79 N 1 0 0 1 0 0 2 -Refer: 348 770 N 1 0 0 1 0 -300 2 +Refer: 348 770 N 1 0 0 1 490 219 2 +Refer: 67 79 N 1 0 0 1 0 0 3 EndChar StartChar: Odieresis -Encoding: 72 214 72 +Encoding: 214 214 72 GlifName: O_dieresis Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 67 79 N 1 0 0 1 2 0 2 -Refer: 353 776 N 1 0 0 1 -33 39 2 +Refer: 353 776 N 1 0 0 1 452 54 2 +Refer: 67 79 N 1 0 0 1 0 0 3 EndChar StartChar: Ograve -Encoding: 73 210 73 +Encoding: 210 210 73 GlifName: O_grave Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 67 79 N 1 0 0 1 2 0 2 -Refer: 201 768 N 1 0 0 1 2 1003 2 +Refer: 201 768 N 1 0 0 1 422 977 2 +Refer: 67 79 N 1 0 0 1 0 0 3 EndChar StartChar: Ohungarumlaut -Encoding: 74 336 74 +Encoding: 336 336 74 GlifName: O_hungarumlaut Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 67 79 N 1 0 0 1 0 0 2 -Refer: 355 779 N 1 0 0 1 70 350 2 +Refer: 355 779 N 1 0 0 1 397 366 2 +Refer: 67 79 N 1 0 0 1 0 0 3 EndChar StartChar: Omacron -Encoding: 75 332 75 +Encoding: 332 332 75 GlifName: O_macron Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 67 79 N 1 0 0 1 0 0 2 -Refer: 349 772 N 1 0 0 1 38 108 2 +Refer: 349 772 N 1 0 0 1 480 114 2 +Refer: 67 79 N 1 0 0 1 0 0 3 EndChar StartChar: Oslash -Encoding: 76 216 76 +Encoding: 216 216 76 GlifName: O_slash Width: 2048 VWidth: 0 @@ -5834,19 +5835,19 @@ EndSplineSet EndChar StartChar: Otilde -Encoding: 77 213 77 +Encoding: 213 213 77 GlifName: O_tilde Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 67 79 N 1 0 0 1 2 0 2 -Refer: 305 771 N 1 0 0 1 0 -169 2 +Refer: 305 771 N 1 0 0 1 476 -209 2 +Refer: 67 79 N 1 0 0 1 0 0 3 EndChar StartChar: P -Encoding: 78 80 78 +Encoding: 80 80 78 GlifName: P_ Width: 2048 VWidth: 0 @@ -5879,7 +5880,7 @@ EndSplineSet EndChar StartChar: Q -Encoding: 79 81 79 +Encoding: 81 81 79 GlifName: Q_ Width: 2048 VWidth: 0 @@ -5916,7 +5917,7 @@ EndSplineSet EndChar StartChar: R -Encoding: 80 82 80 +Encoding: 82 82 80 GlifName: R_ Width: 2048 VWidth: 0 @@ -5954,27 +5955,27 @@ EndSplineSet EndChar StartChar: Racute -Encoding: 81 340 81 +Encoding: 340 340 81 GlifName: R_acute Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 80 82 N 1 0 0 1 0 0 2 -Refer: 123 769 N 1 0 0 1 44 946 2 +Refer: 123 769 N 1 0 0 1 528 932 2 +Refer: 80 82 N 1 0 0 1 0 0 3 EndChar StartChar: Rcaron -Encoding: 82 344 82 +Encoding: 344 344 82 GlifName: R_caron Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 80 82 N 1 0 0 1 0 0 2 -Refer: 356 780 N 1 0 0 1 92 412 2 +Refer: 356 780 N 1 0 0 1 509 327 2 +Refer: 80 82 N 1 0 0 1 0 0 3 EndChar StartChar: S @@ -6017,55 +6018,55 @@ EndSplineSet EndChar StartChar: Sacute -Encoding: 84 346 84 +Encoding: 346 346 84 GlifName: S_acute Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 83 83 N 1 0 0 1 0 0 2 -Refer: 123 769 N 1 0 0 1 61 938 2 +Refer: 123 769 N 1 0 0 1 556 940 2 +Refer: 83 83 N 1 0 0 1 0 0 3 EndChar StartChar: Scaron -Encoding: 85 352 85 +Encoding: 352 352 85 GlifName: S_caron Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 83 83 N 1 0 0 1 0 0 2 -Refer: 356 780 N 1 0 0 1 97 364 2 +Refer: 356 780 N 1 0 0 1 537 335 2 +Refer: 83 83 N 1 0 0 1 0 0 3 EndChar StartChar: Scedilla -Encoding: 86 350 86 +Encoding: 350 350 86 GlifName: S_cedilla Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 83 83 N 1 0 0 1 0 0 2 -Refer: 358 807 N 1 0 0 1 408 -160 2 +Refer: 358 807 N 1 0 0 1 386 -249 2 +Refer: 83 83 N 1 0 0 1 0 0 3 EndChar StartChar: Scircumflex -Encoding: 87 348 87 +Encoding: 348 348 87 GlifName: S_circumflex Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 83 83 N 1 0 0 1 0 0 2 -Refer: 348 770 N 1 0 0 1 97 -276 2 +Refer: 348 770 N 1 0 0 1 542 223 2 +Refer: 83 83 N 1 0 0 1 0 0 3 EndChar StartChar: T -Encoding: 88 84 88 +Encoding: 84 84 88 GlifName: T_ Width: 2048 VWidth: 0 @@ -6089,19 +6090,19 @@ EndSplineSet EndChar StartChar: Tcaron -Encoding: 89 356 89 +Encoding: 356 356 89 GlifName: T_caron Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 88 84 N 1 0 0 1 0 0 2 -Refer: 356 780 N 1 0 0 1 48 356 2 +Refer: 356 780 N 1 0 0 1 545 323 2 +Refer: 88 84 N 1 0 0 1 0 0 3 EndChar StartChar: Thorn -Encoding: 90 222 90 +Encoding: 222 222 90 GlifName: T_horn Width: 2048 VWidth: 0 @@ -6133,7 +6134,7 @@ EndSplineSet EndChar StartChar: U -Encoding: 91 85 91 +Encoding: 85 85 91 GlifName: U_ Width: 2048 VWidth: 0 @@ -6162,127 +6163,127 @@ EndSplineSet EndChar StartChar: Uacute -Encoding: 92 218 92 +Encoding: 218 218 92 GlifName: U_acute Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 91 85 N 1 0 0 1 0 0 2 -Refer: 123 769 N 1 0 0 1 77 946 2 +Refer: 123 769 N 1 0 0 1 556 932 2 +Refer: 91 85 N 1 0 0 1 0 0 3 EndChar StartChar: Ubreve -Encoding: 93 364 93 +Encoding: 364 364 93 GlifName: U_breve Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 91 85 N 1 0 0 1 0 0 2 -Refer: 351 774 N 1 0 0 1 73 164 2 +Refer: 351 774 N 1 0 0 1 524 202 2 +Refer: 91 85 N 1 0 0 1 0 0 3 EndChar StartChar: Ucircumflex -Encoding: 94 219 94 +Encoding: 219 219 94 GlifName: U_circumflex Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 91 85 N 1 0 0 1 69 0 2 -Refer: 348 770 N 1 0 0 1 157 -300 2 +Refer: 348 770 N 1 0 0 1 542 215 2 +Refer: 91 85 N 1 0 0 1 0 0 3 EndChar StartChar: Udieresis -Encoding: 95 220 95 +Encoding: 220 220 95 GlifName: U_dieresis Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 91 85 N 1 0 0 1 0 0 2 -Refer: 353 776 N 1 0 0 1 81 39 2 +Refer: 353 776 N 1 0 0 1 504 50 2 +Refer: 91 85 N 1 0 0 1 0 0 3 EndChar StartChar: Ugrave -Encoding: 96 217 96 +Encoding: 217 217 96 GlifName: U_grave Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 91 85 N 1 0 0 1 0 0 2 -Refer: 201 768 N 1 0 0 1 34 1003 2 +Refer: 201 768 N 1 0 0 1 474 973 2 +Refer: 91 85 N 1 0 0 1 0 0 3 EndChar StartChar: Uhungarumlaut -Encoding: 97 368 97 +Encoding: 368 368 97 GlifName: U_hungarumlaut Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 91 85 N 1 0 0 1 0 0 2 -Refer: 355 779 N 1 0 0 1 100 366 2 +Refer: 355 779 N 1 0 0 1 449 362 2 +Refer: 91 85 N 1 0 0 1 0 0 3 EndChar StartChar: Umacron -Encoding: 98 362 98 +Encoding: 362 362 98 GlifName: U_macron Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 91 85 N 1 0 0 1 0 0 2 -Refer: 349 772 N 1 0 0 1 74 84 2 +Refer: 349 772 N 1 0 0 1 532 110 2 +Refer: 91 85 N 1 0 0 1 0 0 3 EndChar StartChar: Uogonek -Encoding: 99 370 99 +Encoding: 370 370 99 GlifName: U_ogonek Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 91 85 N 1 0 0 1 0 0 2 -Refer: 359 808 N 1 0 0 1 272 14 2 +Refer: 359 808 N 1 0 0 1 334 -89 2 +Refer: 91 85 N 1 0 0 1 0 0 3 EndChar StartChar: Uring -Encoding: 100 366 100 +Encoding: 366 366 100 GlifName: U_ring Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 91 85 N 1 0 0 1 0 0 2 -Refer: 354 778 N 1 0 0 1 62 106 2 +Refer: 354 778 N 1 0 0 1 479 106 2 +Refer: 91 85 N 1 0 0 1 0 0 3 EndChar StartChar: Utilde -Encoding: 101 360 101 +Encoding: 360 360 101 GlifName: U_tilde Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 91 85 N 1 0 0 1 0 0 2 -Refer: 305 771 N 1 0 0 1 60 -193 2 +Refer: 305 771 N 1 0 0 1 528 -213 2 +Refer: 91 85 N 1 0 0 1 0 0 3 EndChar StartChar: V -Encoding: 102 86 102 +Encoding: 86 86 102 GlifName: V_ Width: 2048 VWidth: 0 @@ -6306,7 +6307,7 @@ EndSplineSet EndChar StartChar: W -Encoding: 103 87 103 +Encoding: 87 87 103 GlifName: W_ Width: 2048 VWidth: 0 @@ -6339,55 +6340,55 @@ EndSplineSet EndChar StartChar: Wacute -Encoding: 104 7810 104 +Encoding: 7810 7810 104 GlifName: W_acute Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 103 87 N 1 0 0 1 0 0 2 -Refer: 123 769 N 1 0 0 1 42 874 2 +Refer: 123 769 N 1 0 0 1 -414 1006 2 +Refer: 103 87 N 1 0 0 1 0 0 3 EndChar StartChar: Wcircumflex -Encoding: 105 372 105 +Encoding: 372 372 105 GlifName: W_circumflex Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 103 87 N 1 0 0 1 0 0 2 -Refer: 348 770 N 1 0 0 1 58 -166 2 +Refer: 348 770 N 1 0 0 1 542 219 2 +Refer: 103 87 N 1 0 0 1 0 0 3 EndChar StartChar: Wdieresis -Encoding: 106 7812 106 +Encoding: 7812 7812 106 GlifName: W_dieresis Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 103 87 N 1 0 0 1 0 0 2 -Refer: 353 776 N 1 0 0 1 37 3 2 +Refer: 353 776 N 1 0 0 1 560 286 2 +Refer: 103 87 N 1 0 0 1 0 0 3 EndChar StartChar: Wgrave -Encoding: 107 7808 107 +Encoding: 7808 7808 107 GlifName: W_grave Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 103 87 N 1 0 0 1 0 0 2 -Refer: 201 768 N 1 0 0 1 12 895 2 +Refer: 201 768 N 1 0 0 1 -620 1069 2 +Refer: 103 87 N 1 0 0 1 0 0 3 EndChar StartChar: X -Encoding: 108 88 108 +Encoding: 88 88 108 GlifName: X_ Width: 2048 VWidth: 0 @@ -6409,7 +6410,7 @@ EndSplineSet EndChar StartChar: Y -Encoding: 109 89 109 +Encoding: 89 89 109 GlifName: Y_ Width: 2048 VWidth: 0 @@ -6443,55 +6444,55 @@ EndSplineSet EndChar StartChar: Yacute -Encoding: 110 221 110 +Encoding: 221 221 110 GlifName: Y_acute Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 109 89 N 1 0 0 1 0 0 2 -Refer: 123 769 N 1 0 0 1 -302 946 2 +Refer: 123 769 N 1 0 0 1 572 928 2 +Refer: 109 89 N 1 0 0 1 0 0 3 EndChar StartChar: Ycircumflex -Encoding: 111 374 111 +Encoding: 374 374 111 GlifName: Y_circumflex Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 109 89 N 1 0 0 1 0 0 2 -Refer: 348 770 N 1 0 0 1 86 -334 2 +Refer: 348 770 N 1 0 0 1 558 211 2 +Refer: 109 89 N 1 0 0 1 0 0 3 EndChar StartChar: Ydieresis -Encoding: 112 376 112 +Encoding: 376 376 112 GlifName: Y_dieresis Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 109 89 N 1 0 0 1 0 0 2 -Refer: 353 776 N 1 0 0 1 68 3 2 +Refer: 353 776 N 1 0 0 1 520 46 2 +Refer: 109 89 N 1 0 0 1 0 0 3 EndChar StartChar: Ygrave -Encoding: 113 7922 113 +Encoding: 7922 7922 113 GlifName: Y_grave Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 109 89 N 1 0 0 1 0 0 2 -Refer: 201 768 N 1 0 0 1 85 887 2 +Refer: 201 768 N 1 0 0 1 -604 1061 2 +Refer: 109 89 N 1 0 0 1 0 0 3 EndChar StartChar: Z -Encoding: 114 90 114 +Encoding: 90 90 114 GlifName: Z_ Width: 2048 VWidth: 0 @@ -6520,43 +6521,43 @@ EndSplineSet EndChar StartChar: Zacute -Encoding: 115 377 115 +Encoding: 377 377 115 GlifName: Z_acute Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 114 90 N 1 0 0 1 0 0 2 -Refer: 123 769 N 1 0 0 1 76 914 2 +Refer: 123 769 N 1 0 0 1 544 936 2 +Refer: 114 90 N 1 0 0 1 0 0 3 EndChar StartChar: Zcaron -Encoding: 116 381 116 +Encoding: 381 381 116 GlifName: Z_caron Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 114 90 N 1 0 0 1 0 0 2 -Refer: 356 780 N 1 0 0 1 96 352 2 +Refer: 356 780 N 1 0 0 1 525 331 2 +Refer: 114 90 N 1 0 0 1 0 0 3 EndChar StartChar: Zdotaccent -Encoding: 117 379 117 +Encoding: 379 379 117 GlifName: Z_dotaccent Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 114 90 N 1 0 0 1 0 0 2 -Refer: 352 775 N 1 0 0 1 74 11 2 +Refer: 352 775 N 1 0 0 1 500 104 2 +Refer: 114 90 N 1 0 0 1 0 0 3 EndChar StartChar: a -Encoding: 118 97 118 +Encoding: 97 97 118 GlifName: a Width: 2048 VWidth: 0 @@ -6595,43 +6596,43 @@ EndSplineSet EndChar StartChar: aacute -Encoding: 119 225 119 +Encoding: 225 225 119 GlifName: aacute Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 118 97 N 1 0 0 1 0 0 2 -Refer: 123 769 N 1 0 0 1 114 419 2 +Refer: 123 769 N 1 0 0 1 548 424 2 +Refer: 118 97 N 1 0 0 1 0 0 3 EndChar StartChar: abreve -Encoding: 120 259 120 +Encoding: 259 259 120 GlifName: abreve Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 118 97 N 1 0 0 1 0 0 2 -Refer: 351 774 N 1 0 0 1 26 -315 2 +Refer: 351 774 N 1 0 0 1 516 -306 2 +Refer: 118 97 N 1 0 0 1 0 0 3 EndChar StartChar: acircumflex -Encoding: 121 226 121 +Encoding: 226 226 121 GlifName: acircumflex Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 118 97 N 1 0 0 1 0 0 2 -Refer: 348 770 N 1 0 0 1 79 -828 2 +Refer: 348 770 N 1 0 0 1 534 -293 2 +Refer: 118 97 N 1 0 0 1 0 0 3 EndChar StartChar: acute -Encoding: 122 180 122 +Encoding: 180 180 122 GlifName: acute Width: 2048 VWidth: 0 @@ -6648,7 +6649,7 @@ EndSplineSet EndChar StartChar: acutecomb -Encoding: 123 769 123 +Encoding: 769 769 123 GlifName: acutecomb Width: 0 VWidth: 0 @@ -6666,19 +6667,19 @@ EndSplineSet EndChar StartChar: adieresis -Encoding: 124 228 124 +Encoding: 228 228 124 GlifName: adieresis Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 118 97 N 1 0 0 1 0 0 2 -Refer: 353 776 N 1 0 0 1 86 -488 2 +Refer: 353 776 N 1 0 0 1 496 -458 2 +Refer: 118 97 N 1 0 0 1 0 0 3 EndChar StartChar: ae -Encoding: 125 230 125 +Encoding: 230 230 125 GlifName: ae Width: 2048 VWidth: 0 @@ -6720,31 +6721,31 @@ EndSplineSet EndChar StartChar: agrave -Encoding: 126 224 126 +Encoding: 224 224 126 GlifName: agrave Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 118 97 N 1 0 0 1 -55 0 2 -Refer: 201 768 N 1 0 0 1 242 476 2 +Refer: 201 768 N 1 0 0 1 466 465 2 +Refer: 118 97 N 1 0 0 1 0 0 3 EndChar StartChar: amacron -Encoding: 127 257 127 +Encoding: 257 257 127 GlifName: amacron Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 118 97 N 1 0 0 1 0 0 2 -Refer: 349 772 N 1 0 0 1 20 -403 2 +Refer: 349 772 N 1 0 0 1 524 -398 2 +Refer: 118 97 N 1 0 0 1 0 0 3 EndChar StartChar: ampersand -Encoding: 128 38 128 +Encoding: 38 38 128 GlifName: ampersand Width: 2048 VWidth: 0 @@ -6786,31 +6787,31 @@ EndSplineSet EndChar StartChar: aogonek -Encoding: 129 261 129 +Encoding: 261 261 129 GlifName: aogonek Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 118 97 N 1 0 0 1 0 0 2 -Refer: 359 808 N 1 0 0 1 550 12 2 +Refer: 359 808 N 1 0 0 1 274 -85 2 +Refer: 118 97 N 1 0 0 1 0 0 3 EndChar StartChar: aring -Encoding: 130 229 130 +Encoding: 229 229 130 GlifName: aring Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 118 97 N 1 0 0 1 0 0 2 -Refer: 354 778 N 1 0 0 1 84 -449 2 +Refer: 354 778 N 1 0 0 1 471 -402 2 +Refer: 118 97 N 1 0 0 1 0 0 3 EndChar StartChar: asciicircum -Encoding: 131 94 131 +Encoding: 94 94 131 GlifName: asciicircum Width: 2048 VWidth: 0 @@ -6832,7 +6833,7 @@ EndSplineSet EndChar StartChar: asciitilde -Encoding: 132 126 132 +Encoding: 126 126 132 GlifName: asciitilde Width: 2048 VWidth: 0 @@ -6859,7 +6860,7 @@ EndSplineSet EndChar StartChar: asterisk -Encoding: 133 42 133 +Encoding: 42 42 133 GlifName: asterisk Width: 2048 VWidth: 0 @@ -6886,7 +6887,7 @@ EndSplineSet EndChar StartChar: at -Encoding: 134 64 134 +Encoding: 64 64 134 GlifName: at Width: 2048 VWidth: 0 @@ -6943,19 +6944,19 @@ EndSplineSet EndChar StartChar: atilde -Encoding: 135 227 135 +Encoding: 227 227 135 GlifName: atilde Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 118 97 N 1 0 0 1 -178 0 2 -Refer: 305 771 N 1 0 0 1 651 -696 2 +Refer: 305 771 N 1 0 0 1 520 -721 2 +Refer: 118 97 N 1 0 0 1 0 0 3 EndChar StartChar: b -Encoding: 136 98 136 +Encoding: 98 98 136 GlifName: b Width: 2048 VWidth: 0 @@ -6988,7 +6989,7 @@ EndSplineSet EndChar StartChar: backslash -Encoding: 137 92 137 +Encoding: 92 92 137 GlifName: backslash Width: 2048 VWidth: 0 @@ -7005,7 +7006,7 @@ EndSplineSet EndChar StartChar: bar -Encoding: 138 124 138 +Encoding: 124 124 138 GlifName: bar Width: 2048 VWidth: 0 @@ -7022,7 +7023,7 @@ EndSplineSet EndChar StartChar: braceleft -Encoding: 139 123 139 +Encoding: 123 123 139 GlifName: braceleft Width: 2048 VWidth: 0 @@ -7064,7 +7065,7 @@ EndSplineSet EndChar StartChar: braceright -Encoding: 140 125 140 +Encoding: 125 125 140 GlifName: braceright Width: 2048 VWidth: 0 @@ -7106,7 +7107,7 @@ EndSplineSet EndChar StartChar: bracketleft -Encoding: 141 91 141 +Encoding: 91 91 141 GlifName: bracketleft Width: 2048 VWidth: 0 @@ -7133,7 +7134,7 @@ EndSplineSet EndChar StartChar: bracketright -Encoding: 142 93 142 +Encoding: 93 93 142 GlifName: bracketright Width: 2048 VWidth: 0 @@ -7160,7 +7161,7 @@ EndSplineSet EndChar StartChar: breve -Encoding: 143 728 143 +Encoding: 728 728 143 GlifName: breve Width: 2048 VWidth: 0 @@ -7187,7 +7188,7 @@ EndSplineSet EndChar StartChar: brokenbar -Encoding: 144 166 144 +Encoding: 166 166 144 GlifName: brokenbar Width: 2048 VWidth: 0 @@ -7209,7 +7210,7 @@ EndSplineSet EndChar StartChar: bullet -Encoding: 145 8226 145 +Encoding: 8226 8226 145 GlifName: bullet Width: 2048 VWidth: 0 @@ -7226,7 +7227,7 @@ EndSplineSet EndChar StartChar: c -Encoding: 146 99 146 +Encoding: 99 99 146 GlifName: c Width: 2048 VWidth: 0 @@ -7254,19 +7255,19 @@ EndSplineSet EndChar StartChar: cacute -Encoding: 147 263 147 +Encoding: 263 263 147 GlifName: cacute Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 146 99 N 1 0 0 1 0 0 2 -Refer: 123 769 N 1 0 0 1 60 387 2 +Refer: 123 769 N 1 0 0 1 540 452 2 +Refer: 146 99 N 1 0 0 1 0 0 3 EndChar StartChar: caron -Encoding: 148 711 148 +Encoding: 711 711 148 GlifName: caron Width: 2048 VWidth: 0 @@ -7288,55 +7289,55 @@ EndSplineSet EndChar StartChar: ccaron -Encoding: 149 269 149 +Encoding: 269 269 149 GlifName: ccaron Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 146 99 N 1 0 0 1 0 0 2 -Refer: 356 780 N 1 0 0 1 92 -140 2 +Refer: 356 780 N 1 0 0 1 521 -153 2 +Refer: 146 99 N 1 0 0 1 0 0 3 EndChar StartChar: ccedilla -Encoding: 150 231 150 +Encoding: 231 231 150 GlifName: ccedilla Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 146 99 N 1 0 0 1 0 0 2 -Refer: 358 807 N 1 0 0 1 302 -176 2 +Refer: 358 807 N 1 0 0 1 707 -160.467 2 +Refer: 146 99 N 1 0 0 1 0 0 3 EndChar StartChar: ccircumflex -Encoding: 151 265 151 +Encoding: 265 265 151 GlifName: ccircumflex Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 146 99 N 1 0 0 1 0 0 2 -Refer: 348 770 N 1 0 0 1 76 -884 2 +Refer: 348 770 N 1 0 0 1 526 -265 2 +Refer: 146 99 N 1 0 0 1 0 0 3 EndChar StartChar: cdotaccent -Encoding: 152 267 152 +Encoding: 267 267 152 GlifName: cdotaccent Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 146 99 N 1 0 0 1 0 0 2 -Refer: 352 775 N 1 0 0 1 84 -536 2 +Refer: 352 775 N 1 0 0 1 496 -380 2 +Refer: 146 99 N 1 0 0 1 0 0 3 EndChar StartChar: cedilla -Encoding: 153 184 153 +Encoding: 184 184 153 GlifName: cedilla Width: 2048 VWidth: 0 @@ -7368,7 +7369,7 @@ EndSplineSet EndChar StartChar: cent -Encoding: 154 162 154 +Encoding: 162 162 154 GlifName: cent Width: 2048 VWidth: 0 @@ -7400,7 +7401,7 @@ EndSplineSet EndChar StartChar: circumflex -Encoding: 155 710 155 +Encoding: 710 710 155 GlifName: circumflex Width: 2048 VWidth: 0 @@ -7422,7 +7423,7 @@ EndSplineSet EndChar StartChar: colon -Encoding: 156 58 156 +Encoding: 58 58 156 GlifName: colon Width: 2048 VWidth: 0 @@ -7444,7 +7445,7 @@ EndSplineSet EndChar StartChar: comma -Encoding: 157 44 157 +Encoding: 44 44 157 GlifName: comma Width: 2048 VWidth: 0 @@ -7466,7 +7467,7 @@ EndSplineSet EndChar StartChar: copyright -Encoding: 158 169 158 +Encoding: 169 169 158 GlifName: copyright Width: 2048 VWidth: 0 @@ -7513,7 +7514,7 @@ EndSplineSet EndChar StartChar: currency -Encoding: 159 164 159 +Encoding: 164 164 159 GlifName: currency Width: 2048 VWidth: 0 @@ -7565,7 +7566,7 @@ EndSplineSet EndChar StartChar: d -Encoding: 160 100 160 +Encoding: 100 100 160 GlifName: d Width: 2048 VWidth: 0 @@ -7598,7 +7599,7 @@ EndSplineSet EndChar StartChar: dagger -Encoding: 161 8224 161 +Encoding: 8224 8224 161 GlifName: dagger Width: 2048 VWidth: 0 @@ -7620,7 +7621,7 @@ EndSplineSet EndChar StartChar: daggerdbl -Encoding: 162 8225 162 +Encoding: 8225 8225 162 GlifName: daggerdbl Width: 2048 VWidth: 0 @@ -7647,7 +7648,7 @@ EndSplineSet EndChar StartChar: dcaron -Encoding: 163 271 163 +Encoding: 271 271 163 GlifName: dcaron Width: 2048 VWidth: 0 @@ -7684,7 +7685,7 @@ EndSplineSet EndChar StartChar: dcroat -Encoding: 164 273 164 +Encoding: 273 273 164 GlifName: dcroat Width: 2048 VWidth: 0 @@ -7721,7 +7722,7 @@ EndSplineSet EndChar StartChar: degree -Encoding: 165 176 165 +Encoding: 176 176 165 GlifName: degree Width: 2048 VWidth: 0 @@ -7743,7 +7744,7 @@ EndSplineSet EndChar StartChar: dieresis -Encoding: 166 168 166 +Encoding: 168 168 166 GlifName: dieresis Width: 2048 VWidth: 0 @@ -7765,7 +7766,7 @@ EndSplineSet EndChar StartChar: divide -Encoding: 167 247 167 +Encoding: 247 247 167 GlifName: divide Width: 2048 VWidth: 0 @@ -7792,7 +7793,7 @@ EndSplineSet EndChar StartChar: dollar -Encoding: 168 36 168 +Encoding: 36 36 168 GlifName: dollar Width: 2048 VWidth: 0 @@ -7834,7 +7835,7 @@ EndSplineSet EndChar StartChar: dotaccent -Encoding: 169 729 169 +Encoding: 729 729 169 GlifName: dotaccent Width: 2048 VWidth: 0 @@ -7851,7 +7852,7 @@ EndSplineSet EndChar StartChar: dotbelowcomb -Encoding: 170 803 170 +Encoding: 803 803 170 GlifName: dotbelowcomb Width: 0 VWidth: 0 @@ -7869,7 +7870,7 @@ EndSplineSet EndChar StartChar: dotlessi -Encoding: 171 305 171 +Encoding: 305 305 171 GlifName: dotlessi Width: 2048 VWidth: 0 @@ -7900,7 +7901,7 @@ EndSplineSet EndChar StartChar: e -Encoding: 172 101 172 +Encoding: 101 101 172 GlifName: e Width: 2048 VWidth: 0 @@ -7939,91 +7940,91 @@ EndSplineSet EndChar StartChar: eacute -Encoding: 173 233 173 +Encoding: 233 233 173 GlifName: eacute Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 172 101 N 1 0 0 1 0 0 2 -Refer: 123 769 N 1 0 0 1 121 451 2 +Refer: 123 769 N 1 0 0 1 560 456 2 +Refer: 172 101 N 1 0 0 1 0 0 3 EndChar StartChar: ebreve -Encoding: 174 277 174 +Encoding: 277 277 174 GlifName: ebreve Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 172 101 N 1 0 0 1 0 0 2 -Refer: 351 774 N 1 0 0 1 86 -387 2 +Refer: 351 774 N 1 0 0 1 528 -274 2 +Refer: 172 101 N 1 0 0 1 0 0 3 EndChar StartChar: ecaron -Encoding: 175 283 175 +Encoding: 283 283 175 GlifName: ecaron Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 172 101 N 1 0 0 1 0 0 2 -Refer: 356 780 N 1 0 0 1 91 -205 2 +Refer: 356 780 N 1 0 0 1 541 -149 2 +Refer: 172 101 N 1 0 0 1 0 0 3 EndChar StartChar: ecircumflex -Encoding: 176 234 176 +Encoding: 234 234 176 GlifName: ecircumflex Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 172 101 N 1 0 0 1 0 0 2 -Refer: 348 770 N 1 0 0 1 47 -781 2 +Refer: 348 770 N 1 0 0 1 546 -261 2 +Refer: 172 101 N 1 0 0 1 0 0 3 EndChar StartChar: edieresis -Encoding: 177 235 177 +Encoding: 235 235 177 GlifName: edieresis Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 172 101 N 1 0 0 1 0 0 2 -Refer: 353 776 N 1 0 0 1 76 -440 2 +Refer: 353 776 N 1 0 0 1 508 -426 2 +Refer: 172 101 N 1 0 0 1 0 0 3 EndChar StartChar: edotaccent -Encoding: 178 279 178 +Encoding: 279 279 178 GlifName: edotaccent Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 172 101 N 1 0 0 1 0 0 2 -Refer: 352 775 N 1 0 0 1 75 -520 2 +Refer: 352 775 N 1 0 0 1 516 -376 2 +Refer: 172 101 N 1 0 0 1 0 0 3 EndChar StartChar: egrave -Encoding: 179 232 179 +Encoding: 232 232 179 GlifName: egrave Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 172 101 N 1 0 0 1 0 0 2 -Refer: 201 768 N 1 0 0 1 -13 436 2 +Refer: 201 768 N 1 0 0 1 478 497 2 +Refer: 172 101 N 1 0 0 1 0 0 3 EndChar StartChar: eight -Encoding: 180 56 180 +Encoding: 56 56 180 GlifName: eight Width: 2048 VWidth: 0 @@ -8050,7 +8051,7 @@ EndSplineSet EndChar StartChar: ellipsis -Encoding: 181 8230 181 +Encoding: 8230 8230 181 GlifName: ellipsis Width: 2048 VWidth: 0 @@ -8077,19 +8078,19 @@ EndSplineSet EndChar StartChar: emacron -Encoding: 182 275 182 +Encoding: 275 275 182 GlifName: emacron Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 172 101 N 1 0 0 1 0 0 2 -Refer: 349 772 N 1 0 0 1 67 -403 2 +Refer: 349 772 N 1 0 0 1 536 -366 2 +Refer: 172 101 N 1 0 0 1 0 0 3 EndChar StartChar: emdash -Encoding: 183 8212 183 +Encoding: 8212 8212 183 GlifName: emdash Width: 2048 VWidth: 0 @@ -8106,7 +8107,7 @@ EndSplineSet EndChar StartChar: endash -Encoding: 184 8211 184 +Encoding: 8211 8211 184 GlifName: endash Width: 2048 VWidth: 0 @@ -8123,7 +8124,7 @@ EndSplineSet EndChar StartChar: eng -Encoding: 185 331 185 +Encoding: 331 331 185 GlifName: eng Width: 1024 VWidth: 0 @@ -8155,19 +8156,19 @@ EndSplineSet EndChar StartChar: eogonek -Encoding: 186 281 186 +Encoding: 281 281 186 GlifName: eogonek Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 172 101 N 1 0 0 1 0 0 2 -Refer: 359 808 N 1 0 0 1 581 -19 2 +Refer: 359 808 N 1 0 0 1 314 -41 2 +Refer: 172 101 N 1 0 0 1 0 0 3 EndChar StartChar: equal -Encoding: 187 61 187 +Encoding: 61 61 187 GlifName: equal Width: 2048 VWidth: 0 @@ -8189,7 +8190,7 @@ EndSplineSet EndChar StartChar: eth -Encoding: 188 240 188 +Encoding: 240 240 188 GlifName: eth Width: 2048 VWidth: 0 @@ -8226,7 +8227,7 @@ EndSplineSet EndChar StartChar: exclam -Encoding: 189 33 189 +Encoding: 33 33 189 GlifName: exclam Width: 2048 VWidth: 0 @@ -8248,7 +8249,7 @@ EndSplineSet EndChar StartChar: exclamdown -Encoding: 190 161 190 +Encoding: 161 161 190 GlifName: exclamdown Width: 2048 VWidth: 0 @@ -8270,7 +8271,7 @@ EndSplineSet EndChar StartChar: f -Encoding: 191 102 191 +Encoding: 102 102 191 GlifName: f Width: 2048 VWidth: 0 @@ -8297,7 +8298,7 @@ EndSplineSet EndChar StartChar: five -Encoding: 192 53 192 +Encoding: 53 53 192 GlifName: five Width: 2048 VWidth: 0 @@ -8322,7 +8323,7 @@ EndSplineSet EndChar StartChar: four -Encoding: 193 52 193 +Encoding: 52 52 193 GlifName: four Width: 2048 VWidth: 0 @@ -8345,7 +8346,7 @@ EndSplineSet EndChar StartChar: g -Encoding: 194 103 194 +Encoding: 103 103 194 GlifName: g Width: 2048 VWidth: 0 @@ -8382,43 +8383,43 @@ EndSplineSet EndChar StartChar: gbreve -Encoding: 195 287 195 +Encoding: 287 287 195 GlifName: gbreve Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 194 103 N 1 0 0 1 0 0 2 -Refer: 351 774 N 1 0 0 1 82 -307 2 +Refer: 351 774 N 1 0 0 1 512 -335 2 +Refer: 194 103 N 1 0 0 1 0 0 3 EndChar StartChar: gcircumflex -Encoding: 196 285 196 +Encoding: 285 285 196 GlifName: gcircumflex Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 194 103 N 1 0 0 1 0 0 2 -Refer: 348 770 N 1 0 0 1 89 -805 2 +Refer: 348 770 N 1 0 0 1 512 -224 2 +Refer: 194 103 N 1 0 0 1 0 0 3 EndChar StartChar: gdotaccent -Encoding: 197 289 197 +Encoding: 289 289 197 GlifName: gdotaccent Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 194 103 N 1 0 0 1 0 0 2 -Refer: 352 775 N 1 0 0 1 70 -496 2 +Refer: 352 775 N 1 0 0 1 512 -492 2 +Refer: 194 103 N 1 0 0 1 0 0 3 EndChar StartChar: germandbls -Encoding: 198 223 198 +Encoding: 223 223 198 GlifName: germandbls Width: 2048 VWidth: 0 @@ -8465,7 +8466,7 @@ EndSplineSet EndChar StartChar: glyph094D -Encoding: 199 -1 199 +Encoding: 65536 -1 199 GlifName: glyph094D_ Width: 2048 VWidth: 0 @@ -8487,7 +8488,7 @@ EndSplineSet EndChar StartChar: grave -Encoding: 200 96 200 +Encoding: 96 96 200 GlifName: grave Width: 2048 VWidth: 0 @@ -8504,7 +8505,7 @@ EndSplineSet EndChar StartChar: gravecomb -Encoding: 201 768 201 +Encoding: 768 768 201 GlifName: gravecomb Width: 0 VWidth: 0 @@ -8522,7 +8523,7 @@ EndSplineSet EndChar StartChar: greater -Encoding: 202 62 202 +Encoding: 62 62 202 GlifName: greater Width: 2048 VWidth: 0 @@ -8544,7 +8545,7 @@ EndSplineSet EndChar StartChar: guillemotleft -Encoding: 203 171 203 +Encoding: 171 171 203 GlifName: guillemotleft Width: 2048 VWidth: 0 @@ -8576,7 +8577,7 @@ EndSplineSet EndChar StartChar: guillemotright -Encoding: 204 187 204 +Encoding: 187 187 204 GlifName: guillemotright Width: 2048 VWidth: 0 @@ -8608,7 +8609,7 @@ EndSplineSet EndChar StartChar: guilsinglleft -Encoding: 205 8249 205 +Encoding: 8249 8249 205 GlifName: guilsinglleft Width: 2048 VWidth: 0 @@ -8630,7 +8631,7 @@ EndSplineSet EndChar StartChar: guilsinglright -Encoding: 206 8250 206 +Encoding: 8250 8250 206 GlifName: guilsinglright Width: 2048 VWidth: 0 @@ -8652,7 +8653,7 @@ EndSplineSet EndChar StartChar: h -Encoding: 207 104 207 +Encoding: 104 104 207 GlifName: h Width: 2048 VWidth: 0 @@ -8681,7 +8682,7 @@ EndSplineSet EndChar StartChar: hbar -Encoding: 208 295 208 +Encoding: 295 295 208 GlifName: hbar Width: 2048 VWidth: 0 @@ -8713,19 +8714,19 @@ EndSplineSet EndChar StartChar: hcircumflex -Encoding: 209 293 209 +Encoding: 293 293 209 GlifName: hcircumflex Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 207 104 N 1 0 0 1 0 0 2 -Refer: 348 770 N 1 0 0 1 -712 -314 2 +Refer: 348 770 N 1 0 0 1 282 219 2 +Refer: 207 104 N 1 0 0 1 0 0 3 EndChar StartChar: hookabovecomb -Encoding: 210 777 210 +Encoding: 777 777 210 GlifName: hookabovecomb Width: 0 VWidth: 0 @@ -8757,7 +8758,7 @@ EndSplineSet EndChar StartChar: hungarumlaut -Encoding: 211 733 211 +Encoding: 733 733 211 GlifName: hungarumlaut Width: 2048 VWidth: 0 @@ -8779,7 +8780,7 @@ EndSplineSet EndChar StartChar: hyphen -Encoding: 212 45 212 +Encoding: 45 45 212 GlifName: hyphen Width: 2048 VWidth: 0 @@ -8796,7 +8797,7 @@ EndSplineSet EndChar StartChar: i -Encoding: 213 105 213 +Encoding: 105 105 213 GlifName: i Width: 2048 VWidth: 0 @@ -8829,115 +8830,115 @@ EndSplineSet EndChar StartChar: iacute -Encoding: 214 237 214 +Encoding: 237 237 214 GlifName: iacute Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 171 305 N 1 0 0 1 0 0 2 -Refer: 123 769 N 1 0 0 1 18 419 2 +Refer: 123 769 N 1 0 0 1 1047 490 2 +Refer: 171 305 N 1 0 0 1 0 0 3 EndChar StartChar: ibreve -Encoding: 215 301 215 +Encoding: 301 301 215 GlifName: ibreve Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 171 305 N 1 0 0 1 0 0 2 -Refer: 351 774 N 1 0 0 1 70 -323 2 +Refer: 351 774 N 1 0 0 1 1015 -240 2 +Refer: 171 305 N 1 0 0 1 0 0 3 EndChar StartChar: icircumflex -Encoding: 216 238 216 +Encoding: 238 238 216 GlifName: icircumflex Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 171 305 N 1 0 0 1 0 0 2 -Refer: 348 770 N 1 0 0 1 76 -637 2 +Refer: 348 770 N 1 0 0 1 1033 -227 2 +Refer: 171 305 N 1 0 0 1 0 0 3 EndChar StartChar: idieresis -Encoding: 217 239 217 +Encoding: 239 239 217 GlifName: idieresis Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 171 305 N 1 0 0 1 0 0 2 -Refer: 353 776 N 1 0 0 1 68 -488 2 +Refer: 353 776 N 1 0 0 1 995 -392 2 +Refer: 171 305 N 1 0 0 1 0 0 3 EndChar StartChar: igrave -Encoding: 218 236 218 +Encoding: 236 236 218 GlifName: igrave Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 171 305 N 1 0 0 1 0 0 2 -Refer: 201 768 N 1 0 0 1 -4 564 2 +Refer: 201 768 N 1 0 0 1 965 531 2 +Refer: 171 305 N 1 0 0 1 0 0 3 EndChar StartChar: ij -Encoding: 219 307 219 +Encoding: 307 307 219 GlifName: ij Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 213 105 N 0.5 0 0 1 14.25 0 2 Refer: 223 106 N 0.5 0 0 1 1038.25 0 2 +Refer: 213 105 N 0.5 0 0 1 14.25 0 2 EndChar StartChar: imacron -Encoding: 220 299 220 +Encoding: 299 299 220 GlifName: imacron Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 171 305 N 1 0 0 1 0 0 2 -Refer: 349 772 N 1 0 0 1 -32 -315 2 +Refer: 349 772 N 1 0 0 1 1023 -332 2 +Refer: 171 305 N 1 0 0 1 0 0 3 EndChar StartChar: iogonek -Encoding: 221 303 221 +Encoding: 303 303 221 GlifName: iogonek Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 213 105 N 1 0 0 1 0 0 2 -Refer: 359 808 N 1 0 0 1 307 15 2 +Refer: 359 808 N 1 0 0 1 310 -61 2 +Refer: 213 105 N 1 0 0 1 0 0 3 EndChar StartChar: itilde -Encoding: 222 297 222 +Encoding: 297 297 222 GlifName: itilde Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 171 305 N 1 0 0 1 0 0 2 -Refer: 305 771 N 1 0 0 1 -136 -696 2 +Refer: 305 771 N 1 0 0 1 1019 -655 2 +Refer: 171 305 N 1 0 0 1 0 0 3 EndChar StartChar: j -Encoding: 223 106 223 +Encoding: 106 106 223 GlifName: j Width: 2048 VWidth: 0 @@ -8969,19 +8970,19 @@ EndSplineSet EndChar StartChar: jcircumflex -Encoding: 224 309 224 +Encoding: 309 309 224 GlifName: jcircumflex Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 341 567 N 1 0 0 1 -70 0 2 -Refer: 348 770 N 1 0 0 1 727 -828 2 +Refer: 348 770 N 1 0 0 1 754 -245 2 +Refer: 341 567 N 1 0 0 1 0 0 3 EndChar StartChar: k -Encoding: 225 107 225 +Encoding: 107 107 225 GlifName: k Width: 2048 VWidth: 0 @@ -9009,7 +9010,7 @@ EndSplineSet EndChar StartChar: l -Encoding: 226 108 226 +Encoding: 108 108 226 GlifName: l Width: 2048 VWidth: 0 @@ -9037,19 +9038,19 @@ EndSplineSet EndChar StartChar: lacute -Encoding: 227 314 227 +Encoding: 314 314 227 GlifName: lacute Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 226 108 N 1 0 0 1 0 0 2 -Refer: 123 769 N 1 0 0 1 15 945 2 +Refer: 123 769 N 1 0 0 1 568 944 2 +Refer: 226 108 N 1 0 0 1 0 0 3 EndChar StartChar: lcaron -Encoding: 228 318 228 +Encoding: 318 318 228 GlifName: lcaron Width: 2048 VWidth: 0 @@ -9081,19 +9082,19 @@ EndSplineSet EndChar StartChar: ldot -Encoding: 229 320 229 +Encoding: 320 320 229 GlifName: ldot Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore +Refer: 267 183 N 1 0 0 1 1024 0 2 Refer: 226 108 N 1 0 0 1 0 0 2 -Refer: 267 183 N 1 0 0 1 280 -48 2 EndChar StartChar: less -Encoding: 230 60 230 +Encoding: 60 60 230 GlifName: less Width: 2048 VWidth: 0 @@ -9115,7 +9116,7 @@ EndSplineSet EndChar StartChar: logicalnot -Encoding: 231 172 231 +Encoding: 172 172 231 GlifName: logicalnot Width: 2048 VWidth: 0 @@ -9137,7 +9138,7 @@ EndSplineSet EndChar StartChar: lslash -Encoding: 232 322 232 +Encoding: 322 322 232 GlifName: lslash Width: 2048 VWidth: 0 @@ -9169,7 +9170,7 @@ EndSplineSet EndChar StartChar: m -Encoding: 233 109 233 +Encoding: 109 109 233 GlifName: m Width: 2048 VWidth: 0 @@ -9202,7 +9203,7 @@ EndSplineSet EndChar StartChar: macron -Encoding: 234 175 234 +Encoding: 175 175 234 GlifName: macron Width: 2048 VWidth: 0 @@ -9219,7 +9220,7 @@ EndSplineSet EndChar StartChar: minus -Encoding: 235 8722 235 +Encoding: 8722 8722 235 GlifName: minus Width: 2048 VWidth: 0 @@ -9230,7 +9231,7 @@ Refer: 212 45 N 1 0 0 1 0 0 2 EndChar StartChar: mu -Encoding: 236 181 236 +Encoding: 181 181 236 GlifName: mu Width: 2048 VWidth: 0 @@ -9257,7 +9258,7 @@ EndSplineSet EndChar StartChar: multiply -Encoding: 237 215 237 +Encoding: 215 215 237 GlifName: multiply Width: 2048 VWidth: 0 @@ -9279,7 +9280,7 @@ EndSplineSet EndChar StartChar: n -Encoding: 238 110 238 +Encoding: 110 110 238 GlifName: n Width: 2048 VWidth: 0 @@ -9307,31 +9308,31 @@ EndSplineSet EndChar StartChar: nacute -Encoding: 239 324 239 +Encoding: 324 324 239 GlifName: nacute Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 238 110 N 1 0 0 1 0 0 2 -Refer: 123 769 N 1 0 0 1 72 371 2 +Refer: 123 769 N 1 0 0 1 540 448 2 +Refer: 238 110 N 1 0 0 1 0 0 3 EndChar StartChar: ncaron -Encoding: 240 328 240 +Encoding: 328 328 240 GlifName: ncaron Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 238 110 N 1 0 0 1 0 0 2 -Refer: 356 780 N 1 0 0 1 104 -76 2 +Refer: 356 780 N 1 0 0 1 521 -157 2 +Refer: 238 110 N 1 0 0 1 0 0 3 EndChar StartChar: nine -Encoding: 241 57 241 +Encoding: 57 57 241 GlifName: nine Width: 2048 VWidth: 0 @@ -9358,19 +9359,19 @@ EndSplineSet EndChar StartChar: ntilde -Encoding: 242 241 242 +Encoding: 241 241 242 GlifName: ntilde Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 238 110 N 1 0 0 1 0 0 2 -Refer: 305 771 N 1 0 0 1 104 -696 2 +Refer: 305 771 N 1 0 0 1 512 -697 2 +Refer: 238 110 N 1 0 0 1 0 0 3 EndChar StartChar: numbersign -Encoding: 243 35 243 +Encoding: 35 35 243 GlifName: numbersign Width: 2048 VWidth: 0 @@ -9402,7 +9403,7 @@ EndSplineSet EndChar StartChar: o -Encoding: 244 111 244 +Encoding: 111 111 244 GlifName: o Width: 2048 VWidth: 0 @@ -9436,55 +9437,55 @@ EndSplineSet EndChar StartChar: oacute -Encoding: 245 243 245 +Encoding: 243 243 245 GlifName: oacute Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 244 111 N 1 0 0 1 0 0 2 -Refer: 123 769 N 1 0 0 1 41 379 2 +Refer: 123 769 N 1 0 0 1 552 448 2 +Refer: 244 111 N 1 0 0 1 0 0 3 EndChar StartChar: obreve -Encoding: 246 335 246 +Encoding: 335 335 246 GlifName: obreve Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 244 111 N 1 0 0 1 0 0 2 -Refer: 351 774 N 1 0 0 1 78 -331 2 +Refer: 351 774 N 1 0 0 1 520 -282 2 +Refer: 244 111 N 1 0 0 1 0 0 3 EndChar StartChar: ocircumflex -Encoding: 247 244 247 +Encoding: 244 244 247 GlifName: ocircumflex Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 244 111 N 1 0 0 1 0 0 2 -Refer: 348 770 N 1 0 0 1 87 -725 2 +Refer: 348 770 N 1 0 0 1 538 -269 2 +Refer: 244 111 N 1 0 0 1 0 0 3 EndChar StartChar: odieresis -Encoding: 248 246 248 +Encoding: 246 246 248 GlifName: odieresis Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 244 111 N 1 0 0 1 0 0 2 -Refer: 353 776 N 1 0 0 1 68 -512 2 +Refer: 353 776 N 1 0 0 1 500 -434 2 +Refer: 244 111 N 1 0 0 1 0 0 3 EndChar StartChar: oe -Encoding: 249 339 249 +Encoding: 339 339 249 GlifName: oe Width: 2048 VWidth: 0 @@ -9526,7 +9527,7 @@ EndSplineSet EndChar StartChar: ogonek -Encoding: 250 731 250 +Encoding: 731 731 250 GlifName: ogonek Width: 2048 VWidth: 0 @@ -9553,43 +9554,43 @@ EndSplineSet EndChar StartChar: ograve -Encoding: 251 242 251 +Encoding: 242 242 251 GlifName: ograve Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 244 111 N 1 0 0 1 0 0 2 -Refer: 201 768 N 1 0 0 1 59 428 2 +Refer: 201 768 N 1 0 0 1 470 489 2 +Refer: 244 111 N 1 0 0 1 0 0 3 EndChar StartChar: ohungarumlaut -Encoding: 252 337 252 +Encoding: 337 337 252 GlifName: ohungarumlaut Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 244 111 N 1 0 0 1 0 0 2 -Refer: 355 779 N 1 0 0 1 73 -177 2 +Refer: 355 779 N 1 0 0 1 445 -122 2 +Refer: 244 111 N 1 0 0 1 0 0 3 EndChar StartChar: omacron -Encoding: 253 333 253 +Encoding: 333 333 253 GlifName: omacron Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 244 111 N 1 0 0 1 0 0 2 -Refer: 349 772 N 1 0 0 1 81 -379 2 +Refer: 349 772 N 1 0 0 1 528 -374 2 +Refer: 244 111 N 1 0 0 1 0 0 3 EndChar StartChar: one -Encoding: 254 49 254 +Encoding: 49 49 254 GlifName: one Width: 2048 VWidth: 0 @@ -9611,7 +9612,7 @@ EndSplineSet EndChar StartChar: onehalf -Encoding: 255 189 255 +Encoding: 189 189 255 GlifName: onehalf Width: 2048 VWidth: 0 @@ -9651,7 +9652,7 @@ EndSplineSet EndChar StartChar: onequarter -Encoding: 256 188 256 +Encoding: 188 188 256 GlifName: onequarter Width: 2048 VWidth: 0 @@ -9689,7 +9690,7 @@ EndSplineSet EndChar StartChar: ordfeminine -Encoding: 257 170 257 +Encoding: 170 170 257 GlifName: ordfeminine Width: 2048 VWidth: 0 @@ -9731,7 +9732,7 @@ EndSplineSet EndChar StartChar: ordmasculine -Encoding: 258 186 258 +Encoding: 186 186 258 GlifName: ordmasculine Width: 2048 VWidth: 0 @@ -9768,7 +9769,7 @@ EndSplineSet EndChar StartChar: oslash -Encoding: 259 248 259 +Encoding: 248 248 259 GlifName: oslash Width: 2048 VWidth: 0 @@ -9805,19 +9806,19 @@ EndSplineSet EndChar StartChar: otilde -Encoding: 260 245 260 +Encoding: 245 245 260 GlifName: otilde Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 244 111 N 1 0 0 1 0 0 2 -Refer: 305 771 N 1 0 0 1 106 -696 2 +Refer: 305 771 N 1 0 0 1 524 -697 2 +Refer: 244 111 N 1 0 0 1 0 0 3 EndChar StartChar: p -Encoding: 261 112 261 +Encoding: 112 112 261 GlifName: p Width: 2048 VWidth: 0 @@ -9850,7 +9851,7 @@ EndSplineSet EndChar StartChar: paragraph -Encoding: 262 182 262 +Encoding: 182 182 262 GlifName: paragraph Width: 2048 VWidth: 0 @@ -9887,7 +9888,7 @@ EndSplineSet EndChar StartChar: parenleft -Encoding: 263 40 263 +Encoding: 40 40 263 GlifName: parenleft Width: 2048 VWidth: 0 @@ -9914,7 +9915,7 @@ EndSplineSet EndChar StartChar: parenright -Encoding: 264 41 264 +Encoding: 41 41 264 GlifName: parenright Width: 2048 VWidth: 0 @@ -9941,7 +9942,7 @@ EndSplineSet EndChar StartChar: percent -Encoding: 265 37 265 +Encoding: 37 37 265 GlifName: percent Width: 2048 VWidth: 0 @@ -9998,7 +9999,7 @@ EndSplineSet EndChar StartChar: period -Encoding: 266 46 266 +Encoding: 46 46 266 GlifName: period Width: 2048 VWidth: 0 @@ -10015,7 +10016,7 @@ EndSplineSet EndChar StartChar: periodcentered -Encoding: 267 183 267 +Encoding: 183 183 267 GlifName: periodcentered Width: 2048 VWidth: 0 @@ -10032,7 +10033,7 @@ EndSplineSet EndChar StartChar: perthousand -Encoding: 268 8240 268 +Encoding: 8240 8240 268 GlifName: perthousand Width: 2048 VWidth: 0 @@ -10109,7 +10110,7 @@ EndSplineSet EndChar StartChar: plus -Encoding: 269 43 269 +Encoding: 43 43 269 GlifName: plus Width: 2048 VWidth: 0 @@ -10131,7 +10132,7 @@ EndSplineSet EndChar StartChar: plusminus -Encoding: 270 177 270 +Encoding: 177 177 270 GlifName: plusminus Width: 2048 VWidth: 0 @@ -10158,7 +10159,7 @@ EndSplineSet EndChar StartChar: q -Encoding: 271 113 271 +Encoding: 113 113 271 GlifName: q Width: 2048 VWidth: 0 @@ -10195,7 +10196,7 @@ EndSplineSet EndChar StartChar: question -Encoding: 272 63 272 +Encoding: 63 63 272 GlifName: question Width: 2048 VWidth: 0 @@ -10232,7 +10233,7 @@ EndSplineSet EndChar StartChar: questiondown -Encoding: 273 191 273 +Encoding: 191 191 273 GlifName: questiondown Width: 2048 VWidth: 0 @@ -10269,7 +10270,7 @@ EndSplineSet EndChar StartChar: quotedbl -Encoding: 274 34 274 +Encoding: 34 34 274 GlifName: quotedbl Width: 2048 VWidth: 0 @@ -10291,7 +10292,7 @@ EndSplineSet EndChar StartChar: quotedblbase -Encoding: 275 8222 275 +Encoding: 8222 8222 275 GlifName: quotedblbase Width: 2048 VWidth: 0 @@ -10323,7 +10324,7 @@ EndSplineSet EndChar StartChar: quotedblleft -Encoding: 276 8220 276 +Encoding: 8220 8220 276 GlifName: quotedblleft Width: 2048 VWidth: 0 @@ -10355,7 +10356,7 @@ EndSplineSet EndChar StartChar: quotedblright -Encoding: 277 8221 277 +Encoding: 8221 8221 277 GlifName: quotedblright Width: 2048 VWidth: 0 @@ -10387,7 +10388,7 @@ EndSplineSet EndChar StartChar: quoteleft -Encoding: 278 8216 278 +Encoding: 8216 8216 278 GlifName: quoteleft Width: 2048 VWidth: 0 @@ -10409,7 +10410,7 @@ EndSplineSet EndChar StartChar: quoteright -Encoding: 279 8217 279 +Encoding: 8217 8217 279 GlifName: quoteright Width: 2048 VWidth: 0 @@ -10431,7 +10432,7 @@ EndSplineSet EndChar StartChar: quotesinglbase -Encoding: 280 8218 280 +Encoding: 8218 8218 280 GlifName: quotesinglbase Width: 2048 VWidth: 0 @@ -10453,7 +10454,7 @@ EndSplineSet EndChar StartChar: quotesingle -Encoding: 281 39 281 +Encoding: 39 39 281 GlifName: quotesingle Width: 2048 VWidth: 0 @@ -10470,7 +10471,7 @@ EndSplineSet EndChar StartChar: r -Encoding: 282 114 282 +Encoding: 114 114 282 GlifName: r Width: 2048 VWidth: 0 @@ -10499,31 +10500,31 @@ EndSplineSet EndChar StartChar: racute -Encoding: 283 341 283 +Encoding: 341 341 283 GlifName: racute Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 282 114 N 1 0 0 1 0 0 2 -Refer: 123 769 N 1 0 0 1 76 387 2 +Refer: 123 769 N 1 0 0 1 552 464 2 +Refer: 282 114 N 1 0 0 1 0 0 3 EndChar StartChar: rcaron -Encoding: 284 345 284 +Encoding: 345 345 284 GlifName: rcaron Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 282 114 N 1 0 0 1 0 0 2 -Refer: 356 780 N 1 0 0 1 96 -108 2 +Refer: 356 780 N 1 0 0 1 533 -141 2 +Refer: 282 114 N 1 0 0 1 0 0 3 EndChar StartChar: registered -Encoding: 285 174 285 +Encoding: 174 174 285 GlifName: registered Width: 2048 VWidth: 0 @@ -10580,7 +10581,7 @@ EndSplineSet EndChar StartChar: ring -Encoding: 286 730 286 +Encoding: 730 730 286 GlifName: ring Width: 2048 VWidth: 0 @@ -10602,7 +10603,7 @@ EndSplineSet EndChar StartChar: s -Encoding: 287 115 287 +Encoding: 115 115 287 GlifName: s Width: 2048 VWidth: 0 @@ -10641,55 +10642,55 @@ EndSplineSet EndChar StartChar: sacute -Encoding: 288 347 288 +Encoding: 347 347 288 GlifName: sacute Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 287 115 N 1 0 0 1 0 0 2 -Refer: 123 769 N 1 0 0 1 74 419 2 +Refer: 123 769 N 1 0 0 1 520 424 2 +Refer: 287 115 N 1 0 0 1 0 0 3 EndChar StartChar: scaron -Encoding: 289 353 289 +Encoding: 353 353 289 GlifName: scaron Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 287 115 N 1 0 0 1 0 0 2 -Refer: 356 780 N 1 0 0 1 88 -196 2 +Refer: 356 780 N 1 0 0 1 501 -181 2 +Refer: 287 115 N 1 0 0 1 0 0 3 EndChar StartChar: scedilla -Encoding: 290 351 290 +Encoding: 351 351 290 GlifName: scedilla Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 287 115 N 1 0 0 1 0 0 2 -Refer: 358 807 N 1 0 0 1 352 -160 2 +Refer: 358 807 N 1 0 0 1 370 -257 2 +Refer: 287 115 N 1 0 0 1 0 0 3 EndChar StartChar: scircumflex -Encoding: 291 349 291 +Encoding: 349 349 291 GlifName: scircumflex Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 287 115 N 1 0 0 1 0 0 2 -Refer: 348 770 N 1 0 0 1 0 -828 2 +Refer: 348 770 N 1 0 0 1 506 -293 2 +Refer: 287 115 N 1 0 0 1 0 0 3 EndChar StartChar: section -Encoding: 292 167 292 +Encoding: 167 167 292 GlifName: section Width: 2048 VWidth: 0 @@ -10751,7 +10752,7 @@ EndSplineSet EndChar StartChar: semicolon -Encoding: 293 59 293 +Encoding: 59 59 293 GlifName: semicolon Width: 2048 VWidth: 0 @@ -10778,7 +10779,7 @@ EndSplineSet EndChar StartChar: seven -Encoding: 294 55 294 +Encoding: 55 55 294 GlifName: seven Width: 2048 VWidth: 0 @@ -10797,7 +10798,7 @@ EndSplineSet EndChar StartChar: six -Encoding: 295 54 295 +Encoding: 54 54 295 GlifName: six Width: 2048 VWidth: 0 @@ -10824,7 +10825,7 @@ EndSplineSet EndChar StartChar: slash -Encoding: 296 47 296 +Encoding: 47 47 296 GlifName: slash Width: 2048 VWidth: 0 @@ -10841,7 +10842,7 @@ EndSplineSet EndChar StartChar: space -Encoding: 297 32 297 +Encoding: 32 32 297 GlifName: space Width: 2048 VWidth: 0 @@ -10850,7 +10851,7 @@ LayerCount: 2 EndChar StartChar: sterling -Encoding: 298 163 298 +Encoding: 163 163 298 GlifName: sterling Width: 2048 VWidth: 0 @@ -10882,7 +10883,7 @@ EndSplineSet EndChar StartChar: t -Encoding: 299 116 299 +Encoding: 116 116 299 GlifName: t Width: 2048 VWidth: 0 @@ -10911,7 +10912,7 @@ EndSplineSet EndChar StartChar: tcaron -Encoding: 300 357 300 +Encoding: 357 357 300 GlifName: tcaron Width: 2048 VWidth: 0 @@ -10943,7 +10944,7 @@ EndSplineSet EndChar StartChar: thorn -Encoding: 301 254 301 +Encoding: 254 254 301 GlifName: thorn Width: 2048 VWidth: 0 @@ -10975,7 +10976,7 @@ EndSplineSet EndChar StartChar: three -Encoding: 302 51 302 +Encoding: 51 51 302 GlifName: three Width: 2048 VWidth: 0 @@ -11000,7 +11001,7 @@ EndSplineSet EndChar StartChar: threequarters -Encoding: 303 190 303 +Encoding: 190 190 303 GlifName: threequarters Width: 2048 VWidth: 0 @@ -11041,7 +11042,7 @@ EndSplineSet EndChar StartChar: tilde -Encoding: 304 732 304 +Encoding: 732 732 304 GlifName: tilde Width: 2048 VWidth: 0 @@ -11068,7 +11069,7 @@ EndSplineSet EndChar StartChar: tildecomb -Encoding: 305 771 305 +Encoding: 771 771 305 GlifName: tildecomb Width: 0 VWidth: 0 @@ -11096,19 +11097,19 @@ EndSplineSet EndChar StartChar: trademark -Encoding: 306 8482 306 +Encoding: 8482 8482 306 GlifName: trademark Width: 2048 -VWidth: 0 -Flags: W +VWidth: 887 +Flags: HW LayerCount: 2 Fore -Refer: 88 84 N 0.5 0 0 0.5 -5 388 2 -Refer: 62 77 N 0.5 0 0 0.5 1019 388 2 +Refer: 62 77 N 0.5 0 0 0.5 1019 887.5 2 +Refer: 88 84 N 0.5 0 0 0.5 -5 887.5 2 EndChar StartChar: two -Encoding: 307 50 307 +Encoding: 50 50 307 GlifName: two Width: 2048 VWidth: 0 @@ -11133,7 +11134,7 @@ EndSplineSet EndChar StartChar: u -Encoding: 308 117 308 +Encoding: 117 117 308 GlifName: u Width: 2048 VWidth: 0 @@ -11162,91 +11163,91 @@ EndSplineSet EndChar StartChar: uacute -Encoding: 309 250 309 +Encoding: 250 250 309 GlifName: uacute Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 308 117 N 1 0 0 1 0 0 2 -Refer: 123 769 N 1 0 0 1 -37 362 2 +Refer: 123 769 N 1 0 0 1 488 436 2 +Refer: 308 117 N 1 0 0 1 0 0 3 EndChar StartChar: ubreve -Encoding: 310 365 310 +Encoding: 365 365 310 GlifName: ubreve Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 308 117 N 1 0 0 1 0 0 2 -Refer: 351 774 N 1 0 0 1 -88 -348 2 +Refer: 351 774 N 1 0 0 1 456 -294 2 +Refer: 308 117 N 1 0 0 1 0 0 3 EndChar StartChar: ucircumflex -Encoding: 311 251 311 +Encoding: 251 251 311 GlifName: ucircumflex Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 308 117 N 1 0 0 1 10 0 2 -Refer: 348 770 N 1 0 0 1 1 -814 2 +Refer: 348 770 N 1 0 0 1 474 -281 2 +Refer: 308 117 N 1 0 0 1 0 0 3 EndChar StartChar: udieresis -Encoding: 312 252 312 +Encoding: 252 252 312 GlifName: udieresis Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 308 117 N 1 0 0 1 0 0 2 -Refer: 353 776 N 1 0 0 1 -129 -523 2 +Refer: 353 776 N 1 0 0 1 436 -446 2 +Refer: 308 117 N 1 0 0 1 0 0 3 EndChar StartChar: ugrave -Encoding: 313 249 313 +Encoding: 249 249 313 GlifName: ugrave Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 308 117 N 1 0 0 1 0 0 2 -Refer: 201 768 N 1 0 0 1 -283 483 2 +Refer: 201 768 N 1 0 0 1 406 477 2 +Refer: 308 117 N 1 0 0 1 0 0 3 EndChar StartChar: uhungarumlaut -Encoding: 314 369 314 +Encoding: 369 369 314 GlifName: uhungarumlaut Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 308 117 N 1 0 0 1 0 0 2 -Refer: 355 779 N 1 0 0 1 -133 -242 2 +Refer: 355 779 N 1 0 0 1 381 -134 2 +Refer: 308 117 N 1 0 0 1 0 0 3 EndChar StartChar: umacron -Encoding: 315 363 315 +Encoding: 363 363 315 GlifName: umacron Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 308 117 N 1 0 0 1 0 0 2 -Refer: 349 772 N 1 0 0 1 -133 -452 2 +Refer: 349 772 N 1 0 0 1 464 -386 2 +Refer: 308 117 N 1 0 0 1 0 0 3 EndChar StartChar: underscore -Encoding: 316 95 316 +Encoding: 95 95 316 GlifName: underscore Width: 2048 VWidth: 0 @@ -11263,7 +11264,7 @@ EndSplineSet EndChar StartChar: uni00A0 -Encoding: 317 160 317 +Encoding: 160 160 317 GlifName: uni00A_0 Width: 2048 VWidth: 0 @@ -11272,7 +11273,7 @@ LayerCount: 2 EndChar StartChar: uni00B2 -Encoding: 318 178 318 +Encoding: 178 178 318 GlifName: uni00B_2 Width: 2048 VWidth: 0 @@ -11297,7 +11298,7 @@ EndSplineSet EndChar StartChar: uni00B3 -Encoding: 319 179 319 +Encoding: 179 179 319 GlifName: uni00B_3 Width: 2048 VWidth: 0 @@ -11322,7 +11323,7 @@ EndSplineSet EndChar StartChar: uni00B9 -Encoding: 320 185 320 +Encoding: 185 185 320 GlifName: uni00B_9 Width: 2048 VWidth: 0 @@ -11344,19 +11345,19 @@ EndSplineSet EndChar StartChar: uni0122 -Encoding: 321 290 321 +Encoding: 290 290 321 GlifName: uni0122 Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 36 71 N 1 0 0 1 0 0 2 -Refer: 357 806 N 1 0 0 1 76 -85 2 +Refer: 357 806 N 1 0 0 1 518 -37 2 +Refer: 36 71 N 1 0 0 1 0 0 3 EndChar StartChar: uni0123 -Encoding: 322 291 322 +Encoding: 291 291 322 GlifName: uni0123 Width: 2048 VWidth: 0 @@ -11398,127 +11399,127 @@ EndSplineSet EndChar StartChar: uni0136 -Encoding: 323 310 323 +Encoding: 310 310 323 GlifName: uni0136 Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 56 75 N 1 0 0 1 0 0 2 -Refer: 357 806 N 1 0 0 1 14 -48 2 +Refer: 357 806 N 1 0 0 1 827 -122 2 +Refer: 56 75 N 1 0 0 1 0 0 3 EndChar StartChar: uni0137 -Encoding: 324 311 324 +Encoding: 311 311 324 GlifName: uni0137 Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 225 107 N 1 0 0 1 0 0 2 -Refer: 357 806 N 1 0 0 1 42 17 2 +Refer: 357 806 N 1 0 0 1 917.5 -122 2 +Refer: 225 107 N 1 0 0 1 0 0 3 EndChar StartChar: uni013B -Encoding: 325 315 325 +Encoding: 315 315 325 GlifName: uni013B_ Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 57 76 N 1 0 0 1 0 0 2 -Refer: 357 806 N 1 0 0 1 71 -137 2 +Refer: 357 806 N 1 0 0 1 512 -122 2 +Refer: 57 76 N 1 0 0 1 0 0 3 EndChar StartChar: uni013C -Encoding: 326 316 326 +Encoding: 316 316 326 GlifName: uni013C_ Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 226 108 N 1 0 0 1 0 0 2 -Refer: 357 806 N 1 0 0 1 -10 -96 2 +Refer: 357 806 N 1 0 0 1 512 -122 2 +Refer: 226 108 N 1 0 0 1 0 0 3 EndChar StartChar: uni0145 -Encoding: 327 325 327 +Encoding: 325 325 327 GlifName: uni0145 Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 63 78 N 1 0 0 1 0 0 2 -Refer: 357 806 N 1 0 0 1 40 -18 2 +Refer: 357 806 N 1 0 0 1 798 -9 2 +Refer: 63 78 N 1 0 0 1 0 0 3 EndChar StartChar: uni0146 -Encoding: 328 326 328 +Encoding: 326 326 328 GlifName: uni0146 Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 238 110 N 1 0 0 1 0 0 2 -Refer: 357 806 N 1 0 0 1 141 -11 2 +Refer: 357 806 N 1 0 0 1 602 -122 2 +Refer: 238 110 N 1 0 0 1 0 0 3 EndChar StartChar: uni0156 -Encoding: 329 342 329 +Encoding: 342 342 329 GlifName: uni0156 Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 80 82 N 1 0 0 1 0 0 2 -Refer: 357 806 N 1 0 0 1 86 -34 2 +Refer: 357 806 N 1 0 0 1 512 -122 2 +Refer: 80 82 N 1 0 0 1 0 0 3 EndChar StartChar: uni0157 -Encoding: 330 343 330 +Encoding: 343 343 330 GlifName: uni0157 Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 282 114 N 1 0 0 1 0 0 2 -Refer: 357 806 N 1 0 0 1 -102 -123 2 +Refer: 357 806 N 1 0 0 1 478 -65 2 +Refer: 282 114 N 1 0 0 1 0 0 3 EndChar StartChar: uni0162 -Encoding: 331 354 331 +Encoding: 354 354 331 GlifName: uni0162 Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 88 84 N 1 0 0 1 0 0 2 -Refer: 358 807 N 1 0 0 1 214 -164 2 +Refer: 358 807 N 1 0 0 1 350 -245 2 +Refer: 88 84 N 1 0 0 1 0 0 3 EndChar StartChar: uni0163 -Encoding: 332 355 332 +Encoding: 355 355 332 GlifName: uni0163 Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 299 116 N 1 0 0 1 -80 0 2 -Refer: 358 807 N 1 0 0 1 722 -160 2 +Refer: 358 807 N 1 0 0 1 358 -273 2 +Refer: 299 116 N 1 0 0 1 0 0 3 EndChar StartChar: uni0192 -Encoding: 333 402 333 +Encoding: 402 402 333 GlifName: uni0192 Width: 2048 VWidth: 0 @@ -11550,91 +11551,91 @@ EndSplineSet EndChar StartChar: uni01C4 -Encoding: 334 452 334 +Encoding: 452 452 334 GlifName: uni01C_4 Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 19 68 N 0.5 0 0 1 -2.5 0 2 Refer: 116 381 N 0.5 0 0 1 1021.5 0 2 +Refer: 19 68 N 0.5 0 0 1 -2.5 0 2 EndChar StartChar: uni01C5 -Encoding: 335 453 335 +Encoding: 453 453 335 GlifName: uni01C_5 Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore +Refer: 713 382 N 0.5 0 0 1 1021.5 0 2 Refer: 19 68 N 0.5 0 0 1 -2.5 0 2 -Refer: 715 382 N 0.5 0 0 1 1021.5 0 2 EndChar StartChar: uni01C6 -Encoding: 336 454 336 +Encoding: 454 454 336 GlifName: uni01C_6 Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore +Refer: 713 382 N 0.5 0 0 1 1002.5 0 2 Refer: 160 100 N 0.5 0 0 1 -21.5 0 2 -Refer: 715 382 N 0.5 0 0 1 1002.5 0 2 EndChar StartChar: uni0218 -Encoding: 337 536 337 +Encoding: 536 536 337 GlifName: uni0218 Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 83 83 N 1 0 0 1 0 0 2 -Refer: 357 806 N 1 0 0 1 14 -121 2 +Refer: 357 806 N 1 0 0 1 506 -53 2 +Refer: 83 83 N 1 0 0 1 0 0 3 EndChar StartChar: uni0219 -Encoding: 338 537 338 +Encoding: 537 537 338 GlifName: uni0219 Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 287 115 N 1 0 0 1 0 0 2 -Refer: 357 806 N 1 0 0 1 -2 -121 2 +Refer: 357 806 N 1 0 0 1 490 -61 2 +Refer: 287 115 N 1 0 0 1 0 0 3 EndChar StartChar: uni021A -Encoding: 339 538 339 +Encoding: 538 538 339 GlifName: uni021A_ Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 88 84 N 1 0 0 1 0 0 2 -Refer: 357 806 N 1 0 0 1 1 -109 2 +Refer: 357 806 N 1 0 0 1 470 -49 2 +Refer: 88 84 N 1 0 0 1 0 0 3 EndChar StartChar: uni021B -Encoding: 340 539 340 +Encoding: 539 539 340 GlifName: uni021B_ Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 299 116 N 1 0 0 1 0 0 2 -Refer: 357 806 N 1 0 0 1 410 -121 2 +Refer: 357 806 N 1 0 0 1 478 -77 2 +Refer: 299 116 N 1 0 0 1 0 0 3 EndChar StartChar: uni0237 -Encoding: 341 567 341 +Encoding: 567 567 341 GlifName: uni0237 Width: 2048 VWidth: 0 @@ -11663,7 +11664,7 @@ EndSplineSet EndChar StartChar: uni02B9 -Encoding: 342 697 342 +Encoding: 697 697 342 GlifName: uni02B_9 Width: 2048 VWidth: 0 @@ -11674,7 +11675,7 @@ Refer: 281 39 N 1 0 0 1 0 0 2 EndChar StartChar: uni02BA -Encoding: 343 698 343 +Encoding: 698 698 343 GlifName: uni02B_A_ Width: 2048 VWidth: 0 @@ -11685,7 +11686,7 @@ Refer: 274 34 N 1 0 0 1 0 0 2 EndChar StartChar: uni02BC -Encoding: 344 700 344 +Encoding: 700 700 344 GlifName: uni02B_C_ Width: 2048 VWidth: 0 @@ -11696,7 +11697,7 @@ Refer: 281 39 N 1 0 0 1 0 0 2 EndChar StartChar: uni02C9 -Encoding: 345 713 345 +Encoding: 713 713 345 GlifName: uni02C_9 Width: 2048 VWidth: 0 @@ -11713,413 +11714,426 @@ EndSplineSet EndChar StartChar: uni02CA -Encoding: 346 714 346 +Encoding: 714 714 346 GlifName: uni02C_A_ -Width: 2048 +Width: 0 VWidth: 0 -Flags: W +Flags: HW +AnchorPoint: "top" -33 656 mark 0 LayerCount: 2 Fore SplineSet -1037 949 m 257 - 958 764 l 257 - 1011 730 l 257 - 1090 915 l 257 - 1037 949 l 257 +13 949 m 257 + -66 764 l 257 + -13 730 l 257 + 66 915 l 257 + 13 949 l 257 EndSplineSet EndChar StartChar: uni02CB -Encoding: 347 715 347 +Encoding: 715 715 347 GlifName: uni02C_B_ -Width: 2048 +Width: 0 VWidth: 0 -Flags: W +Flags: HW +AnchorPoint: "top" 95 608 mark 0 LayerCount: 2 Fore SplineSet -932 877 m 257 - 1056 673 l 257 - 1116 727 l 257 - 992 932 l 257 - 932 877 l 257 +-92 877 m 257 + 32 673 l 257 + 92 727 l 257 + -32 932 l 257 + -92 877 l 257 EndSplineSet EndChar StartChar: uni0302 -Encoding: 348 770 348 +Encoding: 770 770 348 GlifName: uni0302 Width: 0 VWidth: 0 -AnchorPoint: "top" 1007 1881 mark 0 -AnchorPoint: "top" 506 1427 mark 0 +Flags: HW +AnchorPoint: "top" 15 1195 mark 0 LayerCount: 2 Fore SplineSet -963 1555 m 257 - 927 1555 l 257 - 795 1245 l 257 - 822 1228 l 257 - 963 1555 l 257 -930 1556.5 m 257 - 1092 1223.5 l 257 - 1133 1241.5 l 257 - 967 1556.5 l 257 - 930 1556.5 l 257 +-1 1555 m 257 + -37 1555 l 257 + -169 1245 l 257 + -142 1228 l 257 + -1 1555 l 257 +-34 1556.5 m 257 + 128 1223.5 l 257 + 169 1241.5 l 257 + 3 1556.5 l 257 + -34 1556.5 l 257 EndSplineSet EndChar StartChar: uni0304 -Encoding: 349 772 349 +Encoding: 772 772 349 GlifName: uni0304 Width: 0 VWidth: 0 -AnchorPoint: "top" 1000 1476 mark 0 -AnchorPoint: "top" 488 1532 mark 0 +Flags: HW +AnchorPoint: "top" -24 1476 mark 0 +AnchorPoint: "top" -536 1532 mark 0 LayerCount: 2 Fore SplineSet -744 1630 m 257 - 744 1550 l 257 - 1304 1550 l 257 - 1304 1630 l 257 - 744 1630 l 257 +-280 1630 m 257 + -280 1550 l 257 + 280 1550 l 257 + 280 1630 l 257 + -280 1630 l 257 EndSplineSet EndChar StartChar: uni0305 -Encoding: 350 773 350 +Encoding: 773 773 350 GlifName: uni0305 Width: 0 VWidth: 0 -AnchorPoint: "top" -487 1478 mark 0 +Flags: HW +AnchorPoint: "top" -1366 1478 mark 0 LayerCount: 2 Fore SplineSet -454 1630 m 257 - 454 1550 l 257 - 1304 1550 l 257 - 1304 1630 l 257 - 454 1630 l 257 +-425 1630 m 257 + -425 1550 l 257 + 425 1550 l 257 + 425 1630 l 257 + -425 1630 l 257 EndSplineSet EndChar StartChar: uni0306 -Encoding: 351 774 351 +Encoding: 774 774 351 GlifName: uni0306 Width: 0 VWidth: 0 -AnchorPoint: "top" 1024 1360 mark 0 -AnchorPoint: "top" 496 1440 mark 0 +Flags: HW +AnchorPoint: "top" 0 1360 mark 0 +AnchorPoint: "top" -528 1440 mark 0 LayerCount: 2 Fore SplineSet -1189 1550 m 257 - 1189 1480 l 257 - 1354 1550 l 257 - 1354 1645 l 257 - 1189 1550 l 257 -865 1550 m 257 - 865 1480 l 257 - 1189 1480 l 257 - 1189 1550 l 257 - 865 1550 l 257 -694 1630 m 257 - 694 1550 l 257 - 865 1480 l 257 - 865 1550 l 257 - 694 1630 l 257 +165 1550 m 257 + 165 1480 l 257 + 330 1550 l 257 + 330 1645 l 257 + 165 1550 l 257 +-159 1550 m 257 + -159 1480 l 257 + 165 1480 l 257 + 165 1550 l 257 + -159 1550 l 257 +-330 1630 m 257 + -330 1550 l 257 + -159 1480 l 257 + -159 1550 l 257 + -330 1630 l 257 EndSplineSet EndChar StartChar: uni0307 -Encoding: 352 775 352 +Encoding: 775 775 352 GlifName: uni0307 Width: 0 VWidth: 0 -AnchorPoint: "top" 988 1524 mark 0 -AnchorPoint: "top" 508 1542 mark 0 +Flags: HW +AnchorPoint: "top" -36 1524 mark 0 +AnchorPoint: "top" -516 1542 mark 0 LayerCount: 2 Fore SplineSet -968 1738 m 257 - 968 1637 l 257 - 1080 1637 l 257 - 1080 1738 l 257 - 968 1738 l 257 +-56 1738 m 257 + -56 1637 l 257 + 56 1637 l 257 + 56 1738 l 257 + -56 1738 l 257 EndSplineSet EndChar StartChar: uni0308 -Encoding: 353 776 353 +Encoding: 776 776 353 GlifName: uni0308 Width: 0 VWidth: 0 -AnchorPoint: "top" 972 1360 mark 0 -AnchorPoint: "top" 516 1592 mark 0 +Flags: HW +AnchorPoint: "top" -52 1360 mark 0 +AnchorPoint: "top" -508 1592 mark 0 LayerCount: 2 Fore SplineSet -847 1738 m 257 - 847 1637 l 257 - 959 1637 l 257 - 959 1738 l 257 - 847 1738 l 257 -1089 1738 m 257 - 1089 1637 l 257 - 1201 1637 l 257 - 1201 1738 l 257 - 1089 1738 l 257 +-177 1738 m 257 + -177 1637 l 257 + -65 1637 l 257 + -65 1738 l 257 + -177 1738 l 257 +65 1738 m 257 + 65 1637 l 257 + 177 1637 l 257 + 177 1738 l 257 + 65 1738 l 257 EndSplineSet EndChar StartChar: uni030A -Encoding: 354 778 354 +Encoding: 778 778 354 GlifName: uni030A_ Width: 0 VWidth: 0 -AnchorPoint: "top" 1037 1488 mark 0 -AnchorPoint: "top" 541 1536 mark 0 +Flags: HW +AnchorPoint: "top" 13 1488 mark 0 +AnchorPoint: "top" -483 1536 mark 0 LayerCount: 2 Fore SplineSet -949 1756 m 257 - 1097 1756 l 257 - 1097 1626 l 257 - 949 1626 l 257 - 949 1756 l 257 -844 1847 m 257 - 844 1538 l 257 - 1204 1538 l 257 - 1204 1847 l 257 - 844 1847 l 257 +-75 1756 m 257 + 73 1756 l 257 + 73 1626 l 257 + -75 1626 l 257 + -75 1756 l 257 +-180 1847 m 257 + -180 1538 l 257 + 180 1538 l 257 + 180 1847 l 257 + -180 1847 l 257 EndSplineSet EndChar StartChar: uni030B -Encoding: 355 779 355 +Encoding: 779 779 355 GlifName: uni030B_ Width: 0 VWidth: 0 -AnchorPoint: "top" 1021 1248 mark 0 -AnchorPoint: "top" 493 1280 mark 0 +Flags: HW +AnchorPoint: "top" -3 1248 mark 0 +AnchorPoint: "top" -531 1280 mark 0 LayerCount: 2 Fore -Refer: 274 34 N 1 0 0 1 0 0 2 +Refer: 274 34 N 1 0 0 1 -1024 0 2 EndChar StartChar: uni030C -Encoding: 356 780 356 +Encoding: 780 780 356 GlifName: uni030C_ Width: 0 VWidth: 0 -AnchorPoint: "top" 1120 1267 mark 0 -AnchorPoint: "top" 504 1315 mark 0 +Flags: HW +AnchorPoint: "top" 96 1267 mark 0 +AnchorPoint: "top" -520 1315 mark 0 LayerCount: 2 Fore SplineSet -1023 1284 m 257 - 882 1611 l 257 - 855 1594 l 257 - 987 1285 l 257 - 1023 1284 l 257 -990 1283 m 257 - 1027 1283 l 257 - 1193 1598 l 257 - 1152 1616 l 257 - 990 1283 l 257 +-1 1284 m 257 + -142 1611 l 257 + -169 1594 l 257 + -37 1285 l 257 + -1 1284 l 257 +-34 1283 m 257 + 3 1283 l 257 + 169 1598 l 257 + 128 1616 l 257 + -34 1283 l 257 EndSplineSet EndChar StartChar: uni0326 -Encoding: 357 806 357 +Encoding: 806 806 357 GlifName: uni0326 Width: 0 VWidth: 0 -AnchorPoint: "base" 534 -5 mark 0 -AnchorPoint: "base" 534 -5 mark 0 +Flags: HW +AnchorPoint: "base" -490 -5 mark 0 +AnchorPoint: "base" -490 -5 mark 0 LayerCount: 2 Fore SplineSet -990 0 m 257 - 990 -132 l 257 - 1102 -132 l 257 - 1102 0 l 257 - 990 0 l 257 -990 -132 m 257 - 946 -246 l 257 - 1010 -273 l 257 - 1102 -132 l 257 - 990 -132 l 257 +-34 0 m 257 + -34 -132 l 257 + 78 -132 l 257 + 78 0 l 257 + -34 0 l 257 +-34 -132 m 257 + -78 -246 l 257 + -14 -273 l 257 + 78 -132 l 257 + -34 -132 l 257 EndSplineSet EndChar StartChar: uni0327 -Encoding: 358 807 358 +Encoding: 807 807 358 GlifName: uni0327 Width: 0 VWidth: 0 -AnchorPoint: "base" 654 191 mark 0 -AnchorPoint: "base" 654 191 mark 0 -LayerCount: 2 -Fore -SplineSet -798 180 m 257 - 798 -60 l 257 - 856 -60 l 257 - 856 180 l 257 - 798 180 l 257 -804 -347 m 257 - 804 -406 l 257 - 1250 -406 l 257 - 1250 -347 l 257 - 804 -347 l 257 -1191 0 m 257 - 1191 -372 l 257 - 1250 -372 l 257 - 1250 0 l 257 - 1191 0 l 257 -804 0 m 257 - 804 -60 l 257 - 1250 -60 l 257 - 1250 0 l 257 - 804 0 l 257 +Flags: HW +AnchorPoint: "base" -370 191 mark 0 +AnchorPoint: "base" -370 191 mark 0 +LayerCount: 2 +Fore +SplineSet +-226 180 m 257 + -226 -60 l 257 + -168 -60 l 257 + -168 180 l 257 + -226 180 l 257 +-220 -347 m 257 + -220 -406 l 257 + 226 -406 l 257 + 226 -347 l 257 + -220 -347 l 257 +167 0 m 257 + 167 -372 l 257 + 226 -372 l 257 + 226 0 l 257 + 167 0 l 257 +-220 0 m 257 + -220 -60 l 257 + 226 -60 l 257 + 226 0 l 257 + -220 0 l 257 EndSplineSet EndChar StartChar: uni0328 -Encoding: 359 808 359 +Encoding: 808 808 359 GlifName: uni0328 Width: 0 VWidth: 0 -AnchorPoint: "base" 990 23 mark 0 -AnchorPoint: "base" 990 23 mark 0 -LayerCount: 2 -Fore -SplineSet -753 -351 m 257 - 753 -411 l 257 - 1294 -411 l 257 - 1294 -351 l 257 - 753 -351 l 257 -753 0 m 257 - 753 -411 l 257 - 813 -411 l 257 - 813 0 l 257 - 753 0 l 257 -753 0 m 257 - 753 -59 l 257 - 1295 -59 l 257 - 1295 0 l 257 - 753 0 l 257 +Flags: HW +AnchorPoint: "base" -34 23 mark 0 +AnchorPoint: "base" -34 23 mark 0 +LayerCount: 2 +Fore +SplineSet +-271 -351 m 257 + -271 -411 l 257 + 270 -411 l 257 + 270 -351 l 257 + -271 -351 l 257 +-271 0 m 257 + -271 -411 l 257 + -211 -411 l 257 + -211 0 l 257 + -271 0 l 257 +-271 0 m 257 + -271 -59 l 257 + 271 -59 l 257 + 271 0 l 257 + -271 0 l 257 EndSplineSet EndChar StartChar: uni0331 -Encoding: 360 817 360 +Encoding: 817 817 360 GlifName: uni0331 -Width: 2048 +Width: 0 VWidth: 0 -Flags: W -AnchorPoint: "base" 510 -163 mark 0 -AnchorPoint: "base" 510 -163 mark 0 +Flags: HW +AnchorPoint: "base" -514 -163 mark 0 +AnchorPoint: "base" -514 -163 mark 0 LayerCount: 2 Fore SplineSet -744 -204 m 257 - 744 -248 l 257 - 1304 -248 l 257 - 1304 -204 l 257 - 744 -204 l 257 +-280 -204 m 257 + -280 -248 l 257 + 280 -248 l 257 + 280 -204 l 257 + -280 -204 l 257 EndSplineSet EndChar StartChar: uni0900 -Encoding: 361 2304 361 +Encoding: 2304 2304 361 GlifName: uni0900 -Width: 2048 +Width: 0 VWidth: 0 -Flags: W -AnchorPoint: "abvm" 520 1622 mark 0 +Flags: HW +AnchorPoint: "abvm" -396 1622 mark 0 LayerCount: 2 Fore SplineSet -184 2121 m 257 - 184 1632 l 257 - 243 1632 l 257 - 243 2121 l 257 - 184 2121 l 257 -198 2121 m 257 - 198 2061 l 257 - 1611 2061 l 257 - 1611 2121 l 257 - 198 2121 l 257 -893 1930 m 257 - 893 1807 l 257 - 1010 1807 l 257 - 1010 1930 l 257 - 893 1930 l 257 -1588 2121 m 257 - 1588 1633 l 257 - 1648 1633 l 257 - 1648 2121 l 257 - 1588 2121 l 257 +-732 2121 m 257 + -732 1632 l 257 + -673 1632 l 257 + -673 2121 l 257 + -732 2121 l 257 +-718 2121 m 257 + -718 2061 l 257 + 695 2061 l 257 + 695 2121 l 257 + -718 2121 l 257 +-23 1930 m 257 + -23 1807 l 257 + 94 1807 l 257 + 94 1930 l 257 + -23 1930 l 257 +672 2121 m 257 + 672 1633 l 257 + 732 1633 l 257 + 732 2121 l 257 + 672 2121 l 257 EndSplineSet EndChar StartChar: uni0901 -Encoding: 362 2305 362 +Encoding: 2305 2305 362 GlifName: uni0901 -Width: 2048 +Width: 0 VWidth: 0 -Flags: W -AnchorPoint: "abvm" 540 1617 mark 0 +Flags: HW +AnchorPoint: "abvm" -345 1617 mark 0 LayerCount: 2 Fore SplineSet -136 2124 m 257 - 136 1639 l 257 - 196 1639 l 257 - 196 2124 l 257 - 136 2124 l 257 -171 1699 m 257 - 171 1639 l 257 - 1605 1639 l 257 - 1605 1699 l 257 - 171 1699 l 257 -873 1962 m 257 - 873 1839 l 257 - 990 1839 l 257 - 990 1962 l 257 - 873 1962 l 257 -1574 2132 m 257 - 1574 1641 l 257 - 1634 1641 l 257 - 1634 2132 l 257 - 1574 2132 l 257 +-749 2124 m 257 + -749 1639 l 257 + -689 1639 l 257 + -689 2124 l 257 + -749 2124 l 257 +-714 1699 m 257 + -714 1639 l 257 + 720 1639 l 257 + 720 1699 l 257 + -714 1699 l 257 +-12 1962 m 257 + -12 1839 l 257 + 105 1839 l 257 + 105 1962 l 257 + -12 1962 l 257 +689 2132 m 257 + 689 1641 l 257 + 749 1641 l 257 + 749 2132 l 257 + 689 2132 l 257 EndSplineSet EndChar StartChar: uni0902 -Encoding: 363 2306 363 +Encoding: 2306 2306 363 GlifName: uni0902 -Width: 2048 +Width: 0 VWidth: 0 -Flags: W -AnchorPoint: "abvm" 135 1592 mark 0 +Flags: HW +AnchorPoint: "abvm" -380 1592 mark 0 LayerCount: 2 Fore SplineSet -455 1755 m 257 - 455 1635 l 257 - 575 1635 l 257 - 575 1755 l 257 - 455 1755 l 257 +-60 1755 m 257 + -60 1635 l 257 + 60 1635 l 257 + 60 1755 l 257 + -60 1755 l 257 EndSplineSet EndChar StartChar: uni0903 -Encoding: 364 2307 364 +Encoding: 2307 2307 364 GlifName: uni0903 Width: 2048 VWidth: 0 @@ -12141,7 +12155,7 @@ EndSplineSet EndChar StartChar: uni0904 -Encoding: 365 2308 365 +Encoding: 2308 2308 365 GlifName: uni0904 Width: 2048 VWidth: 0 @@ -12198,7 +12212,7 @@ EndSplineSet EndChar StartChar: uni0905 -Encoding: 366 2309 366 +Encoding: 2309 2309 366 GlifName: uni0905 Width: 2048 VWidth: 0 @@ -12240,7 +12254,7 @@ EndSplineSet EndChar StartChar: uni0906 -Encoding: 367 2310 367 +Encoding: 2310 2310 367 GlifName: uni0906 Width: 2048 VWidth: 0 @@ -12287,7 +12301,7 @@ EndSplineSet EndChar StartChar: uni0907 -Encoding: 368 2311 368 +Encoding: 2311 2311 368 GlifName: uni0907 Width: 2048 VWidth: 0 @@ -12339,7 +12353,7 @@ EndSplineSet EndChar StartChar: uni0908 -Encoding: 369 2312 369 +Encoding: 2312 2312 369 GlifName: uni0908 Width: 2048 VWidth: 0 @@ -12396,7 +12410,7 @@ EndSplineSet EndChar StartChar: uni0909 -Encoding: 370 2313 370 +Encoding: 2313 2313 370 GlifName: uni0909 Width: 2048 VWidth: 0 @@ -12438,7 +12452,7 @@ EndSplineSet EndChar StartChar: uni090A -Encoding: 371 2314 371 +Encoding: 2314 2314 371 GlifName: uni090A_ Width: 2048 VWidth: 0 @@ -12485,7 +12499,7 @@ EndSplineSet EndChar StartChar: uni090B -Encoding: 372 2315 372 +Encoding: 2315 2315 372 GlifName: uni090B_ Width: 2048 VWidth: 0 @@ -12537,7 +12551,7 @@ EndSplineSet EndChar StartChar: uni090C -Encoding: 373 2316 373 +Encoding: 2316 2316 373 GlifName: uni090C_ Width: 2048 VWidth: 0 @@ -12584,7 +12598,7 @@ EndSplineSet EndChar StartChar: uni090D -Encoding: 374 2317 374 +Encoding: 2317 2317 374 GlifName: uni090D_ Width: 2048 VWidth: 0 @@ -12646,7 +12660,7 @@ EndSplineSet EndChar StartChar: uni090E -Encoding: 375 2318 375 +Encoding: 2318 2318 375 GlifName: uni090E_ Width: 2048 VWidth: 0 @@ -12708,7 +12722,7 @@ EndSplineSet EndChar StartChar: uni090F -Encoding: 376 2319 376 +Encoding: 2319 2319 376 GlifName: uni090F_ Width: 2048 VWidth: 0 @@ -12755,7 +12769,7 @@ EndSplineSet EndChar StartChar: uni0910 -Encoding: 377 2320 377 +Encoding: 2320 2320 377 GlifName: uni0910 Width: 2048 VWidth: 0 @@ -12807,7 +12821,7 @@ EndSplineSet EndChar StartChar: uni0911 -Encoding: 378 2321 378 +Encoding: 2321 2321 378 GlifName: uni0911 Width: 2048 VWidth: 0 @@ -12869,7 +12883,7 @@ EndSplineSet EndChar StartChar: uni0912 -Encoding: 379 2322 379 +Encoding: 2322 2322 379 GlifName: uni0912 Width: 2048 VWidth: 0 @@ -12931,7 +12945,7 @@ EndSplineSet EndChar StartChar: uni0913 -Encoding: 380 2323 380 +Encoding: 2323 2323 380 GlifName: uni0913 Width: 2048 VWidth: 0 @@ -12983,7 +12997,7 @@ EndSplineSet EndChar StartChar: uni0914 -Encoding: 381 2324 381 +Encoding: 2324 2324 381 GlifName: uni0914 Width: 2048 VWidth: 0 @@ -13040,7 +13054,7 @@ EndSplineSet EndChar StartChar: uni0915 -Encoding: 382 2325 382 +Encoding: 2325 2325 382 GlifName: uni0915 Width: 2048 VWidth: 0 @@ -13087,7 +13101,7 @@ EndSplineSet EndChar StartChar: uni0915_uni0930_uni094D.vatu -Encoding: 383 -1 383 +Encoding: 65537 -1 383 GlifName: uni0915_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -13140,7 +13154,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0915 uni0930_uni09 EndChar StartChar: uni0915_uni094D.half -Encoding: 384 -1 384 +Encoding: 65538 -1 384 GlifName: uni0915_uni094D_.half Width: 2048 VWidth: 0 @@ -13183,7 +13197,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0915 uni094D EndChar StartChar: uni0915_uni094D.haln -Encoding: 385 -1 385 +Encoding: 65539 -1 385 GlifName: uni0915_uni094D_.haln Width: 2048 VWidth: 0 @@ -13241,7 +13255,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0915 uni094D EndChar StartChar: uni0915_uni094D_uni0937.akhn -Encoding: 386 -1 386 +Encoding: 65540 -1 386 GlifName: uni0915_uni094D__uni0937.akhn Width: 2048 VWidth: 0 @@ -13299,7 +13313,7 @@ Ligature2: "akhnAkhandinDevanagarilookup0 subtable" uni0915 uni094D uni0937 EndChar StartChar: uni0915_uni094D_uni0937.half -Encoding: 387 -1 387 +Encoding: 65541 -1 387 GlifName: uni0915_uni094D__uni0937.half Width: 2048 VWidth: 0 @@ -13352,7 +13366,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0915_uni094D_uni0937.a EndChar StartChar: uni0915_uni094D_uni0937_uni094D -Encoding: 388 -1 388 +Encoding: 65542 -1 388 GlifName: uni0915_uni094D__uni0937_uni094D_ Width: 2048 VWidth: 0 @@ -13420,7 +13434,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0915_uni094D_uni0937 EndChar StartChar: uni0916 -Encoding: 389 2326 389 +Encoding: 2326 2326 389 GlifName: uni0916 Width: 2048 VWidth: 0 @@ -13472,7 +13486,7 @@ EndSplineSet EndChar StartChar: uni0916_uni0930_uni094D.vatu -Encoding: 390 -1 390 +Encoding: 65543 -1 390 GlifName: uni0916_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -13530,7 +13544,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0916 uni0930_uni09 EndChar StartChar: uni0916_uni094D.half -Encoding: 391 -1 391 +Encoding: 65544 -1 391 GlifName: uni0916_uni094D_.half Width: 2048 VWidth: 0 @@ -13578,7 +13592,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0916 uni094D EndChar StartChar: uni0916_uni094D.haln -Encoding: 392 -1 392 +Encoding: 65545 -1 392 GlifName: uni0916_uni094D_.haln Width: 2048 VWidth: 0 @@ -13641,7 +13655,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0916 uni094D EndChar StartChar: uni0917 -Encoding: 393 2327 393 +Encoding: 2327 2327 393 GlifName: uni0917 Width: 2048 VWidth: 0 @@ -13678,7 +13692,7 @@ EndSplineSet EndChar StartChar: uni0917_uni0930_uni094D.vatu -Encoding: 394 -1 394 +Encoding: 65546 -1 394 GlifName: uni0917_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -13721,7 +13735,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0917 uni0930_uni09 EndChar StartChar: uni0917_uni094D.half -Encoding: 395 -1 395 +Encoding: 65547 -1 395 GlifName: uni0917_uni094D_.half Width: 2048 VWidth: 0 @@ -13754,7 +13768,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0917 uni094D EndChar StartChar: uni0917_uni094D.haln -Encoding: 396 -1 396 +Encoding: 65548 -1 396 GlifName: uni0917_uni094D_.haln Width: 2048 VWidth: 0 @@ -13802,7 +13816,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0917 uni094D EndChar StartChar: uni0918 -Encoding: 397 2328 397 +Encoding: 2328 2328 397 GlifName: uni0918 Width: 2048 VWidth: 0 @@ -13844,7 +13858,7 @@ EndSplineSet EndChar StartChar: uni0918_uni0930_uni094D.vatu -Encoding: 398 -1 398 +Encoding: 65549 -1 398 GlifName: uni0918_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -13892,7 +13906,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0918 uni0930_uni09 EndChar StartChar: uni0918_uni094D.half -Encoding: 399 -1 399 +Encoding: 65550 -1 399 GlifName: uni0918_uni094D_.half Width: 2048 VWidth: 0 @@ -13930,7 +13944,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0918 uni094D EndChar StartChar: uni0918_uni094D.haln -Encoding: 400 -1 400 +Encoding: 65551 -1 400 GlifName: uni0918_uni094D_.haln Width: 2048 VWidth: 0 @@ -13983,7 +13997,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0918 uni094D EndChar StartChar: uni0919 -Encoding: 401 2329 401 +Encoding: 2329 2329 401 GlifName: uni0919 Width: 2048 VWidth: 0 @@ -14040,7 +14054,7 @@ EndSplineSet EndChar StartChar: uni0919_uni0930_uni094D.vatu -Encoding: 402 -1 402 +Encoding: 65552 -1 402 GlifName: uni0919_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -14108,7 +14122,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0919 uni0930_uni09 EndChar StartChar: uni0919_uni094D.half -Encoding: 403 -1 403 +Encoding: 65553 -1 403 GlifName: uni0919_uni094D_.half Width: 2048 VWidth: 0 @@ -14176,7 +14190,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0919 uni094D EndChar StartChar: uni0919_uni094D.haln -Encoding: 404 -1 404 +Encoding: 65554 -1 404 GlifName: uni0919_uni094D_.haln Width: 2048 VWidth: 0 @@ -14244,7 +14258,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0919 uni094D EndChar StartChar: uni091A -Encoding: 405 2330 405 +Encoding: 2330 2330 405 GlifName: uni091A_ Width: 2048 VWidth: 0 @@ -14281,7 +14295,7 @@ EndSplineSet EndChar StartChar: uni091A_uni0930_uni094D.vatu -Encoding: 406 -1 406 +Encoding: 65555 -1 406 GlifName: uni091A__uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -14324,7 +14338,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni091A uni0930_uni09 EndChar StartChar: uni091A_uni094D.half -Encoding: 407 -1 407 +Encoding: 65556 -1 407 GlifName: uni091A__uni094D_.half Width: 2048 VWidth: 0 @@ -14357,7 +14371,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni091A uni094D EndChar StartChar: uni091A_uni094D.haln -Encoding: 408 -1 408 +Encoding: 65557 -1 408 GlifName: uni091A__uni094D_.haln Width: 2048 VWidth: 0 @@ -14405,7 +14419,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni091A uni094D EndChar StartChar: uni091B -Encoding: 409 2331 409 +Encoding: 2331 2331 409 GlifName: uni091B_ Width: 2048 VWidth: 0 @@ -14462,7 +14476,7 @@ EndSplineSet EndChar StartChar: uni091B_uni0930_uni094D.vatu -Encoding: 410 -1 410 +Encoding: 65558 -1 410 GlifName: uni091B__uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -14525,7 +14539,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni091B uni0930_uni09 EndChar StartChar: uni091B_uni094D.half -Encoding: 411 -1 411 +Encoding: 65559 -1 411 GlifName: uni091B__uni094D_.half Width: 2048 VWidth: 0 @@ -14568,7 +14582,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni091B uni094D EndChar StartChar: uni091B_uni094D.haln -Encoding: 412 -1 412 +Encoding: 65560 -1 412 GlifName: uni091B__uni094D_.haln Width: 2048 VWidth: 0 @@ -14636,7 +14650,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni091B uni094D EndChar StartChar: uni091C -Encoding: 413 2332 413 +Encoding: 2332 2332 413 GlifName: uni091C_ Width: 2048 VWidth: 0 @@ -14678,7 +14692,7 @@ EndSplineSet EndChar StartChar: uni091C_uni0930_uni094D.vatu -Encoding: 414 -1 414 +Encoding: 65561 -1 414 GlifName: uni091C__uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -14726,7 +14740,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni091C uni0930_uni09 EndChar StartChar: uni091C_uni094D.half -Encoding: 415 -1 415 +Encoding: 65562 -1 415 GlifName: uni091C__uni094D_.half Width: 2048 VWidth: 0 @@ -14764,7 +14778,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni091C uni094D EndChar StartChar: uni091C_uni094D.haln -Encoding: 416 -1 416 +Encoding: 65563 -1 416 GlifName: uni091C__uni094D_.haln Width: 2048 VWidth: 0 @@ -14817,7 +14831,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni091C uni094D EndChar StartChar: uni091C_uni094D_uni091E.akhn -Encoding: 417 -1 417 +Encoding: 65564 -1 417 GlifName: uni091C__uni094D__uni091E_.akhn Width: 2048 VWidth: 0 @@ -14860,7 +14874,7 @@ Ligature2: "akhnAkhandinDevanagarilookup0 subtable" uni091C uni094D uni091E EndChar StartChar: uni091C_uni094D_uni091E.half -Encoding: 418 -1 418 +Encoding: 65565 -1 418 GlifName: uni091C__uni094D__uni091E_.half Width: 2048 VWidth: 0 @@ -14898,7 +14912,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni091C_uni094D_uni091E.a EndChar StartChar: uni091C_uni094D_uni091E_uni094D -Encoding: 419 -1 419 +Encoding: 65566 -1 419 GlifName: uni091C__uni094D__uni091E__uni094D_ Width: 2048 VWidth: 0 @@ -14951,7 +14965,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni091C_uni094D_uni091E EndChar StartChar: uni091D -Encoding: 420 2333 420 +Encoding: 2333 2333 420 GlifName: uni091D_ Width: 2048 VWidth: 0 @@ -15008,7 +15022,7 @@ EndSplineSet EndChar StartChar: uni091D_uni0930_uni094D.vatu -Encoding: 421 -1 421 +Encoding: 65567 -1 421 GlifName: uni091D__uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -15071,7 +15085,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni091D uni0930_uni09 EndChar StartChar: uni091D_uni094D.half -Encoding: 422 -1 422 +Encoding: 65568 -1 422 GlifName: uni091D__uni094D_.half Width: 2048 VWidth: 0 @@ -15124,7 +15138,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni091D uni094D EndChar StartChar: uni091D_uni094D.haln -Encoding: 423 -1 423 +Encoding: 65569 -1 423 GlifName: uni091D__uni094D_.haln Width: 2048 VWidth: 0 @@ -15192,7 +15206,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni091D uni094D EndChar StartChar: uni091E -Encoding: 424 2334 424 +Encoding: 2334 2334 424 GlifName: uni091E_ Width: 2048 VWidth: 0 @@ -15234,7 +15248,7 @@ EndSplineSet EndChar StartChar: uni091E_uni0930_uni094D.vatu -Encoding: 425 -1 425 +Encoding: 65570 -1 425 GlifName: uni091E__uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -15282,7 +15296,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni091E uni0930_uni09 EndChar StartChar: uni091E_uni094D.half -Encoding: 426 -1 426 +Encoding: 65571 -1 426 GlifName: uni091E__uni094D_.half Width: 2048 VWidth: 0 @@ -15320,7 +15334,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni091E uni094D EndChar StartChar: uni091E_uni094D.haln -Encoding: 427 -1 427 +Encoding: 65572 -1 427 GlifName: uni091E__uni094D_.haln Width: 2048 VWidth: 0 @@ -15373,7 +15387,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni091E uni094D EndChar StartChar: uni091F -Encoding: 428 2335 428 +Encoding: 2335 2335 428 GlifName: uni091F_ Width: 2048 VWidth: 0 @@ -15410,7 +15424,7 @@ EndSplineSet EndChar StartChar: uni091F_uni0930_uni094D.vatu -Encoding: 429 -1 429 +Encoding: 65573 -1 429 GlifName: uni091F__uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -15458,7 +15472,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni091F uni0930_uni09 EndChar StartChar: uni091F_uni094D.haln -Encoding: 430 -1 430 +Encoding: 65574 -1 430 GlifName: uni091F__uni094D_.haln Width: 2048 VWidth: 0 @@ -15506,7 +15520,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni091F uni094D EndChar StartChar: uni0920 -Encoding: 431 2336 431 +Encoding: 2336 2336 431 GlifName: uni0920 Width: 2048 VWidth: 0 @@ -15548,7 +15562,7 @@ EndSplineSet EndChar StartChar: uni0920_uni0930_uni094D.vatu -Encoding: 432 -1 432 +Encoding: 65575 -1 432 GlifName: uni0920_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -15601,7 +15615,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0920 uni0930_uni09 EndChar StartChar: uni0920_uni094D.haln -Encoding: 433 -1 433 +Encoding: 65576 -1 433 GlifName: uni0920_uni094D_.haln Width: 2048 VWidth: 0 @@ -15654,7 +15668,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0920 uni094D EndChar StartChar: uni0921 -Encoding: 434 2337 434 +Encoding: 2337 2337 434 GlifName: uni0921 Width: 2048 VWidth: 0 @@ -15706,7 +15720,7 @@ EndSplineSet EndChar StartChar: uni0921_uni0930_uni094D.vatu -Encoding: 435 -1 435 +Encoding: 65577 -1 435 GlifName: uni0921_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -15769,7 +15783,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0921 uni0930_uni09 EndChar StartChar: uni0921_uni094D.haln -Encoding: 436 -1 436 +Encoding: 65578 -1 436 GlifName: uni0921_uni094D_.haln Width: 2048 VWidth: 0 @@ -15832,7 +15846,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0921 uni094D EndChar StartChar: uni0922 -Encoding: 437 2338 437 +Encoding: 2338 2338 437 GlifName: uni0922 Width: 2048 VWidth: 0 @@ -15879,7 +15893,7 @@ EndSplineSet EndChar StartChar: uni0922_uni0930_uni094D.vatu -Encoding: 438 -1 438 +Encoding: 65579 -1 438 GlifName: uni0922_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -15937,7 +15951,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0922 uni0930_uni09 EndChar StartChar: uni0922_uni094D.haln -Encoding: 439 -1 439 +Encoding: 65580 -1 439 GlifName: uni0922_uni094D_.haln Width: 2048 VWidth: 0 @@ -15995,7 +16009,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0922 uni094D EndChar StartChar: uni0923 -Encoding: 440 2339 440 +Encoding: 2339 2339 440 GlifName: uni0923 Width: 2048 VWidth: 0 @@ -16032,7 +16046,7 @@ EndSplineSet EndChar StartChar: uni0923_uni0930_uni094D.vatu -Encoding: 441 -1 441 +Encoding: 65581 -1 441 GlifName: uni0923_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -16075,7 +16089,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0923 uni0930_uni09 EndChar StartChar: uni0923_uni094D.half -Encoding: 442 -1 442 +Encoding: 65582 -1 442 GlifName: uni0923_uni094D_.half Width: 2048 VWidth: 0 @@ -16108,7 +16122,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0923 uni094D EndChar StartChar: uni0923_uni094D.haln -Encoding: 443 -1 443 +Encoding: 65583 -1 443 GlifName: uni0923_uni094D_.haln Width: 2048 VWidth: 0 @@ -16156,7 +16170,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0923 uni094D EndChar StartChar: uni0924 -Encoding: 444 2340 444 +Encoding: 2340 2340 444 GlifName: uni0924 Width: 2048 VWidth: 0 @@ -16188,7 +16202,7 @@ EndSplineSet EndChar StartChar: uni0924_uni0930_uni094D.vatu -Encoding: 445 -1 445 +Encoding: 65584 -1 445 GlifName: uni0924_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -16221,7 +16235,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0924 uni0930_uni09 EndChar StartChar: uni0924_uni094D.half -Encoding: 446 -1 446 +Encoding: 65585 -1 446 GlifName: uni0924_uni094D_.half Width: 2048 VWidth: 0 @@ -16249,7 +16263,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0924 uni094D EndChar StartChar: uni0924_uni094D.haln -Encoding: 447 -1 447 +Encoding: 65586 -1 447 GlifName: uni0924_uni094D_.haln Width: 2048 VWidth: 0 @@ -16292,7 +16306,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0924 uni094D EndChar StartChar: uni0924_uni094D_uni0924.pres -Encoding: 448 -1 448 +Encoding: 65587 -1 448 GlifName: uni0924_uni094D__uni0924.pres Width: 2048 VWidth: 0 @@ -16330,7 +16344,7 @@ Ligature2: "presPreBaseSubstitutionsinDevanagarilookup0 subtable" uni0924_uni094 EndChar StartChar: uni0925 -Encoding: 449 2341 449 +Encoding: 2341 2341 449 GlifName: uni0925 Width: 2048 VWidth: 0 @@ -16377,7 +16391,7 @@ EndSplineSet EndChar StartChar: uni0925_uni0930_uni094D.vatu -Encoding: 450 -1 450 +Encoding: 65588 -1 450 GlifName: uni0925_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -16430,7 +16444,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0925 uni0930_uni09 EndChar StartChar: uni0925_uni094D.half -Encoding: 451 -1 451 +Encoding: 65589 -1 451 GlifName: uni0925_uni094D_.half Width: 2048 VWidth: 0 @@ -16473,7 +16487,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0925 uni094D EndChar StartChar: uni0925_uni094D.haln -Encoding: 452 -1 452 +Encoding: 65590 -1 452 GlifName: uni0925_uni094D_.haln Width: 2048 VWidth: 0 @@ -16531,7 +16545,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0925 uni094D EndChar StartChar: uni0926 -Encoding: 453 2342 453 +Encoding: 2342 2342 453 GlifName: uni0926 Width: 2048 VWidth: 0 @@ -16573,7 +16587,7 @@ EndSplineSet EndChar StartChar: uni0926_uni0930_uni094D.vatu -Encoding: 454 -1 454 +Encoding: 65591 -1 454 GlifName: uni0926_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -16621,7 +16635,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0926 uni0930_uni09 EndChar StartChar: uni0926_uni094D.half -Encoding: 455 -1 455 +Encoding: 65592 -1 455 GlifName: uni0926_uni094D_.half Width: 2048 VWidth: 0 @@ -16674,7 +16688,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0926 uni094D EndChar StartChar: uni0926_uni094D.haln -Encoding: 456 -1 456 +Encoding: 65593 -1 456 GlifName: uni0926_uni094D_.haln Width: 2048 VWidth: 0 @@ -16727,7 +16741,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0926 uni094D EndChar StartChar: uni0926_uni094D_uni0926.pres -Encoding: 457 -1 457 +Encoding: 65594 -1 457 GlifName: uni0926_uni094D__uni0926.pres Width: 2048 VWidth: 0 @@ -16780,7 +16794,7 @@ Ligature2: "presPreBaseSubstitutionsinDevanagarilookup0 subtable" uni0926_uni094 EndChar StartChar: uni0926_uni094D_uni0927.pres -Encoding: 458 -1 458 +Encoding: 65595 -1 458 GlifName: uni0926_uni094D__uni0927.pres Width: 2048 VWidth: 0 @@ -16843,7 +16857,7 @@ Ligature2: "presPreBaseSubstitutionsinDevanagarilookup0 subtable" uni0926_uni094 EndChar StartChar: uni0926_uni094D_uni092F.pres -Encoding: 459 -1 459 +Encoding: 65596 -1 459 GlifName: uni0926_uni094D__uni092F_.pres Width: 2048 VWidth: 0 @@ -16891,7 +16905,7 @@ Ligature2: "presPreBaseSubstitutionsinDevanagarilookup0 subtable" uni0926_uni094 EndChar StartChar: uni0926_uni094D_uni0935.pres -Encoding: 460 -1 460 +Encoding: 65597 -1 460 GlifName: uni0926_uni094D__uni0935.pres Width: 2048 VWidth: 0 @@ -16949,7 +16963,7 @@ Ligature2: "presPreBaseSubstitutionsinDevanagarilookup0 subtable" uni0926_uni094 EndChar StartChar: uni0927 -Encoding: 461 2343 461 +Encoding: 2343 2343 461 GlifName: uni0927 Width: 2048 VWidth: 0 @@ -16996,7 +17010,7 @@ EndSplineSet EndChar StartChar: uni0927_uni0930_uni094D.vatu -Encoding: 462 -1 462 +Encoding: 65598 -1 462 GlifName: uni0927_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -17049,7 +17063,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0927 uni0930_uni09 EndChar StartChar: uni0927_uni094D.half -Encoding: 463 -1 463 +Encoding: 65599 -1 463 GlifName: uni0927_uni094D_.half Width: 2048 VWidth: 0 @@ -17087,7 +17101,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0927 uni094D EndChar StartChar: uni0927_uni094D.haln -Encoding: 464 -1 464 +Encoding: 65600 -1 464 GlifName: uni0927_uni094D_.haln Width: 2048 VWidth: 0 @@ -17145,7 +17159,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0927 uni094D EndChar StartChar: uni0928 -Encoding: 465 2344 465 +Encoding: 2344 2344 465 GlifName: uni0928 Width: 2048 VWidth: 0 @@ -17177,7 +17191,7 @@ EndSplineSet EndChar StartChar: uni0928_uni0930_uni094D.vatu -Encoding: 466 -1 466 +Encoding: 65601 -1 466 GlifName: uni0928_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -17215,7 +17229,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0928 uni0930_uni09 EndChar StartChar: uni0928_uni094D.half -Encoding: 467 -1 467 +Encoding: 65602 -1 467 GlifName: uni0928_uni094D_.half Width: 2048 VWidth: 0 @@ -17243,7 +17257,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0928 uni094D EndChar StartChar: uni0928_uni094D.haln -Encoding: 468 -1 468 +Encoding: 65603 -1 468 GlifName: uni0928_uni094D_.haln Width: 2048 VWidth: 0 @@ -17286,7 +17300,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0928 uni094D EndChar StartChar: uni0929 -Encoding: 469 2345 469 +Encoding: 2345 2345 469 GlifName: uni0929 Width: 2048 VWidth: 0 @@ -17324,7 +17338,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0928 uni093C EndChar StartChar: uni0929_uni0930_uni094D.vatu -Encoding: 470 -1 470 +Encoding: 65604 -1 470 GlifName: uni0929_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -17367,7 +17381,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0929 uni0930_uni09 EndChar StartChar: uni0929_uni094D.half -Encoding: 471 -1 471 +Encoding: 65605 -1 471 GlifName: uni0929_uni094D_.half Width: 2048 VWidth: 0 @@ -17400,7 +17414,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0929 uni094D EndChar StartChar: uni0929_uni094D.haln -Encoding: 472 -1 472 +Encoding: 65606 -1 472 GlifName: uni0929_uni094D_.haln Width: 2048 VWidth: 0 @@ -17448,7 +17462,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0929 uni094D EndChar StartChar: uni092A -Encoding: 473 2346 473 +Encoding: 2346 2346 473 GlifName: uni092A_ Width: 2048 VWidth: 0 @@ -17480,7 +17494,7 @@ EndSplineSet EndChar StartChar: uni092A_uni0930_uni094D.vatu -Encoding: 474 -1 474 +Encoding: 65607 -1 474 GlifName: uni092A__uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -17518,7 +17532,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni092A uni0930_uni09 EndChar StartChar: uni092A_uni094D.half -Encoding: 475 -1 475 +Encoding: 65608 -1 475 GlifName: uni092A__uni094D_.half Width: 2048 VWidth: 0 @@ -17546,7 +17560,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni092A uni094D EndChar StartChar: uni092A_uni094D.haln -Encoding: 476 -1 476 +Encoding: 65609 -1 476 GlifName: uni092A__uni094D_.haln Width: 2048 VWidth: 0 @@ -17589,7 +17603,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni092A uni094D EndChar StartChar: uni092B -Encoding: 477 2347 477 +Encoding: 2347 2347 477 GlifName: uni092B_ Width: 2048 VWidth: 0 @@ -17626,7 +17640,7 @@ EndSplineSet EndChar StartChar: uni092B_uni0930_uni094D.vatu -Encoding: 478 -1 478 +Encoding: 65610 -1 478 GlifName: uni092B__uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -17669,7 +17683,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni092B uni0930_uni09 EndChar StartChar: uni092B_uni094D.half -Encoding: 479 -1 479 +Encoding: 65611 -1 479 GlifName: uni092B__uni094D_.half Width: 2048 VWidth: 0 @@ -17702,7 +17716,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni092B uni094D EndChar StartChar: uni092B_uni094D.haln -Encoding: 480 -1 480 +Encoding: 65612 -1 480 GlifName: uni092B__uni094D_.haln Width: 2048 VWidth: 0 @@ -17750,7 +17764,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni092B uni094D EndChar StartChar: uni092C -Encoding: 481 2348 481 +Encoding: 2348 2348 481 GlifName: uni092C_ Width: 2048 VWidth: 0 @@ -17792,7 +17806,7 @@ EndSplineSet EndChar StartChar: uni092C_uni0930_uni094D.vatu -Encoding: 482 -1 482 +Encoding: 65613 -1 482 GlifName: uni092C__uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -17840,7 +17854,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni092C uni0930_uni09 EndChar StartChar: uni092C_uni094D.half -Encoding: 483 -1 483 +Encoding: 65614 -1 483 GlifName: uni092C__uni094D_.half Width: 2048 VWidth: 0 @@ -17878,7 +17892,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni092C uni094D EndChar StartChar: uni092C_uni094D.haln -Encoding: 484 -1 484 +Encoding: 65615 -1 484 GlifName: uni092C__uni094D_.haln Width: 2048 VWidth: 0 @@ -17931,7 +17945,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni092C uni094D EndChar StartChar: uni092D -Encoding: 485 2349 485 +Encoding: 2349 2349 485 GlifName: uni092D_ Width: 2048 VWidth: 0 @@ -17983,7 +17997,7 @@ EndSplineSet EndChar StartChar: uni092D_uni0930_uni094D.vatu -Encoding: 486 -1 486 +Encoding: 65616 -1 486 GlifName: uni092D__uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -18041,7 +18055,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni092D uni0930_uni09 EndChar StartChar: uni092D_uni094D.half -Encoding: 487 -1 487 +Encoding: 65617 -1 487 GlifName: uni092D__uni094D_.half Width: 2048 VWidth: 0 @@ -18089,7 +18103,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni092D uni094D EndChar StartChar: uni092D_uni094D.haln -Encoding: 488 -1 488 +Encoding: 65618 -1 488 GlifName: uni092D__uni094D_.haln Width: 2048 VWidth: 0 @@ -18152,7 +18166,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni092D uni094D EndChar StartChar: uni092E -Encoding: 489 2350 489 +Encoding: 2350 2350 489 GlifName: uni092E_ Width: 2048 VWidth: 0 @@ -18194,7 +18208,7 @@ EndSplineSet EndChar StartChar: uni092E_uni0930_uni094D.vatu -Encoding: 490 -1 490 +Encoding: 65619 -1 490 GlifName: uni092E__uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -18242,7 +18256,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni092E uni0930_uni09 EndChar StartChar: uni092E_uni094D.half -Encoding: 491 -1 491 +Encoding: 65620 -1 491 GlifName: uni092E__uni094D_.half Width: 2048 VWidth: 0 @@ -18280,7 +18294,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni092E uni094D EndChar StartChar: uni092E_uni094D.haln -Encoding: 492 -1 492 +Encoding: 65621 -1 492 GlifName: uni092E__uni094D_.haln Width: 2048 VWidth: 0 @@ -18333,7 +18347,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni092E uni094D EndChar StartChar: uni092F -Encoding: 493 2351 493 +Encoding: 2351 2351 493 GlifName: uni092F_ Width: 2048 VWidth: 0 @@ -18370,7 +18384,7 @@ EndSplineSet EndChar StartChar: uni092F_uni0930_uni094D.vatu -Encoding: 494 -1 494 +Encoding: 65622 -1 494 GlifName: uni092F__uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -18413,7 +18427,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni092F uni0930_uni09 EndChar StartChar: uni092F_uni094D.half -Encoding: 495 -1 495 +Encoding: 65623 -1 495 GlifName: uni092F__uni094D_.half Width: 2048 VWidth: 0 @@ -18446,7 +18460,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni092F uni094D EndChar StartChar: uni092F_uni094D.haln -Encoding: 496 -1 496 +Encoding: 65624 -1 496 GlifName: uni092F__uni094D_.haln Width: 2048 VWidth: 0 @@ -18494,7 +18508,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni092F uni094D EndChar StartChar: uni0930 -Encoding: 497 2352 497 +Encoding: 2352 2352 497 GlifName: uni0930 Width: 2048 VWidth: 0 @@ -18526,7 +18540,7 @@ EndSplineSet EndChar StartChar: uni0930_uni0930_uni094D.vatu -Encoding: 498 -1 498 +Encoding: 65625 -1 498 GlifName: uni0930_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -18564,7 +18578,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0930 uni0930_uni09 EndChar StartChar: uni0930_uni0941.blws -Encoding: 499 -1 499 +Encoding: 65626 -1 499 GlifName: uni0930_uni0941.blws Width: 2048 VWidth: 0 @@ -18612,7 +18626,7 @@ Ligature2: "blwsBelowBaseSubstitutionsinDevanagarilookup12 subtable" uni0930 uni EndChar StartChar: uni0930_uni0942.blws -Encoding: 500 -1 500 +Encoding: 65627 -1 500 GlifName: uni0930_uni0942.blws Width: 2048 VWidth: 0 @@ -18664,35 +18678,8 @@ EndSplineSet Ligature2: "blwsBelowBaseSubstitutionsinDevanagarilookup12 subtable" uni0930 uni0942 EndChar -StartChar: uni0930_uni094D.abvs -Encoding: 501 -1 501 -GlifName: uni0930_uni094D_.abvs -Width: 2048 -VWidth: 0 -Flags: W -LayerCount: 2 -Fore -SplineSet -120 1550 m 257 - 180 1550 l 257 - 180 1869 l 257 - 120 1869 l 257 - 120 1550 l 257 -244 2002 m 257 - 244 1942 l 257 - 572 1942 l 257 - 572 2002 l 257 - 244 2002 l 257 -244 2002 m 257 - 120 1869 l 257 - 180 1869 l 257 - 244 1942 l 257 - 244 2002 l 257 -EndSplineSet -EndChar - StartChar: uni0930_uni094D.blwf -Encoding: 502 -1 502 +Encoding: 65628 -1 501 GlifName: uni0930_uni094D_.blwf Width: 2048 VWidth: 0 @@ -18720,7 +18707,7 @@ Ligature2: "blwfBelowBaseFormsinDevanagarilookup0 subtable" uni094D uni0930 EndChar StartChar: uni0930_uni094D.half -Encoding: 503 -1 503 +Encoding: 65629 -1 502 GlifName: uni0930_uni094D_.half Width: 2048 VWidth: 0 @@ -18754,7 +18741,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0931 uni094D EndChar StartChar: uni0930_uni094D.haln -Encoding: 504 -1 504 +Encoding: 65630 -1 503 GlifName: uni0930_uni094D_.haln Width: 2048 VWidth: 0 @@ -18797,7 +18784,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0930 uni094D EndChar StartChar: uni0930_uni094D.rphf -Encoding: 505 -1 505 +Encoding: 65631 -1 504 GlifName: uni0930_uni094D_.rphf Width: 2048 VWidth: 0 @@ -18829,25 +18816,8 @@ EndSplineSet Ligature2: "rphfRephForminDevanagarilookup0 subtable" uni0930 uni094D EndChar -StartChar: uni0930_uni094D.vatu -Encoding: 506 -1 506 -GlifName: uni0930_uni094D_.vatu -Width: 2048 -VWidth: 0 -Flags: W -LayerCount: 2 -Fore -SplineSet -126 0 m 257 - 383 0 l 257 - 1800 357 l 257 - 1800 416 l 257 - 126 0 l 257 -EndSplineSet -EndChar - StartChar: uni0931 -Encoding: 507 2353 507 +Encoding: 2353 2353 505 GlifName: uni0931 Width: 2048 VWidth: 0 @@ -18885,7 +18855,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0930 uni093C EndChar StartChar: uni0931_uni0930_uni094D.vatu -Encoding: 508 -1 508 +Encoding: 65632 -1 506 GlifName: uni0931_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -18928,7 +18898,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0931 uni0930_uni09 EndChar StartChar: uni0931_uni094D.haln -Encoding: 509 -1 509 +Encoding: 65633 -1 507 GlifName: uni0931_uni094D_.haln Width: 2048 VWidth: 0 @@ -18976,7 +18946,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0931 uni094D EndChar StartChar: uni0932 -Encoding: 510 2354 510 +Encoding: 2354 2354 508 GlifName: uni0932 Width: 2048 VWidth: 0 @@ -19013,7 +18983,7 @@ EndSplineSet EndChar StartChar: uni0932_uni0930_uni094D.vatu -Encoding: 511 -1 511 +Encoding: 65634 -1 509 GlifName: uni0932_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -19056,7 +19026,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0932 uni0930_uni09 EndChar StartChar: uni0932_uni094D.half -Encoding: 512 -1 512 +Encoding: 65635 -1 510 GlifName: uni0932_uni094D_.half Width: 2048 VWidth: 0 @@ -19089,7 +19059,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0932 uni094D EndChar StartChar: uni0932_uni094D.haln -Encoding: 513 -1 513 +Encoding: 65636 -1 511 GlifName: uni0932_uni094D_.haln Width: 2048 VWidth: 0 @@ -19137,7 +19107,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0932 uni094D EndChar StartChar: uni0933 -Encoding: 514 2355 514 +Encoding: 2355 2355 512 GlifName: uni0933 Width: 2048 VWidth: 0 @@ -19179,7 +19149,7 @@ EndSplineSet EndChar StartChar: uni0933_uni0930_uni094D.vatu -Encoding: 515 -1 515 +Encoding: 65637 -1 513 GlifName: uni0933_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -19232,7 +19202,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0933 uni0930_uni09 EndChar StartChar: uni0933_uni094D.half -Encoding: 516 -1 516 +Encoding: 65638 -1 514 GlifName: uni0933_uni094D_.half Width: 2048 VWidth: 0 @@ -19275,7 +19245,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0933 uni094D EndChar StartChar: uni0933_uni094D.haln -Encoding: 517 -1 517 +Encoding: 65639 -1 515 GlifName: uni0933_uni094D_.haln Width: 2048 VWidth: 0 @@ -19328,7 +19298,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0933 uni094D EndChar StartChar: uni0934 -Encoding: 518 2356 518 +Encoding: 2356 2356 516 GlifName: uni0934 Width: 2048 VWidth: 0 @@ -19376,7 +19346,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0933 uni093C EndChar StartChar: uni0934_uni0930_uni094D.vatu -Encoding: 519 -1 519 +Encoding: 65640 -1 517 GlifName: uni0934_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -19434,7 +19404,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0934 uni0930_uni09 EndChar StartChar: uni0934_uni094D.half -Encoding: 520 -1 520 +Encoding: 65641 -1 518 GlifName: uni0934_uni094D_.half Width: 2048 VWidth: 0 @@ -19482,7 +19452,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0934 uni094D EndChar StartChar: uni0934_uni094D.haln -Encoding: 521 -1 521 +Encoding: 65642 -1 519 GlifName: uni0934_uni094D_.haln Width: 2048 VWidth: 0 @@ -19540,7 +19510,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0934 uni094D EndChar StartChar: uni0935 -Encoding: 522 2357 522 +Encoding: 2357 2357 520 GlifName: uni0935 Width: 2048 VWidth: 0 @@ -19577,7 +19547,7 @@ EndSplineSet EndChar StartChar: uni0935_uni0930_uni094D.vatu -Encoding: 523 -1 523 +Encoding: 65643 -1 521 GlifName: uni0935_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -19620,7 +19590,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0935 uni0930_uni09 EndChar StartChar: uni0935_uni094D.half -Encoding: 524 -1 524 +Encoding: 65644 -1 522 GlifName: uni0935_uni094D_.half Width: 2048 VWidth: 0 @@ -19653,7 +19623,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0935 uni094D EndChar StartChar: uni0935_uni094D.haln -Encoding: 525 -1 525 +Encoding: 65645 -1 523 GlifName: uni0935_uni094D_.haln Width: 2048 VWidth: 0 @@ -19701,7 +19671,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0935 uni094D EndChar StartChar: uni0936 -Encoding: 526 2358 526 +Encoding: 2358 2358 524 GlifName: uni0936 Width: 2048 VWidth: 0 @@ -19748,7 +19718,7 @@ EndSplineSet EndChar StartChar: uni0936_uni0930_uni094D.vatu -Encoding: 527 -1 527 +Encoding: 65646 -1 525 GlifName: uni0936_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -19801,7 +19771,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0936 uni0930_uni09 EndChar StartChar: uni0936_uni094D.half -Encoding: 528 -1 528 +Encoding: 65647 -1 526 GlifName: uni0936_uni094D_.half Width: 2048 VWidth: 0 @@ -19839,7 +19809,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0936 uni094D EndChar StartChar: uni0936_uni094D.haln -Encoding: 529 -1 529 +Encoding: 65648 -1 527 GlifName: uni0936_uni094D_.haln Width: 2048 VWidth: 0 @@ -19897,7 +19867,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0936 uni094D EndChar StartChar: uni0937 -Encoding: 530 2359 530 +Encoding: 2359 2359 528 GlifName: uni0937 Width: 2048 VWidth: 0 @@ -19934,7 +19904,7 @@ EndSplineSet EndChar StartChar: uni0937_uni0930_uni094D.vatu -Encoding: 531 -1 531 +Encoding: 65649 -1 529 GlifName: uni0937_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -19977,7 +19947,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0937 uni0930_uni09 EndChar StartChar: uni0937_uni094D.half -Encoding: 532 -1 532 +Encoding: 65650 -1 530 GlifName: uni0937_uni094D_.half Width: 2048 VWidth: 0 @@ -20010,7 +19980,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0937 uni094D EndChar StartChar: uni0937_uni094D.haln -Encoding: 533 -1 533 +Encoding: 65651 -1 531 GlifName: uni0937_uni094D_.haln Width: 2048 VWidth: 0 @@ -20058,7 +20028,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0937 uni094D EndChar StartChar: uni0938 -Encoding: 534 2360 534 +Encoding: 2360 2360 532 GlifName: uni0938 Width: 2048 VWidth: 0 @@ -20095,7 +20065,7 @@ EndSplineSet EndChar StartChar: uni0938_uni0930_uni094D.vatu -Encoding: 535 -1 535 +Encoding: 65652 -1 533 GlifName: uni0938_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -20138,7 +20108,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0938 uni0930_uni09 EndChar StartChar: uni0938_uni094D.half -Encoding: 536 -1 536 +Encoding: 65653 -1 534 GlifName: uni0938_uni094D_.half Width: 2048 VWidth: 0 @@ -20171,7 +20141,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0938 uni094D EndChar StartChar: uni0938_uni094D.haln -Encoding: 537 -1 537 +Encoding: 65654 -1 535 GlifName: uni0938_uni094D_.haln Width: 2048 VWidth: 0 @@ -20219,7 +20189,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0938 uni094D EndChar StartChar: uni0939 -Encoding: 538 2361 538 +Encoding: 2361 2361 536 GlifName: uni0939 Width: 2048 VWidth: 0 @@ -20271,7 +20241,7 @@ EndSplineSet EndChar StartChar: uni0939_uni0930_uni094D.vatu -Encoding: 539 -1 539 +Encoding: 65655 -1 537 GlifName: uni0939_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -20329,7 +20299,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0939 uni0930_uni09 EndChar StartChar: uni0939_uni0943.blws -Encoding: 540 -1 540 +Encoding: 65656 -1 538 GlifName: uni0939_uni0943.blws Width: 2048 VWidth: 0 @@ -20387,7 +20357,7 @@ Ligature2: "blwsBelowBaseSubstitutionsinDevanagarilookup12 subtable" uni0939 uni EndChar StartChar: uni0939_uni094D.half -Encoding: 541 -1 541 +Encoding: 65657 -1 539 GlifName: uni0939_uni094D_.half Width: 2048 VWidth: 0 @@ -20435,7 +20405,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0939 uni094D EndChar StartChar: uni0939_uni094D.haln -Encoding: 542 -1 542 +Encoding: 65658 -1 540 GlifName: uni0939_uni094D_.haln Width: 2048 VWidth: 0 @@ -20498,7 +20468,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0939 uni094D EndChar StartChar: uni0939_uni094D_uni092E.pres -Encoding: 543 -1 543 +Encoding: 65659 -1 541 GlifName: uni0939_uni094D__uni092E_.pres Width: 2048 VWidth: 0 @@ -20571,11 +20541,11 @@ Ligature2: "presPreBaseSubstitutionsinDevanagarilookup0 subtable" uni0939_uni094 EndChar StartChar: uni093A -Encoding: 544 2362 544 +Encoding: 2362 2362 542 GlifName: uni093A_ -Width: 2048 +Width: 0 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore SplineSet @@ -20588,7 +20558,7 @@ EndSplineSet EndChar StartChar: uni093B -Encoding: 545 2363 545 +Encoding: 2363 2363 543 GlifName: uni093B_ Width: 2048 VWidth: 0 @@ -20610,7 +20580,7 @@ EndSplineSet EndChar StartChar: uni093C -Encoding: 546 2364 546 +Encoding: 2364 2364 544 GlifName: uni093C_ Width: 2048 VWidth: 0 @@ -20627,7 +20597,7 @@ EndSplineSet EndChar StartChar: uni093D -Encoding: 547 2365 547 +Encoding: 2365 2365 545 GlifName: uni093D_ Width: 2048 VWidth: 0 @@ -20659,7 +20629,7 @@ EndSplineSet EndChar StartChar: uni093E -Encoding: 548 2366 548 +Encoding: 2366 2366 546 GlifName: uni093E_ Width: 2048 VWidth: 0 @@ -20681,7 +20651,7 @@ EndSplineSet EndChar StartChar: uni093E_uni0930_uni094D.abvs -Encoding: 549 -1 549 +Encoding: 65660 -1 547 GlifName: uni093E__uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -20719,7 +20689,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni093E uni0 EndChar StartChar: uni093F -Encoding: 550 2367 550 +Encoding: 2367 2367 548 GlifName: uni093F_ Width: 2048 VWidth: 0 @@ -20751,7 +20721,7 @@ EndSplineSet EndChar StartChar: uni0940 -Encoding: 551 2368 551 +Encoding: 2368 2368 549 GlifName: uni0940 Width: 2048 VWidth: 0 @@ -20783,7 +20753,7 @@ EndSplineSet EndChar StartChar: uni0940_uni0902.abvs -Encoding: 552 -1 552 +Encoding: 65661 -1 550 GlifName: uni0940_uni0902.abvs Width: 2048 VWidth: 0 @@ -20821,7 +20791,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0940 uni0 EndChar StartChar: uni0940_uni0930_uni094D.abvs -Encoding: 553 -1 553 +Encoding: 65662 -1 551 GlifName: uni0940_uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -20869,7 +20839,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0940 uni0 EndChar StartChar: uni0941 -Encoding: 554 2369 554 +Encoding: 2369 2369 552 GlifName: uni0941 Width: 2048 VWidth: 0 @@ -20902,7 +20872,7 @@ EndSplineSet EndChar StartChar: uni0942 -Encoding: 555 2370 555 +Encoding: 2370 2370 553 GlifName: uni0942 Width: 2048 VWidth: 0 @@ -20935,7 +20905,7 @@ EndSplineSet EndChar StartChar: uni0943 -Encoding: 556 2371 556 +Encoding: 2371 2371 554 GlifName: uni0943 Width: 2048 VWidth: 0 @@ -20963,7 +20933,7 @@ EndSplineSet EndChar StartChar: uni0944 -Encoding: 557 2372 557 +Encoding: 2372 2372 555 GlifName: uni0944 Width: 2048 VWidth: 0 @@ -20996,7 +20966,7 @@ EndSplineSet EndChar StartChar: uni0945 -Encoding: 558 2373 558 +Encoding: 2373 2373 556 GlifName: uni0945 Width: 2048 VWidth: 0 @@ -21028,7 +20998,7 @@ EndSplineSet EndChar StartChar: uni0945_uni0902.abvs -Encoding: 559 -1 559 +Encoding: 65663 -1 557 GlifName: uni0945_uni0902.abvs Width: 2048 VWidth: 0 @@ -21066,7 +21036,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0945 uni0 EndChar StartChar: uni0945_uni0930_uni094D.abvs -Encoding: 560 -1 560 +Encoding: 65664 -1 558 GlifName: uni0945_uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -21114,7 +21084,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0945 uni0 EndChar StartChar: uni0946 -Encoding: 561 2374 561 +Encoding: 2374 2374 559 GlifName: uni0946 Width: 2048 VWidth: 0 @@ -21146,7 +21116,7 @@ EndSplineSet EndChar StartChar: uni0946_uni0902.abvs -Encoding: 562 -1 562 +Encoding: 65665 -1 560 GlifName: uni0946_uni0902.abvs Width: 2048 VWidth: 0 @@ -21184,7 +21154,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0946 uni0 EndChar StartChar: uni0946_uni0930_uni094D.abvs -Encoding: 563 -1 563 +Encoding: 65666 -1 561 GlifName: uni0946_uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -21232,7 +21202,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0946 uni0 EndChar StartChar: uni0947 -Encoding: 564 2375 564 +Encoding: 2375 2375 562 GlifName: uni0947 Width: 2048 VWidth: 0 @@ -21254,7 +21224,7 @@ EndSplineSet EndChar StartChar: uni0947_uni0902.abvs -Encoding: 565 -1 565 +Encoding: 65667 -1 563 GlifName: uni0947_uni0902.abvs Width: 2048 VWidth: 0 @@ -21282,7 +21252,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0947 uni0 EndChar StartChar: uni0947_uni0930_uni094D.abvs -Encoding: 566 -1 566 +Encoding: 65668 -1 564 GlifName: uni0947_uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -21320,7 +21290,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0947 uni0 EndChar StartChar: uni0948 -Encoding: 567 2376 567 +Encoding: 2376 2376 565 GlifName: uni0948 Width: 2048 VWidth: 0 @@ -21347,7 +21317,7 @@ EndSplineSet EndChar StartChar: uni0948_uni0902.abvs -Encoding: 568 -1 568 +Encoding: 65669 -1 566 GlifName: uni0948_uni0902.abvs Width: 2048 VWidth: 0 @@ -21380,7 +21350,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0948 uni0 EndChar StartChar: uni0948_uni0930_uni094D.abvs -Encoding: 569 -1 569 +Encoding: 65670 -1 567 GlifName: uni0948_uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -21423,7 +21393,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0948 uni0 EndChar StartChar: uni0949 -Encoding: 570 2377 570 +Encoding: 2377 2377 568 GlifName: uni0949 Width: 2048 VWidth: 0 @@ -21460,7 +21430,7 @@ EndSplineSet EndChar StartChar: uni0949_uni0902.abvs -Encoding: 571 -1 571 +Encoding: 65671 -1 569 GlifName: uni0949_uni0902.abvs Width: 2048 VWidth: 0 @@ -21503,7 +21473,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0949 uni0 EndChar StartChar: uni0949_uni0930_uni094D.abvs -Encoding: 572 -1 572 +Encoding: 65672 -1 570 GlifName: uni0949_uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -21556,7 +21526,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni0949 uni0 EndChar StartChar: uni094A -Encoding: 573 2378 573 +Encoding: 2378 2378 571 GlifName: uni094A_ Width: 2048 VWidth: 0 @@ -21593,7 +21563,7 @@ EndSplineSet EndChar StartChar: uni094A_uni0902.abvs -Encoding: 574 -1 574 +Encoding: 65673 -1 572 GlifName: uni094A__uni0902.abvs Width: 2048 VWidth: 0 @@ -21636,7 +21606,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094A uni0 EndChar StartChar: uni094A_uni0930_uni094D.abvs -Encoding: 575 -1 575 +Encoding: 65674 -1 573 GlifName: uni094A__uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -21689,7 +21659,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094A uni0 EndChar StartChar: uni094B -Encoding: 576 2379 576 +Encoding: 2379 2379 574 GlifName: uni094B_ Width: 2048 VWidth: 0 @@ -21716,7 +21686,7 @@ EndSplineSet EndChar StartChar: uni094B_uni0902.abvs -Encoding: 577 -1 577 +Encoding: 65675 -1 575 GlifName: uni094B__uni0902.abvs Width: 2048 VWidth: 0 @@ -21749,7 +21719,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094B uni0 EndChar StartChar: uni094B_uni0930_uni094D.abvs -Encoding: 578 -1 578 +Encoding: 65676 -1 576 GlifName: uni094B__uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -21792,7 +21762,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094B uni0 EndChar StartChar: uni094C -Encoding: 579 2380 579 +Encoding: 2380 2380 577 GlifName: uni094C_ Width: 2048 VWidth: 0 @@ -21824,7 +21794,7 @@ EndSplineSet EndChar StartChar: uni094C_uni0902.abvs -Encoding: 580 -1 580 +Encoding: 65677 -1 578 GlifName: uni094C__uni0902.abvs Width: 2048 VWidth: 0 @@ -21862,7 +21832,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094C uni0 EndChar StartChar: uni094C_uni0930_uni094D.abvs -Encoding: 581 -1 581 +Encoding: 65678 -1 579 GlifName: uni094C__uni0930_uni094D_.abvs Width: 2048 VWidth: 0 @@ -21910,7 +21880,7 @@ Ligature2: "abvsAboveBaseSubstitutionsinDevanagarilookup0 subtable" uni094C uni0 EndChar StartChar: uni094D -Encoding: 582 2381 582 +Encoding: 2381 2381 580 GlifName: uni094D_ Width: 2048 VWidth: 0 @@ -21933,7 +21903,7 @@ EndSplineSet EndChar StartChar: uni094E -Encoding: 583 2382 583 +Encoding: 2382 2382 581 GlifName: uni094E_ Width: 2048 VWidth: 0 @@ -21955,7 +21925,7 @@ EndSplineSet EndChar StartChar: uni094F -Encoding: 584 2383 584 +Encoding: 2383 2383 582 GlifName: uni094F_ Width: 2048 VWidth: 0 @@ -22007,7 +21977,7 @@ EndSplineSet EndChar StartChar: uni0950 -Encoding: 585 2384 585 +Encoding: 2384 2384 583 GlifName: uni0950 Width: 2048 VWidth: 0 @@ -22064,7 +22034,7 @@ EndSplineSet EndChar StartChar: uni0951 -Encoding: 586 2385 586 +Encoding: 2385 2385 584 GlifName: uni0951 Width: 2048 VWidth: 0 @@ -22082,7 +22052,7 @@ EndSplineSet EndChar StartChar: uni0952 -Encoding: 587 2386 587 +Encoding: 2386 2386 585 GlifName: uni0952 Width: 2048 VWidth: 0 @@ -22100,7 +22070,7 @@ EndSplineSet EndChar StartChar: uni0953 -Encoding: 588 2387 588 +Encoding: 2387 2387 586 GlifName: uni0953 Width: 2048 VWidth: 0 @@ -22118,7 +22088,7 @@ EndSplineSet EndChar StartChar: uni0954 -Encoding: 589 2388 589 +Encoding: 2388 2388 587 GlifName: uni0954 Width: 2048 VWidth: 0 @@ -22136,7 +22106,7 @@ EndSplineSet EndChar StartChar: uni0955 -Encoding: 590 2389 590 +Encoding: 2389 2389 588 GlifName: uni0955 Width: 2048 VWidth: 0 @@ -22173,7 +22143,7 @@ EndSplineSet EndChar StartChar: uni0956 -Encoding: 591 2390 591 +Encoding: 2390 2390 589 GlifName: uni0956 Width: 2048 VWidth: 0 @@ -22205,7 +22175,7 @@ EndSplineSet EndChar StartChar: uni0957 -Encoding: 592 2391 592 +Encoding: 2391 2391 590 GlifName: uni0957 Width: 2048 VWidth: 0 @@ -22252,7 +22222,7 @@ EndSplineSet EndChar StartChar: uni0958 -Encoding: 593 2392 593 +Encoding: 2392 2392 591 GlifName: uni0958 Width: 2048 VWidth: 0 @@ -22305,7 +22275,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0915 uni093C EndChar StartChar: uni0958_uni0930_uni094D.vatu -Encoding: 594 -1 594 +Encoding: 65679 -1 592 GlifName: uni0958_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -22363,7 +22333,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0958 uni0930_uni09 EndChar StartChar: uni0958_uni094D.half -Encoding: 595 -1 595 +Encoding: 65680 -1 593 GlifName: uni0958_uni094D_.half Width: 2048 VWidth: 0 @@ -22411,7 +22381,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0958 uni094D EndChar StartChar: uni0958_uni094D.haln -Encoding: 596 -1 596 +Encoding: 65681 -1 594 GlifName: uni0958_uni094D_.haln Width: 2048 VWidth: 0 @@ -22474,7 +22444,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0958 uni094D EndChar StartChar: uni0959 -Encoding: 597 2393 597 +Encoding: 2393 2393 595 GlifName: uni0959 Width: 2048 VWidth: 0 @@ -22532,7 +22502,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0916 uni093C EndChar StartChar: uni0959_uni0930_uni094D.vatu -Encoding: 598 -1 598 +Encoding: 65682 -1 596 GlifName: uni0959_uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -22595,7 +22565,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni0959 uni0930_uni09 EndChar StartChar: uni0959_uni094D.half -Encoding: 599 -1 599 +Encoding: 65683 -1 597 GlifName: uni0959_uni094D_.half Width: 2048 VWidth: 0 @@ -22648,7 +22618,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni0959 uni094D EndChar StartChar: uni0959_uni094D.haln -Encoding: 600 -1 600 +Encoding: 65684 -1 598 GlifName: uni0959_uni094D_.haln Width: 2048 VWidth: 0 @@ -22716,7 +22686,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni0959 uni094D EndChar StartChar: uni095A -Encoding: 601 2394 601 +Encoding: 2394 2394 599 GlifName: uni095A_ Width: 2048 VWidth: 0 @@ -22759,7 +22729,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0917 uni093C EndChar StartChar: uni095A_uni0930_uni094D.vatu -Encoding: 602 -1 602 +Encoding: 65685 -1 600 GlifName: uni095A__uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -22807,7 +22777,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095A uni0930_uni09 EndChar StartChar: uni095A_uni094D.half -Encoding: 603 -1 603 +Encoding: 65686 -1 601 GlifName: uni095A__uni094D_.half Width: 2048 VWidth: 0 @@ -22845,7 +22815,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni095A uni094D EndChar StartChar: uni095A_uni094D.haln -Encoding: 604 -1 604 +Encoding: 65687 -1 602 GlifName: uni095A__uni094D_.haln Width: 2048 VWidth: 0 @@ -22898,7 +22868,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095A uni094D EndChar StartChar: uni095B -Encoding: 605 2395 605 +Encoding: 2395 2395 603 GlifName: uni095B_ Width: 2048 VWidth: 0 @@ -22946,7 +22916,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni091C uni093C EndChar StartChar: uni095B_uni0930_uni094D.vatu -Encoding: 606 -1 606 +Encoding: 65688 -1 604 GlifName: uni095B__uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -22999,7 +22969,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095B uni0930_uni09 EndChar StartChar: uni095B_uni094D.half -Encoding: 607 -1 607 +Encoding: 65689 -1 605 GlifName: uni095B__uni094D_.half Width: 2048 VWidth: 0 @@ -23042,7 +23012,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni095B uni094D EndChar StartChar: uni095B_uni094D.haln -Encoding: 608 -1 608 +Encoding: 65690 -1 606 GlifName: uni095B__uni094D_.haln Width: 2048 VWidth: 0 @@ -23100,7 +23070,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095B uni094D EndChar StartChar: uni095C -Encoding: 609 2396 609 +Encoding: 2396 2396 607 GlifName: uni095C_ Width: 2048 VWidth: 0 @@ -23158,7 +23128,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0921 uni093C EndChar StartChar: uni095C_uni0930_uni094D.vatu -Encoding: 610 -1 610 +Encoding: 65691 -1 608 GlifName: uni095C__uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -23226,7 +23196,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095C uni0930_uni09 EndChar StartChar: uni095C_uni094D.haln -Encoding: 611 -1 611 +Encoding: 65692 -1 609 GlifName: uni095C__uni094D_.haln Width: 2048 VWidth: 0 @@ -23294,7 +23264,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095C uni094D EndChar StartChar: uni095D -Encoding: 612 2397 612 +Encoding: 2397 2397 610 GlifName: uni095D_ Width: 2048 VWidth: 0 @@ -23347,7 +23317,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni0922 uni093C EndChar StartChar: uni095D_uni0930_uni094D.vatu -Encoding: 613 -1 613 +Encoding: 65693 -1 611 GlifName: uni095D__uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -23410,7 +23380,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095D uni0930_uni09 EndChar StartChar: uni095D_uni094D.haln -Encoding: 614 -1 614 +Encoding: 65694 -1 612 GlifName: uni095D__uni094D_.haln Width: 2048 VWidth: 0 @@ -23473,7 +23443,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095D uni094D EndChar StartChar: uni095E -Encoding: 615 2398 615 +Encoding: 2398 2398 613 GlifName: uni095E_ Width: 2048 VWidth: 0 @@ -23516,7 +23486,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni092B uni093C EndChar StartChar: uni095E_uni0930_uni094D.vatu -Encoding: 616 -1 616 +Encoding: 65695 -1 614 GlifName: uni095E__uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -23564,7 +23534,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095E uni0930_uni09 EndChar StartChar: uni095E_uni094D.half -Encoding: 617 -1 617 +Encoding: 65696 -1 615 GlifName: uni095E__uni094D_.half Width: 2048 VWidth: 0 @@ -23602,7 +23572,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni095E uni094D EndChar StartChar: uni095E_uni094D.haln -Encoding: 618 -1 618 +Encoding: 65697 -1 616 GlifName: uni095E__uni094D_.haln Width: 2048 VWidth: 0 @@ -23655,7 +23625,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095E uni094D EndChar StartChar: uni095F -Encoding: 619 2399 619 +Encoding: 2399 2399 617 GlifName: uni095F_ Width: 2048 VWidth: 0 @@ -23698,7 +23668,7 @@ Ligature2: "nuktNuktaFormsinDevanagarilookup0 subtable" uni092F uni093C EndChar StartChar: uni095F_uni0930_uni094D.vatu -Encoding: 620 -1 620 +Encoding: 65698 -1 618 GlifName: uni095F__uni0930_uni094D_.vatu Width: 2048 VWidth: 0 @@ -23746,7 +23716,7 @@ Ligature2: "vatuVattuVariantsinDevanagarilookup0 subtable" uni095F uni0930_uni09 EndChar StartChar: uni095F_uni094D.half -Encoding: 621 -1 621 +Encoding: 65699 -1 619 GlifName: uni095F__uni094D_.half Width: 2048 VWidth: 0 @@ -23799,7 +23769,7 @@ Ligature2: "halfHalfFormsinDevanagarilookup0 subtable" uni095F uni094D EndChar StartChar: uni095F_uni094D.haln -Encoding: 622 -1 622 +Encoding: 65700 -1 620 GlifName: uni095F__uni094D_.haln Width: 2048 VWidth: 0 @@ -23852,7 +23822,7 @@ Ligature2: "halnHalantFormsinDevanagarilookup0 subtable" uni095F uni094D EndChar StartChar: uni0960 -Encoding: 623 2400 623 +Encoding: 2400 2400 621 GlifName: uni0960 Width: 2048 VWidth: 0 @@ -23909,7 +23879,7 @@ EndSplineSet EndChar StartChar: uni0961 -Encoding: 624 2401 624 +Encoding: 2401 2401 622 GlifName: uni0961 Width: 2048 VWidth: 0 @@ -23961,7 +23931,7 @@ EndSplineSet EndChar StartChar: uni0962 -Encoding: 625 2402 625 +Encoding: 2402 2402 623 GlifName: uni0962 Width: 2048 VWidth: 0 @@ -24003,7 +23973,7 @@ EndSplineSet EndChar StartChar: uni0963 -Encoding: 626 2403 626 +Encoding: 2403 2403 624 GlifName: uni0963 Width: 2048 VWidth: 0 @@ -24050,7 +24020,7 @@ EndSplineSet EndChar StartChar: uni0964 -Encoding: 627 2404 627 +Encoding: 2404 2404 625 GlifName: uni0964 Width: 2048 VWidth: 0 @@ -24067,7 +24037,7 @@ EndSplineSet EndChar StartChar: uni0965 -Encoding: 628 2405 628 +Encoding: 2405 2405 626 GlifName: uni0965 Width: 2048 VWidth: 0 @@ -24089,7 +24059,7 @@ EndSplineSet EndChar StartChar: uni0966 -Encoding: 629 2406 629 +Encoding: 2406 2406 627 GlifName: uni0966 Width: 2048 VWidth: 0 @@ -24121,7 +24091,7 @@ EndSplineSet EndChar StartChar: uni0967 -Encoding: 630 2407 630 +Encoding: 2407 2407 628 GlifName: uni0967 Width: 2048 VWidth: 0 @@ -24153,7 +24123,7 @@ EndSplineSet EndChar StartChar: uni0968 -Encoding: 631 2408 631 +Encoding: 2408 2408 629 GlifName: uni0968 Width: 2048 VWidth: 0 @@ -24190,7 +24160,7 @@ EndSplineSet EndChar StartChar: uni0969 -Encoding: 632 2409 632 +Encoding: 2409 2409 630 GlifName: uni0969 Width: 2048 VWidth: 0 @@ -24227,7 +24197,7 @@ EndSplineSet EndChar StartChar: uni096A -Encoding: 633 2410 633 +Encoding: 2410 2410 631 GlifName: uni096A_ Width: 2048 VWidth: 0 @@ -24274,7 +24244,7 @@ EndSplineSet EndChar StartChar: uni096B -Encoding: 634 2411 634 +Encoding: 2411 2411 632 GlifName: uni096B_ Width: 2048 VWidth: 0 @@ -24306,7 +24276,7 @@ EndSplineSet EndChar StartChar: uni096C -Encoding: 635 2412 635 +Encoding: 2412 2412 633 GlifName: uni096C_ Width: 2048 VWidth: 0 @@ -24343,7 +24313,7 @@ EndSplineSet EndChar StartChar: uni096D -Encoding: 636 2413 636 +Encoding: 2413 2413 634 GlifName: uni096D_ Width: 2048 VWidth: 0 @@ -24380,7 +24350,7 @@ EndSplineSet EndChar StartChar: uni096E -Encoding: 637 2414 637 +Encoding: 2414 2414 635 GlifName: uni096E_ Width: 2048 VWidth: 0 @@ -24407,7 +24377,7 @@ EndSplineSet EndChar StartChar: uni096F -Encoding: 638 2415 638 +Encoding: 2415 2415 636 GlifName: uni096F_ Width: 2048 VWidth: 0 @@ -24444,7 +24414,7 @@ EndSplineSet EndChar StartChar: uni0970 -Encoding: 639 2416 639 +Encoding: 2416 2416 637 GlifName: uni0970 Width: 2048 VWidth: 0 @@ -24461,7 +24431,7 @@ EndSplineSet EndChar StartChar: uni0971 -Encoding: 640 2417 640 +Encoding: 2417 2417 638 GlifName: uni0971 Width: 2048 VWidth: 0 @@ -24478,7 +24448,7 @@ EndSplineSet EndChar StartChar: uni0972 -Encoding: 641 2418 641 +Encoding: 2418 2418 639 GlifName: uni0972 Width: 2048 VWidth: 0 @@ -24535,7 +24505,7 @@ EndSplineSet EndChar StartChar: uni0973 -Encoding: 642 2419 642 +Encoding: 2419 2419 640 GlifName: uni0973 Width: 2048 VWidth: 0 @@ -24582,7 +24552,7 @@ EndSplineSet EndChar StartChar: uni0974 -Encoding: 643 2420 643 +Encoding: 2420 2420 641 GlifName: uni0974 Width: 2048 VWidth: 0 @@ -24629,7 +24599,7 @@ EndSplineSet EndChar StartChar: uni0975 -Encoding: 644 2421 644 +Encoding: 2421 2421 642 GlifName: uni0975 Width: 2048 VWidth: 0 @@ -24701,7 +24671,7 @@ EndSplineSet EndChar StartChar: uni0976 -Encoding: 645 2422 645 +Encoding: 2422 2422 643 GlifName: uni0976 Width: 2048 VWidth: 0 @@ -24758,7 +24728,7 @@ EndSplineSet EndChar StartChar: uni0977 -Encoding: 646 2423 646 +Encoding: 2423 2423 644 GlifName: uni0977 Width: 2048 VWidth: 0 @@ -24830,7 +24800,7 @@ EndSplineSet EndChar StartChar: uni0978 -Encoding: 647 2424 647 +Encoding: 2424 2424 645 GlifName: uni0978 Width: 2048 VWidth: 0 @@ -24862,7 +24832,7 @@ EndSplineSet EndChar StartChar: uni0979 -Encoding: 648 2425 648 +Encoding: 2425 2425 646 GlifName: uni0979 Width: 2048 VWidth: 0 @@ -24919,7 +24889,7 @@ EndSplineSet EndChar StartChar: uni097A -Encoding: 649 2426 649 +Encoding: 2426 2426 647 GlifName: uni097A_ Width: 2048 VWidth: 0 @@ -24961,7 +24931,7 @@ EndSplineSet EndChar StartChar: uni097B -Encoding: 650 2427 650 +Encoding: 2427 2427 648 GlifName: uni097B_ Width: 2048 VWidth: 0 @@ -25003,7 +24973,7 @@ EndSplineSet EndChar StartChar: uni097C -Encoding: 651 2428 651 +Encoding: 2428 2428 649 GlifName: uni097C_ Width: 2048 VWidth: 0 @@ -25050,7 +25020,7 @@ EndSplineSet EndChar StartChar: uni097D -Encoding: 652 2429 652 +Encoding: 2429 2429 650 GlifName: uni097D_ Width: 2048 VWidth: 0 @@ -25082,7 +25052,7 @@ EndSplineSet EndChar StartChar: uni097E -Encoding: 653 2430 653 +Encoding: 2430 2430 651 GlifName: uni097E_ Width: 2048 VWidth: 0 @@ -25129,7 +25099,7 @@ EndSplineSet EndChar StartChar: uni097F -Encoding: 654 2431 654 +Encoding: 2431 2431 652 GlifName: uni097F_ Width: 2048 VWidth: 0 @@ -25176,415 +25146,415 @@ EndSplineSet EndChar StartChar: uni1E0C -Encoding: 655 7692 655 +Encoding: 7692 7692 653 GlifName: uni1E_0C_ Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 19 68 N 1 0 0 1 0 0 2 -Refer: 170 803 N 1 0 0 1 -315 168 2 +Refer: 170 803 N 1 0 0 1 -346 168 2 +Refer: 19 68 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E0D -Encoding: 656 7693 656 +Encoding: 7693 7693 654 GlifName: uni1E_0D_ Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 160 100 N 1 0 0 1 0 0 2 -Refer: 170 803 N 1 0 0 1 118 164 2 +Refer: 170 803 N 1 0 0 1 -4 164 2 +Refer: 160 100 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E34 -Encoding: 657 7732 657 +Encoding: 7732 7732 655 GlifName: uni1E_34 Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 56 75 N 1 0 0 1 0 0 2 -Refer: 360 817 N 1 0 0 1 32 83 2 +Refer: 360 817 N 1 0 0 1 1851 82 2 +Refer: 56 75 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E35 -Encoding: 658 7733 658 +Encoding: 7733 7733 656 GlifName: uni1E_35 Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 225 107 N 1 0 0 1 0 0 2 -Refer: 360 817 N 1 0 0 1 6 82 2 +Refer: 360 817 N 1 0 0 1 1929.5 82 2 +Refer: 225 107 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E36 -Encoding: 659 7734 659 +Encoding: 7734 7734 657 GlifName: uni1E_36 Width: 2048 VWidth: 0 Flags: W LayerCount: 2 Fore -Refer: 57 76 N 1 0 0 1 0 0 2 -Refer: 170 803 N 1 0 0 1 0 168 2 +Refer: 170 803 N 1 0 0 1 -2 168 2 +Refer: 57 76 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E37 -Encoding: 660 7735 660 +Encoding: 7735 7735 658 GlifName: uni1E_37 Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 226 108 N 1 0 0 1 0 0 2 -Refer: 170 803 N 1 0 0 1 0 169 2 +Refer: 170 803 N 1 0 0 1 0 168 2 +Refer: 226 108 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E38 -Encoding: 661 7736 661 +Encoding: 7736 7736 659 GlifName: uni1E_38 Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 659 7734 N 1 0 0 1 0 0 2 -Refer: 349 772 N 1 0 0 1 -790 124 2 +Refer: 349 772 N 1 0 0 1 160 125 2 +Refer: 657 7734 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E39 -Encoding: 662 7737 662 +Encoding: 7737 7737 660 GlifName: uni1E_39 Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 660 7735 N 1 0 0 1 0 0 2 -Refer: 349 772 N 1 0 0 1 -75 123 2 +Refer: 349 772 N 1 0 0 1 667 125 2 +Refer: 658 7735 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E3A -Encoding: 663 7738 663 +Encoding: 7738 7738 661 GlifName: uni1E_3A_ Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 57 76 N 1 0 0 1 0 0 2 -Refer: 360 817 N 1 0 0 1 0 82 2 +Refer: 360 817 N 1 0 0 1 1022 82 2 +Refer: 57 76 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E3B -Encoding: 664 7739 664 +Encoding: 7739 7739 662 GlifName: uni1E_3B_ Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 226 108 N 1 0 0 1 0 0 2 -Refer: 360 817 N 1 0 0 1 0 83 2 +Refer: 360 817 N 1 0 0 1 1024 82 2 +Refer: 226 108 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E42 -Encoding: 665 7746 665 +Encoding: 7746 7746 663 GlifName: uni1E_42 Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 62 77 N 1 0 0 1 0 0 2 -Refer: 170 803 N 1 0 0 1 73 165 2 +Refer: 170 803 N 1 0 0 1 893 165 2 +Refer: 62 77 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E43 -Encoding: 666 7747 666 +Encoding: 7747 7747 664 GlifName: uni1E_43 Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 233 109 N 1 0 0 1 0 0 2 -Refer: 170 803 N 1 0 0 1 36 166 2 +Refer: 170 803 N 1 0 0 1 137 168 2 +Refer: 233 109 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E44 -Encoding: 667 7748 667 +Encoding: 7748 7748 665 GlifName: uni1E_44 Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 63 78 N 1 0 0 1 0 0 2 -Refer: 352 775 N 1 0 0 1 -14 40 2 +Refer: 352 775 N 1 0 0 1 524 118 2 +Refer: 63 78 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E45 -Encoding: 668 7749 668 +Encoding: 7749 7749 666 GlifName: uni1E_45 Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 238 110 N 1 0 0 1 0 0 2 -Refer: 352 775 N 1 0 0 1 0 -488 2 +Refer: 352 775 N 1 0 0 1 528 -366 2 +Refer: 238 110 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E46 -Encoding: 669 7750 669 +Encoding: 7750 7750 667 GlifName: uni1E_46 Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 63 78 N 1 0 0 1 0 0 2 -Refer: 170 803 N 1 0 0 1 -4 167 2 +Refer: 170 803 N 1 0 0 1 322 173 2 +Refer: 63 78 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E47 -Encoding: 670 7751 670 +Encoding: 7751 7751 668 GlifName: uni1E_47 Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 238 110 N 1 0 0 1 0 0 2 -Refer: 170 803 N 1 0 0 1 208 166 2 +Refer: 170 803 N 1 0 0 1 190 168 2 +Refer: 238 110 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E48 -Encoding: 671 7752 671 +Encoding: 7752 7752 669 GlifName: uni1E_48 Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 63 78 N 1 0 0 1 0 0 2 -Refer: 360 817 N 1 0 0 1 -76 81 2 +Refer: 360 817 N 1 0 0 1 1334 149 2 +Refer: 63 78 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E49 -Encoding: 672 7753 672 +Encoding: 7753 7753 670 GlifName: uni1E_49 Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 238 110 N 1 0 0 1 0 0 2 -Refer: 360 817 N 1 0 0 1 208 80 2 +Refer: 360 817 N 1 0 0 1 1214 82 2 +Refer: 238 110 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E4C -Encoding: 673 7756 673 +Encoding: 7756 7756 671 GlifName: uni1E_4C_ Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 77 213 N 1 0 0 1 0 0 2 -Refer: 123 769 N 1 0 0 1 -12 1262 2 +Refer: 123 769 N 1 0 0 1 861 1226 2 +Refer: 77 213 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E4D -Encoding: 674 7757 674 +Encoding: 7757 7757 672 GlifName: uni1E_4D_ Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 260 245 N 1 0 0 1 0 0 2 -Refer: 123 769 N 1 0 0 1 73 688 2 +Refer: 123 769 N 1 0 0 1 909 738 2 +Refer: 260 245 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E58 -Encoding: 675 7768 675 +Encoding: 7768 7768 673 GlifName: uni1E_58 Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 80 82 N 1 0 0 1 0 0 2 -Refer: 352 775 N 1 0 0 1 12 39 2 +Refer: 352 775 N 1 0 0 1 516 118 2 +Refer: 80 82 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E59 -Encoding: 676 7769 676 +Encoding: 7769 7769 674 GlifName: uni1E_59 Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 282 114 N 1 0 0 1 0 0 2 -Refer: 352 775 N 1 0 0 1 0 -491 2 +Refer: 352 775 N 1 0 0 1 540 -350 2 +Refer: 282 114 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E5A -Encoding: 677 7770 677 +Encoding: 7770 7770 675 GlifName: uni1E_5A_ Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 80 82 N 1 0 0 1 0 0 2 -Refer: 170 803 N 1 0 0 1 -52 167 2 +Refer: 170 803 N 1 0 0 1 0 168 2 +Refer: 80 82 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E5B -Encoding: 678 7771 678 +Encoding: 7771 7771 676 GlifName: uni1E_5B_ Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 282 114 N 1 0 0 1 0 0 2 -Refer: 170 803 N 1 0 0 1 -122 166 2 +Refer: 170 803 N 1 0 0 1 2 117 2 +Refer: 282 114 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E5C -Encoding: 679 7772 679 +Encoding: 7772 7772 677 GlifName: uni1E_5C_ Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 677 7770 N 1 0 0 1 0 0 2 -Refer: 349 772 N 1 0 0 1 12 124 2 +Refer: 349 772 N 1 0 0 1 1015 125 2 +Refer: 675 7770 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E5D -Encoding: 680 7773 680 +Encoding: 7773 7773 678 GlifName: uni1E_5D_ Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 678 7771 N 1 0 0 1 0 0 2 -Refer: 349 772 N 1 0 0 1 0 -403 2 +Refer: 349 772 N 1 0 0 1 1024 -405 2 +Refer: 676 7771 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E5E -Encoding: 681 7774 681 +Encoding: 7774 7774 679 GlifName: uni1E_5E_ Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 80 82 N 1 0 0 1 0 0 2 -Refer: 360 817 N 1 0 0 1 -52 81 2 +Refer: 360 817 N 1 0 0 1 1024 82 2 +Refer: 80 82 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E5F -Encoding: 682 7775 682 +Encoding: 7775 7775 680 GlifName: uni1E_5F_ Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 282 114 N 1 0 0 1 0 0 2 -Refer: 360 817 N 1 0 0 1 -122 80 2 +Refer: 360 817 N 1 0 0 1 1014 93 2 +Refer: 282 114 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E62 -Encoding: 683 7778 683 +Encoding: 7778 7778 681 GlifName: uni1E_62 Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 83 83 N 1 0 0 1 0 0 2 -Refer: 170 803 N 1 0 0 1 14 168 2 +Refer: 170 803 N 1 0 0 1 30 129 2 +Refer: 83 83 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E63 -Encoding: 684 7779 684 +Encoding: 7779 7779 682 GlifName: uni1E_63 Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 287 115 N 1 0 0 1 0 0 2 -Refer: 170 803 N 1 0 0 1 -2 168 2 +Refer: 170 803 N 1 0 0 1 14 121 2 +Refer: 287 115 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E6C -Encoding: 685 7788 685 +Encoding: 7788 7788 683 GlifName: uni1E_6C_ Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 88 84 N 1 0 0 1 0 0 2 -Refer: 170 803 N 1 0 0 1 72 180 2 +Refer: 170 803 N 1 0 0 1 -6 133 2 +Refer: 88 84 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E6D -Encoding: 686 7789 686 +Encoding: 7789 7789 684 GlifName: uni1E_6D_ Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 299 116 N 1 0 0 1 0 0 2 -Refer: 170 803 N 1 0 0 1 410 168 2 +Refer: 170 803 N 1 0 0 1 2 105 2 +Refer: 299 116 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E8E -Encoding: 687 7822 687 +Encoding: 7822 7822 685 GlifName: uni1E_8E_ Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 109 89 N 1 0 0 1 0 0 2 -Refer: 352 775 N 1 0 0 1 42 39 2 +Refer: 352 775 N 1 0 0 1 560 114 2 +Refer: 109 89 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E8F -Encoding: 688 7823 688 +Encoding: 7823 7823 686 GlifName: uni1E_8F_ Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 707 121 N 1 0 0 1 0 0 2 -Refer: 352 775 N 1 0 0 1 0 -488 2 +Refer: 352 775 N 1 0 0 1 564 -382 2 +Refer: 705 121 N 1 0 0 1 0 0 3 EndChar StartChar: uni1E9E -Encoding: 689 7838 689 +Encoding: 7838 7838 687 GlifName: uni1E_9E_ Width: 2048 VWidth: 0 @@ -25626,7 +25596,7 @@ EndSplineSet EndChar StartChar: uni200C -Encoding: 690 8204 690 +Encoding: 8204 8204 688 GlifName: uni200C_ Width: 2048 VWidth: 0 @@ -25648,7 +25618,7 @@ EndSplineSet EndChar StartChar: uni200D -Encoding: 691 8205 691 +Encoding: 8205 8205 689 GlifName: uni200D_ Width: 2048 VWidth: 0 @@ -25665,7 +25635,7 @@ EndSplineSet EndChar StartChar: uni2044 -Encoding: 692 8260 692 +Encoding: 8260 8260 690 GlifName: uni2044 Width: 2048 VWidth: 0 @@ -25682,7 +25652,7 @@ EndSplineSet EndChar StartChar: uni20B9 -Encoding: 693 8377 693 +Encoding: 8377 8377 691 GlifName: uni20B_9 Width: 2048 VWidth: 0 @@ -25719,7 +25689,7 @@ EndSplineSet EndChar StartChar: uni25CC -Encoding: 694 9676 694 +Encoding: 9676 9676 692 GlifName: uni25C_C_ Width: 2048 VWidth: 0 @@ -25773,7 +25743,7 @@ EndSplineSet EndChar StartChar: uniFB01 -Encoding: 695 64257 695 +Encoding: 64257 64257 693 GlifName: uniF_B_01 Width: 2048 VWidth: 0 @@ -25811,7 +25781,7 @@ Ligature2: "dligDiscretionaryLigatureslookup0 subtable" f i EndChar StartChar: uniFB02 -Encoding: 696 64258 696 +Encoding: 64258 64258 694 GlifName: uniF_B_02 Width: 2048 VWidth: 0 @@ -25854,43 +25824,43 @@ Ligature2: "dligDiscretionaryLigatureslookup0 subtable" f l EndChar StartChar: uogonek -Encoding: 697 371 697 +Encoding: 371 371 695 GlifName: uogonek Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 308 117 N 1 0 0 1 0 0 2 -Refer: 359 808 N 1 0 0 1 602 14 2 +Refer: 359 808 N 1 0 0 1 246 -73 2 +Refer: 308 117 N 1 0 0 1 0 0 3 EndChar StartChar: uring -Encoding: 698 367 698 +Encoding: 367 367 696 GlifName: uring Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 308 117 N 1 0 0 1 0 0 2 -Refer: 354 778 N 1 0 0 1 -75 -430 2 +Refer: 354 778 N 1 0 0 1 411 -390 2 +Refer: 308 117 N 1 0 0 1 0 0 3 EndChar StartChar: utilde -Encoding: 699 361 699 +Encoding: 361 361 697 GlifName: utilde Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 308 117 N 1 0 0 1 0 0 2 -Refer: 305 771 N 1 0 0 1 -61 -697 2 +Refer: 305 771 N 1 0 0 1 460 -709 2 +Refer: 308 117 N 1 0 0 1 0 0 3 EndChar StartChar: v -Encoding: 700 118 700 +Encoding: 118 118 698 GlifName: v Width: 2048 VWidth: 0 @@ -25913,7 +25883,7 @@ EndSplineSet EndChar StartChar: w -Encoding: 701 119 701 +Encoding: 119 119 699 GlifName: w Width: 2048 VWidth: 0 @@ -25946,55 +25916,55 @@ EndSplineSet EndChar StartChar: wacute -Encoding: 702 7811 702 +Encoding: 7811 7811 700 GlifName: wacute Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 701 119 N 1 0 0 1 0 0 2 -Refer: 123 769 N 1 0 0 1 56 332 2 +Refer: 123 769 N 1 0 0 1 -406 494 2 +Refer: 699 119 N 1 0 0 1 0 0 3 EndChar StartChar: wcircumflex -Encoding: 703 373 703 +Encoding: 373 373 701 GlifName: wcircumflex Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 701 119 N 1 0 0 1 0 0 2 -Refer: 348 770 N 1 0 0 1 10 -964 2 +Refer: 348 770 N 1 0 0 1 550 -293 2 +Refer: 699 119 N 1 0 0 1 0 0 3 EndChar StartChar: wdieresis -Encoding: 704 7813 704 +Encoding: 7813 7813 702 GlifName: wdieresis Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 701 119 N 1 0 0 1 0 0 2 -Refer: 353 776 N 1 0 0 1 56 -551 2 +Refer: 353 776 N 1 0 0 1 568 -226 2 +Refer: 699 119 N 1 0 0 1 0 0 3 EndChar StartChar: wgrave -Encoding: 705 7809 705 +Encoding: 7809 7809 703 GlifName: wgrave Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 701 119 N 1 0 0 1 0 0 2 -Refer: 201 768 N 1 0 0 1 55 409 2 +Refer: 201 768 N 1 0 0 1 -612 557 2 +Refer: 699 119 N 1 0 0 1 0 0 3 EndChar StartChar: x -Encoding: 706 120 706 +Encoding: 120 120 704 GlifName: x Width: 2048 VWidth: 0 @@ -26016,7 +25986,7 @@ EndSplineSet EndChar StartChar: y -Encoding: 707 121 707 +Encoding: 121 121 705 GlifName: y Width: 2048 VWidth: 0 @@ -26050,43 +26020,43 @@ EndSplineSet EndChar StartChar: yacute -Encoding: 708 253 708 +Encoding: 253 253 706 GlifName: yacute Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 707 121 N 1 0 0 1 0 0 2 -Refer: 123 769 N 1 0 0 1 80 419 2 +Refer: 123 769 N 1 0 0 1 576 432 2 +Refer: 705 121 N 1 0 0 1 0 0 3 EndChar StartChar: ycircumflex -Encoding: 709 375 709 +Encoding: 375 375 707 GlifName: ycircumflex Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 707 121 N 1 0 0 1 0 0 2 -Refer: 348 770 N 1 0 0 1 60 -661 2 +Refer: 348 770 N 1 0 0 1 562 -285 2 +Refer: 705 121 N 1 0 0 1 0 0 3 EndChar StartChar: ydieresis -Encoding: 710 255 710 +Encoding: 255 255 708 GlifName: ydieresis Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 707 121 N 1 0 0 1 0 0 2 -Refer: 353 776 N 1 0 0 1 83 -536 2 +Refer: 353 776 N 1 0 0 1 524 -450 2 +Refer: 705 121 N 1 0 0 1 0 0 3 EndChar StartChar: yen -Encoding: 711 165 711 +Encoding: 165 165 709 GlifName: yen Width: 2048 VWidth: 0 @@ -26128,19 +26098,19 @@ EndSplineSet EndChar StartChar: ygrave -Encoding: 712 7923 712 +Encoding: 7923 7923 710 GlifName: ygrave Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 707 121 N 1 0 0 1 0 0 2 -Refer: 201 768 N 1 0 0 1 -32 476 2 +Refer: 201 768 N 1 0 0 1 -600 565 2 +Refer: 705 121 N 1 0 0 1 0 0 3 EndChar StartChar: z -Encoding: 713 122 713 +Encoding: 122 122 711 GlifName: z Width: 2048 VWidth: 0 @@ -26169,43 +26139,43 @@ EndSplineSet EndChar StartChar: zacute -Encoding: 714 378 714 +Encoding: 378 378 712 GlifName: zacute Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 713 122 N 1 0 0 1 0 0 2 -Refer: 123 769 N 1 0 0 1 64 407 2 +Refer: 123 769 N 1 0 0 1 552 414 2 +Refer: 711 122 N 1 0 0 1 0 0 3 EndChar StartChar: zcaron -Encoding: 715 382 715 +Encoding: 382 382 713 GlifName: zcaron Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 713 122 N 1 0 0 1 0 0 2 -Refer: 356 780 N 1 0 0 1 96 -177 2 +Refer: 356 780 N 1 0 0 1 533 -191 2 +Refer: 711 122 N 1 0 0 1 0 0 3 EndChar StartChar: zdotaccent -Encoding: 716 380 716 +Encoding: 380 380 714 GlifName: zdotaccent Width: 2048 VWidth: 0 -Flags: W +Flags: HW LayerCount: 2 Fore -Refer: 713 122 N 1 0 0 1 0 0 2 -Refer: 352 775 N 1 0 0 1 70 -504 2 +Refer: 352 775 N 1 0 0 1 508 -418 2 +Refer: 711 122 N 1 0 0 1 0 0 3 EndChar StartChar: zero -Encoding: 717 48 717 +Encoding: 48 48 715 GlifName: zero Width: 2048 VWidth: 0 diff --git a/sources/Samaano-Wide-Thin.ufo/features.fea b/sources/Samaano-Wide-Thin.ufo/features.fea index a10791b8f..a06e0c56e 100644 --- a/sources/Samaano-Wide-Thin.ufo/features.fea +++ b/sources/Samaano-Wide-Thin.ufo/features.fea @@ -235,7 +235,7 @@ feature half { script DFLT; language dflt ; lookup halfHalfFormsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup halfHalfFormsinDevanagarilookup0; } half; @@ -243,7 +243,7 @@ feature haln { script DFLT; language dflt ; lookup halnHalantFormsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup halnHalantFormsinDevanagarilookup0; } haln; @@ -251,7 +251,7 @@ feature vatu { script DFLT; language dflt ; lookup vatuVattuVariantsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup vatuVattuVariantsinDevanagarilookup0; } vatu; @@ -259,7 +259,7 @@ feature pres { script DFLT; language dflt ; lookup presPreBaseSubstitutionsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup presPreBaseSubstitutionsinDevanagarilookup0; } pres; @@ -267,7 +267,7 @@ feature abvs { script DFLT; language dflt ; lookup abvsAboveBaseSubstitutionsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup abvsAboveBaseSubstitutionsinDevanagarilookup0; } abvs; @@ -275,7 +275,7 @@ feature blws { script DFLT; language dflt ; lookup blwsBelowBaseSubstitutionsinDevanagarilookup12; - script dev2; + script deva; language dflt ; lookup blwsBelowBaseSubstitutionsinDevanagarilookup12; } blws; @@ -288,22 +288,22 @@ feature dlig { lookup dligDiscretionaryLigatureslookup0; } dlig;@CombiningTopAccents = [acutecomb oe tildecomb uni0302 uni0304 uni0306 uni0308 uni030A uni030B uni030C]; lookup markMarkPositioninglookup0 { - markClass gravecomb @top; - markClass acutecomb @top; - markClass uni0302 @top; - markClass tildecomb @top; - markClass uni0304 @top; - markClass uni0306 @top; - markClass uni0307 @top; - markClass uni0308 @top; - markClass uni030A @top; - markClass uni030B @top; - markClass uni030C @top; - markClass dotbelowcomb @base; - markClass uni0326 @base; - markClass uni0327 @base; - markClass uni0328 @base; - markClass uni0331 @base; + markClass gravecomb @top; + markClass acutecomb @top; + markClass uni0302 @top; + markClass tildecomb @top; + markClass uni0304 @top; + markClass uni0306 @top; + markClass uni0307 @top; + markClass uni0308 @top; + markClass uni030A @top; + markClass uni030B @top; + markClass uni030C @top; + markClass dotbelowcomb @base; + markClass uni0326 @base; + markClass uni0327 @base; + markClass uni0328 @base; + markClass uni0331 @base; pos base A mark @top; pos base C mark @top; pos base D mark @top; @@ -377,9 +377,9 @@ lookup markMarkPositioninglookup0 { pos base uni25CC mark @base; } markMarkPositioninglookup0; lookup abvmAboveBaseMarkinDevanagari2lookup1 { - markClass uni0900 @abvm; - markClass uni0901 @abvm; - markClass uni0902 @abvm; + markClass uni0900 @abvm; + markClass uni0901 @abvm; + markClass uni0902 @abvm; markClass uni0951 @abvm; markClass uni0953 @abvm; markClass uni0954 @abvm; @@ -415,9 +415,8 @@ feature blwm { script dev2; language dflt ; lookup blwmBelowBaseMarkinDevanagari2lookup2; -} blwm; -@GDEF_base = [A AE Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Emacron Eng Eogonek Eth Euro F G Gbreve Gcircumflex Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek Itilde J Jcircumflex K L Lacute Lcaron Ldot Lslash M N Nacute Ncaron Ntilde O OE Oacute Obreve Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Otilde P Q R Racute Rcaron S Sacute Scaron Scedilla Scircumflex T Tcaron Thorn U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ygrave Z Zacute Zcaron Zdotaccent a aacute abreve acircumflex acute adieresis ae agrave amacron ampersand aogonek aring asciicircum asciitilde asterisk at atilde b backslash bar braceleft braceright bracketleft bracketright breve brokenbar bullet c cacute caron ccaron ccedilla ccircumflex cdotaccent cedilla cent circumflex colon comma copyright currency d dagger daggerdbl dcaron dcroat degree dieresis divide dollar dotaccent dotlessi e eacute ebreve ecaron ecircumflex edieresis edotaccent egrave eight ellipsis emacron emdash endash eng eogonek equal eth exclam exclamdown f five four g gbreve gcircumflex gdotaccent germandbls grave greater guillemotleft guillemotright guilsinglleft guilsinglright h hbar hcircumflex hookabovecomb hungarumlaut hyphen i iacute ibreve icircumflex idieresis igrave ij imacron iogonek itilde j jcircumflex k l lacute lcaron ldot less logicalnot lslash m macron minus mu multiply n nacute ncaron nine ntilde numbersign o oacute obreve ocircumflex odieresis oe ogonek ograve ohungarumlaut omacron one onehalf onequarter ordfeminine ordmasculine oslash otilde p paragraph parenleft parenright percent period periodcentered perthousand plus plusminus q question questiondown quotedbl quotedblbase quotedblleft quotedblright quoteleft quoteright quotesinglbase quotesingle r racute rcaron registered ring s sacute scaron scedilla scircumflex section semicolon seven six slash space sterling t tcaron thorn three threequarters tilde trademark two u uacute ubreve ucircumflex udieresis ugrave uhungarumlaut umacron underscore uni00A0 uni00B2 uni00B3 uni00B9 uni0122 uni0123 uni0136 uni0137 uni013B uni013C uni0145 uni0146 uni0156 uni0157 uni0162 uni0163 uni0192 uni01C4 uni01C5 uni01C6 uni0218 uni0219 uni021A uni021B uni0237 uni02B9 uni02BA uni02BC uni02C9 uni02CA uni02CB uni0305 uni0903 uni0904 uni0905 uni0906 uni0907 uni0908 uni0909 uni090A uni090B uni090C uni090D uni090E uni090F uni0910 uni0911 uni0912 uni0913 uni0914 uni0915 uni0915_uni094D.half uni0915_uni094D_uni0937_uni094D uni0916 uni0916_uni094D.half uni0917 uni0918 uni0919 uni091A uni091A_uni0930_uni094D.vatu uni091B uni091C uni091C_uni0930_uni094D.vatu uni091C_uni094D_uni091E_uni094D uni091D uni091E uni091F uni0920 uni0921 uni0922 uni0922_uni0930_uni094D.vatu uni0923 uni0923_uni0930_uni094D.vatu uni0924 uni0925 uni0926 uni0927 uni0928 uni0929 uni092A uni092B uni092C uni092D uni092E uni092F uni0930 uni0930_uni094D.abvs uni0930_uni094D.haln uni0930_uni094D.vatu uni0931 uni0932 uni0933 uni0934 uni0935 uni0936 uni0936_uni094D.haln uni0937 uni0938 uni0938_uni0930_uni094D.vatu uni0938_uni094D.haln uni0939 uni0939_uni0930_uni094D.vatu uni093B uni093D uni093E uni093F uni0940 uni0940_uni0930_uni094D.abvs uni0945_uni0930_uni094D.abvs uni0946_uni0930_uni094D.abvs uni0947_uni0930_uni094D.abvs uni0948_uni0930_uni094D.abvs uni0949 uni0949_uni0930_uni094D.abvs uni094A uni094A_uni0930_uni094D.abvs uni094B uni094B_uni0930_uni094D.abvs uni094C uni094C_uni0930_uni094D.abvs uni094E uni094F uni0950 uni0958 uni0959 uni095A uni095A_uni094D.haln uni095B uni095C uni095D uni095E uni095E_uni0930_uni094D.vatu uni095F uni095F_uni0930_uni094D.vatu uni0960 uni0961 uni0964 uni0965 uni0966 uni0967 uni0968 uni0969 uni096A uni096B uni096C uni096D uni096E uni096F uni0970 uni0971 uni0972 uni0973 uni0974 uni0975 uni0976 uni0977 uni0978 uni0979 uni097A uni097B uni097C uni097D uni097E uni097F uni1E0C uni1E0D uni1E34 uni1E35 uni1E36 uni1E37 uni1E38 uni1E39 uni1E3A uni1E3B uni1E42 uni1E43 uni1E44 uni1E45 uni1E46 uni1E47 uni1E48 uni1E49 uni1E4C uni1E4D uni1E58 uni1E59 uni1E5A uni1E5B uni1E5C uni1E5D uni1E5E uni1E5F uni1E62 uni1E63 uni1E6C uni1E6D uni1E8E uni1E8F uni1E9E uni200C uni200D uni2044 uni20B9 uni25CC uogonek uring utilde v w wacute wcircumflex wdieresis wgrave x y yacute ycircumflex ydieresis yen ygrave z zacute zcaron zdotaccent zero]; -@GDEF_mark = [acutecomb dotbelowcomb glyph094D gravecomb tildecomb uni0302 uni0304 uni0306 uni0307 uni0308 uni030A uni030B uni030C uni0326 uni0327 uni0328 uni0331 uni0900 uni0901 uni0902 uni0930_uni094D.blwf uni0930_uni094D.rphf uni093A uni093C uni0941 uni0942 uni0943 uni0944 uni0945 uni0946 uni0947 uni0948 uni094D uni0951 uni0952 uni0953 uni0954 uni0955 uni0956 uni0957 uni0962 uni0963]; +} blwm;@GDEF_base = [A AE Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Emacron Eng Eogonek Eth Euro F G Gbreve Gcircumflex Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek Itilde J Jcircumflex K L Lacute Lcaron Ldot Lslash M N Nacute Ncaron Ntilde O OE Oacute Obreve Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Otilde P Q R Racute Rcaron S Sacute Scaron Scedilla Scircumflex T Tcaron Thorn U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ygrave Z Zacute Zcaron Zdotaccent a aacute abreve acircumflex acute adieresis ae agrave amacron ampersand aogonek aring asciicircum asciitilde asterisk at atilde b backslash bar braceleft braceright bracketleft bracketright breve brokenbar bullet c cacute caron ccaron ccedilla ccircumflex cdotaccent cedilla cent circumflex colon comma copyright currency d dagger daggerdbl dcaron dcroat degree dieresis divide dollar dotaccent dotlessi e eacute ebreve ecaron ecircumflex edieresis edotaccent egrave eight ellipsis emacron emdash endash eng eogonek equal eth exclam exclamdown f five four g gbreve gcircumflex gdotaccent germandbls grave greater guillemotleft guillemotright guilsinglleft guilsinglright h hbar hcircumflex hungarumlaut hyphen i iacute ibreve icircumflex idieresis igrave ij imacron iogonek itilde j jcircumflex k l lacute lcaron ldot less logicalnot lslash m macron minus mu multiply n nacute ncaron nine ntilde numbersign o oacute obreve ocircumflex odieresis oe ogonek ograve ohungarumlaut omacron one onehalf onequarter ordfeminine ordmasculine oslash otilde p paragraph parenleft parenright percent period periodcentered perthousand plus plusminus q question questiondown quotedbl quotedblbase quotedblleft quotedblright quoteleft quoteright quotesinglbase quotesingle r racute rcaron registered ring s sacute scaron scedilla scircumflex section semicolon seven six slash space sterling t tcaron thorn three threequarters tilde trademark two u uacute ubreve ucircumflex udieresis ugrave uhungarumlaut umacron underscore uni00A0 uni00B2 uni00B3 uni00B9 uni0122 uni0123 uni0136 uni0137 uni013B uni013C uni0145 uni0146 uni0156 uni0157 uni0162 uni0163 uni0192 uni01C4 uni01C5 uni01C6 uni0218 uni0219 uni021A uni021B uni0237 uni02B9 uni02BA uni02BC uni02C9 uni02CA uni02CB uni0903 uni0904 uni0905 uni0906 uni0907 uni0908 uni0909 uni090A uni090B uni090C uni090D uni090E uni090F uni0910 uni0911 uni0912 uni0913 uni0914 uni0915 uni0915_uni094D.half uni0915_uni094D_uni0937_uni094D uni0916 uni0916_uni094D.half uni0917 uni0918 uni0919 uni091A uni091A_uni0930_uni094D.vatu uni091B uni091C uni091C_uni0930_uni094D.vatu uni091C_uni094D_uni091E_uni094D uni091D uni091E uni091F uni0920 uni0921 uni0922 uni0922_uni0930_uni094D.vatu uni0923 uni0923_uni0930_uni094D.vatu uni0924 uni0925 uni0926 uni0927 uni0928 uni0929 uni092A uni092B uni092C uni092D uni092E uni092F uni0930 uni0930_uni094D.haln uni0931 uni0932 uni0933 uni0934 uni0935 uni0936 uni0936_uni094D.haln uni0937 uni0938 uni0938_uni0930_uni094D.vatu uni0938_uni094D.haln uni0939 uni0939_uni0930_uni094D.vatu uni093B uni093D uni093E uni093F uni0940 uni0940_uni0930_uni094D.abvs uni0945_uni0930_uni094D.abvs uni0946_uni0930_uni094D.abvs uni0947_uni0930_uni094D.abvs uni0948_uni0930_uni094D.abvs uni0949 uni0949_uni0930_uni094D.abvs uni094A uni094A_uni0930_uni094D.abvs uni094B uni094B_uni0930_uni094D.abvs uni094C uni094C_uni0930_uni094D.abvs uni094E uni094F uni0950 uni0958 uni0959 uni095A uni095A_uni094D.haln uni095B uni095C uni095D uni095E uni095E_uni0930_uni094D.vatu uni095F uni095F_uni0930_uni094D.vatu uni0960 uni0961 uni0964 uni0965 uni0966 uni0967 uni0968 uni0969 uni096A uni096B uni096C uni096D uni096E uni096F uni0970 uni0971 uni0972 uni0973 uni0974 uni0975 uni0976 uni0977 uni0978 uni0979 uni097A uni097B uni097C uni097D uni097E uni097F uni1E0C uni1E0D uni1E34 uni1E35 uni1E36 uni1E37 uni1E38 uni1E39 uni1E3A uni1E3B uni1E42 uni1E43 uni1E44 uni1E45 uni1E46 uni1E47 uni1E48 uni1E49 uni1E4C uni1E4D uni1E58 uni1E59 uni1E5A uni1E5B uni1E5C uni1E5D uni1E5E uni1E5F uni1E62 uni1E63 uni1E6C uni1E6D uni1E8E uni1E8F uni1E9E uni200C uni200D uni2044 uni20B9 uni25CC uogonek uring utilde v w wacute wcircumflex wdieresis wgrave x y yacute ycircumflex ydieresis yen ygrave z zacute zcaron zdotaccent zero]; +@GDEF_mark = [acutecomb dotbelowcomb gravecomb hookabovecomb tildecomb uni0302 uni0304 uni0305 uni0306 uni0307 uni0308 uni030A uni030B uni030C uni0326 uni0327 uni0328 uni0331 uni0900 uni0901 uni0902 uni0930_uni094D.blwf uni0930_uni094D.rphf uni093A uni093C uni0941 uni0942 uni0943 uni0944 uni0945 uni0946 uni0947 uni0948 uni094D uni0951 uni0952 uni0953 uni0954 uni0955 uni0956 uni0957 uni0962 uni0963]; @GDEF_ligature = [uni0915_uni0930_uni094D.vatu uni0915_uni094D.haln uni0915_uni094D_uni0937.akhn uni0915_uni094D_uni0937.half uni0916_uni0930_uni094D.vatu uni0916_uni094D.haln uni0917_uni0930_uni094D.vatu uni0917_uni094D.half uni0917_uni094D.haln uni0918_uni0930_uni094D.vatu uni0918_uni094D.half uni0918_uni094D.haln uni0919_uni0930_uni094D.vatu uni0919_uni094D.half uni0919_uni094D.haln uni091A_uni094D.half uni091A_uni094D.haln uni091B_uni0930_uni094D.vatu uni091B_uni094D.half uni091B_uni094D.haln uni091C_uni094D.half uni091C_uni094D.haln uni091C_uni094D_uni091E.akhn uni091C_uni094D_uni091E.half uni091D_uni0930_uni094D.vatu uni091D_uni094D.half uni091D_uni094D.haln uni091E_uni0930_uni094D.vatu uni091E_uni094D.half uni091E_uni094D.haln uni091F_uni0930_uni094D.vatu uni091F_uni094D.haln uni0920_uni0930_uni094D.vatu uni0920_uni094D.haln uni0921_uni0930_uni094D.vatu uni0921_uni094D.haln uni0922_uni094D.haln uni0923_uni094D.half uni0923_uni094D.haln uni0924_uni0930_uni094D.vatu uni0924_uni094D.half uni0924_uni094D.haln uni0924_uni094D_uni0924.pres uni0925_uni0930_uni094D.vatu uni0925_uni094D.half uni0925_uni094D.haln uni0926_uni0930_uni094D.vatu uni0926_uni094D.half uni0926_uni094D.haln uni0926_uni094D_uni0926.pres uni0926_uni094D_uni0927.pres uni0926_uni094D_uni092F.pres uni0926_uni094D_uni0935.pres uni0927_uni0930_uni094D.vatu uni0927_uni094D.half uni0927_uni094D.haln uni0928_uni0930_uni094D.vatu uni0928_uni094D.half uni0928_uni094D.haln uni0929_uni0930_uni094D.vatu uni0929_uni094D.half uni0929_uni094D.haln uni092A_uni0930_uni094D.vatu uni092A_uni094D.half uni092A_uni094D.haln uni092B_uni0930_uni094D.vatu uni092B_uni094D.half uni092B_uni094D.haln uni092C_uni0930_uni094D.vatu uni092C_uni094D.half uni092C_uni094D.haln uni092D_uni0930_uni094D.vatu uni092D_uni094D.half uni092D_uni094D.haln uni092E_uni0930_uni094D.vatu uni092E_uni094D.half uni092E_uni094D.haln uni092F_uni0930_uni094D.vatu uni092F_uni094D.half uni092F_uni094D.haln uni0930_uni0930_uni094D.vatu uni0930_uni0941.blws uni0930_uni0942.blws uni0930_uni094D.half uni0931_uni0930_uni094D.vatu uni0931_uni094D.haln uni0932_uni0930_uni094D.vatu uni0932_uni094D.half uni0932_uni094D.haln uni0933_uni0930_uni094D.vatu uni0933_uni094D.half uni0933_uni094D.haln uni0934_uni0930_uni094D.vatu uni0934_uni094D.half uni0934_uni094D.haln uni0935_uni0930_uni094D.vatu uni0935_uni094D.half uni0935_uni094D.haln uni0936_uni0930_uni094D.vatu uni0936_uni094D.half uni0937_uni0930_uni094D.vatu uni0937_uni094D.half uni0937_uni094D.haln uni0938_uni094D.half uni0939_uni0943.blws uni0939_uni094D.half uni0939_uni094D.haln uni0939_uni094D_uni092E.pres uni093E_uni0930_uni094D.abvs uni0940_uni0902.abvs uni0945_uni0902.abvs uni0946_uni0902.abvs uni0947_uni0902.abvs uni0948_uni0902.abvs uni0949_uni0902.abvs uni094A_uni0902.abvs uni094B_uni0902.abvs uni094C_uni0902.abvs uni0958_uni0930_uni094D.vatu uni0958_uni094D.half uni0958_uni094D.haln uni0959_uni0930_uni094D.vatu uni0959_uni094D.half uni0959_uni094D.haln uni095A_uni0930_uni094D.vatu uni095A_uni094D.half uni095B_uni0930_uni094D.vatu uni095B_uni094D.half uni095B_uni094D.haln uni095C_uni0930_uni094D.vatu uni095C_uni094D.haln uni095D_uni0930_uni094D.vatu uni095D_uni094D.haln uni095E_uni094D.half uni095E_uni094D.haln uni095F_uni094D.half uni095F_uni094D.haln uniFB01 uniFB02]; @GDEF_component = []; @@ -428,4 +427,4 @@ feature blwm { @GDEF_component; LigatureCaretByPos uniFB01 32; LigatureCaretByPos uniFB02 84; -} GDEF; +} GDEF; \ No newline at end of file diff --git a/sources/Samaano-Wide-Thin.ufo/fontinfo.plist b/sources/Samaano-Wide-Thin.ufo/fontinfo.plist index e67893258..0d0b68559 100644 --- a/sources/Samaano-Wide-Thin.ufo/fontinfo.plist +++ b/sources/Samaano-Wide-Thin.ufo/fontinfo.plist @@ -31,20 +31,8 @@ 0.0 note 2024-8-27: Created with FontForge (http://fontforge.org) - openTypeGaspRangeRecords - - - rangeGaspBehavior - - 0 - 1 - - rangeMaxPPEM - 65535 - - openTypeHeadCreated - 2024/10/17 11:13:24 + 2024/10/20 07:38:14 openTypeHheaAscender 2457 openTypeHheaDescender @@ -92,6 +80,7 @@ This license is available with a FAQ at: http://scripts.sil.org/OFL openTypeOS2Selection + 8 7 openTypeOS2Type @@ -113,11 +102,11 @@ This license is available with a FAQ at: http://scripts.sil.org/OFL openTypeOS2WinAscent 2476 openTypeOS2WinDescent - 958 + 978 openTypeVheaVertTypoLineGap 0 postscriptFontName - Samaano-Wide-Thin + SamaanoWideThin postscriptFullName Samaano Wide Thin postscriptSlantAngle @@ -127,9 +116,9 @@ This license is available with a FAQ at: http://scripts.sil.org/OFL postscriptUnderlineThickness 102.0 postscriptWeightName - Wide-Thin + Thin styleName - Wide-Thin + Thin unitsPerEm 2048 versionMajor diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/A_acute.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/A_acute.glif index 548f9aba1..8b74e1b56 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/A_acute.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/A_acute.glif @@ -3,7 +3,7 @@ - - + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/A_breve.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/A_breve.glif index e27bfdc38..f7e5ddf4b 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/A_breve.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/A_breve.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/A_circumflex.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/A_circumflex.glif index 48c0eab03..644f3a1fc 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/A_circumflex.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/A_circumflex.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/A_dieresis.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/A_dieresis.glif index 388d81a69..168f3fa2a 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/A_dieresis.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/A_dieresis.glif @@ -3,7 +3,7 @@ - - + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/A_grave.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/A_grave.glif index 72e50ac46..aad7dc34c 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/A_grave.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/A_grave.glif @@ -3,7 +3,7 @@ - - + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/A_macron.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/A_macron.glif index 63e91674c..756e1c894 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/A_macron.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/A_macron.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/A_ogonek.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/A_ogonek.glif index 2a7208183..338148a88 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/A_ogonek.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/A_ogonek.glif @@ -3,7 +3,7 @@ - - + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/A_ring.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/A_ring.glif index 02ab9ffa8..3f1b24e86 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/A_ring.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/A_ring.glif @@ -3,7 +3,7 @@ - - + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/A_tilde.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/A_tilde.glif index c416a36e7..a6d6758bc 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/A_tilde.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/A_tilde.glif @@ -3,7 +3,7 @@ - - + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/C_acute.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/C_acute.glif index 42530e16e..3dd067aa9 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/C_acute.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/C_acute.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/C_caron.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/C_caron.glif index 8e7679985..c9b8770ad 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/C_caron.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/C_caron.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/C_cedilla.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/C_cedilla.glif index 65dc25b18..ed85f13fa 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/C_cedilla.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/C_cedilla.glif @@ -3,7 +3,7 @@ - - + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/C_circumflex.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/C_circumflex.glif index d939eb016..a5e57b384 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/C_circumflex.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/C_circumflex.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/C_dotaccent.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/C_dotaccent.glif index a4c195f07..048c847e7 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/C_dotaccent.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/C_dotaccent.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/D_caron.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/D_caron.glif index 32245cc1d..dc36d539c 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/D_caron.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/D_caron.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/E_acute.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/E_acute.glif index 45fb1fad0..75d55f6af 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/E_acute.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/E_acute.glif @@ -3,7 +3,7 @@ - - + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/E_breve.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/E_breve.glif index 2f8d9ae0d..f7aff707c 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/E_breve.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/E_breve.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/E_caron.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/E_caron.glif index 18081c457..56ccfd6e3 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/E_caron.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/E_caron.glif @@ -3,7 +3,7 @@ - - + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/E_circumflex.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/E_circumflex.glif index 2582d9a6d..e09200190 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/E_circumflex.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/E_circumflex.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/E_dieresis.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/E_dieresis.glif index 5233a4e90..09d116a4e 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/E_dieresis.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/E_dieresis.glif @@ -3,7 +3,7 @@ - - + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/E_dotaccent.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/E_dotaccent.glif index 0f0fafe06..3e2971aaa 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/E_dotaccent.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/E_dotaccent.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/E_grave.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/E_grave.glif index e4c896dd7..094748994 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/E_grave.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/E_grave.glif @@ -3,7 +3,7 @@ - - + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/E_macron.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/E_macron.glif index 23b6e2bb9..9c0f1c2e2 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/E_macron.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/E_macron.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/E_ogonek.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/E_ogonek.glif index a96a18aeb..5e6d7f7b2 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/E_ogonek.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/E_ogonek.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/G_breve.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/G_breve.glif index b61a03213..b769380b3 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/G_breve.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/G_breve.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/G_circumflex.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/G_circumflex.glif index 19f4a0251..1efc6534d 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/G_circumflex.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/G_circumflex.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/G_dotaccent.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/G_dotaccent.glif index 2b6ade950..fac7e8e54 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/G_dotaccent.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/G_dotaccent.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/H_circumflex.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/H_circumflex.glif index e10f1b806..8ff240de0 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/H_circumflex.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/H_circumflex.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/I_acute.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/I_acute.glif index 23168d9f1..2c21eb63b 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/I_acute.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/I_acute.glif @@ -3,7 +3,7 @@ - - + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/I_breve.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/I_breve.glif index 091b9d734..fa73c24af 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/I_breve.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/I_breve.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/I_circumflex.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/I_circumflex.glif index 689b5c4d5..e305a2018 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/I_circumflex.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/I_circumflex.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/I_dieresis.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/I_dieresis.glif index 37d6a9583..affd2a91a 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/I_dieresis.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/I_dieresis.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/I_dotaccent.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/I_dotaccent.glif index e69c83521..a96f565d4 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/I_dotaccent.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/I_dotaccent.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/I_grave.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/I_grave.glif index 60801cb69..c37162123 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/I_grave.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/I_grave.glif @@ -3,7 +3,7 @@ - - + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/I_macron.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/I_macron.glif index 788d6afde..10a306103 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/I_macron.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/I_macron.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/I_ogonek.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/I_ogonek.glif index fed3736b5..3d9e9201e 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/I_ogonek.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/I_ogonek.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/I_tilde.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/I_tilde.glif index 2995082c2..42769098c 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/I_tilde.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/I_tilde.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/J_circumflex.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/J_circumflex.glif index 4b7f42368..b9efa5071 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/J_circumflex.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/J_circumflex.glif @@ -3,7 +3,7 @@ - - + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/L_acute.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/L_acute.glif index 57b86fce5..59c482948 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/L_acute.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/L_acute.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/L_dot.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/L_dot.glif index d51814e01..b06672a14 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/L_dot.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/L_dot.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/N_acute.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/N_acute.glif index fab80ef24..42f03367b 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/N_acute.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/N_acute.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/N_caron.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/N_caron.glif index c074495f0..de33b1542 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/N_caron.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/N_caron.glif @@ -3,7 +3,7 @@ - - + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/N_tilde.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/N_tilde.glif index d05646b89..c0c0ef6d8 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/N_tilde.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/N_tilde.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/O_acute.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/O_acute.glif index 81963f18f..1302feed2 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/O_acute.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/O_acute.glif @@ -3,7 +3,7 @@ - - + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/O_breve.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/O_breve.glif index 28d7cc463..75b193ac0 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/O_breve.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/O_breve.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/O_circumflex.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/O_circumflex.glif index 76af7feab..c04d1ed87 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/O_circumflex.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/O_circumflex.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/O_dieresis.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/O_dieresis.glif index d75e128e2..c155e52e8 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/O_dieresis.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/O_dieresis.glif @@ -3,7 +3,7 @@ - - + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/O_grave.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/O_grave.glif index c475f8c64..7f8f7beb9 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/O_grave.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/O_grave.glif @@ -3,7 +3,7 @@ - - + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/O_hungarumlaut.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/O_hungarumlaut.glif index a6d0d967d..c9aa2ec8a 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/O_hungarumlaut.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/O_hungarumlaut.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/O_macron.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/O_macron.glif index 78137fca8..da70d4dc3 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/O_macron.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/O_macron.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/O_tilde.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/O_tilde.glif index fb1adc032..ad70b9028 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/O_tilde.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/O_tilde.glif @@ -3,7 +3,7 @@ - - + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/R_acute.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/R_acute.glif index d01914106..00d0f0079 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/R_acute.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/R_acute.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/R_caron.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/R_caron.glif index 9edff45a5..05987683f 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/R_caron.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/R_caron.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/S_acute.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/S_acute.glif index 7073f41c4..b2433f131 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/S_acute.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/S_acute.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/S_caron.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/S_caron.glif index 688659945..88228a5a8 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/S_caron.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/S_caron.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/S_cedilla.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/S_cedilla.glif index 3096c1f3d..5d7ed827f 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/S_cedilla.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/S_cedilla.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/S_circumflex.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/S_circumflex.glif index 8dbc4c086..493154ca7 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/S_circumflex.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/S_circumflex.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/T_caron.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/T_caron.glif index fc7ffad0e..d961c9bc0 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/T_caron.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/T_caron.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/U_acute.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/U_acute.glif index f781e40da..7ccdbe53b 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/U_acute.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/U_acute.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/U_breve.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/U_breve.glif index 15f981742..141a51120 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/U_breve.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/U_breve.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/U_circumflex.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/U_circumflex.glif index 346aaef1a..2e1a08ef3 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/U_circumflex.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/U_circumflex.glif @@ -3,7 +3,7 @@ - - + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/U_dieresis.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/U_dieresis.glif index f0cf04147..f278e4cdd 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/U_dieresis.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/U_dieresis.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/U_grave.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/U_grave.glif index facefc0ec..289f6599c 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/U_grave.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/U_grave.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/U_hungarumlaut.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/U_hungarumlaut.glif index eea622816..6e93cacb9 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/U_hungarumlaut.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/U_hungarumlaut.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/U_macron.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/U_macron.glif index 87fcd9867..d93177574 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/U_macron.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/U_macron.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/U_ogonek.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/U_ogonek.glif index 4f98647f4..0d92a3474 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/U_ogonek.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/U_ogonek.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/U_ring.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/U_ring.glif index 62c3a27a5..9158bf345 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/U_ring.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/U_ring.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/U_tilde.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/U_tilde.glif index b200a6436..9e94e7ff7 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/U_tilde.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/U_tilde.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/W_acute.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/W_acute.glif index e254ad04b..17a6d8e90 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/W_acute.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/W_acute.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/W_circumflex.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/W_circumflex.glif index 35a0fcf29..25fa86c34 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/W_circumflex.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/W_circumflex.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/W_dieresis.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/W_dieresis.glif index 1251aa7cf..f6cdede56 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/W_dieresis.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/W_dieresis.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/W_grave.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/W_grave.glif index 149d87d02..13c0d5404 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/W_grave.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/W_grave.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/Y_acute.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/Y_acute.glif index 86d6744ce..576475dd6 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/Y_acute.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/Y_acute.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/Y_circumflex.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/Y_circumflex.glif index 5c9357fe1..82eb8aaba 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/Y_circumflex.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/Y_circumflex.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/Y_dieresis.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/Y_dieresis.glif index 7071a91f9..8710da878 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/Y_dieresis.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/Y_dieresis.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/Y_grave.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/Y_grave.glif index c6b2ff444..83491d443 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/Y_grave.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/Y_grave.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/Z_acute.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/Z_acute.glif index 739347555..9791ae96f 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/Z_acute.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/Z_acute.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/Z_caron.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/Z_caron.glif index d0707afe0..7773c0eba 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/Z_caron.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/Z_caron.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/Z_dotaccent.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/Z_dotaccent.glif index b75860b7b..a4e7e798d 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/Z_dotaccent.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/Z_dotaccent.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/aacute.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/aacute.glif index 309513356..567a3930d 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/aacute.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/aacute.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/abreve.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/abreve.glif index 82a081db5..68dfbc47d 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/abreve.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/abreve.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/acircumflex.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/acircumflex.glif index cb700c084..5f51d2d1a 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/acircumflex.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/acircumflex.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/adieresis.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/adieresis.glif index 4ce30fec9..d478f8f66 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/adieresis.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/adieresis.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/agrave.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/agrave.glif index 6dfa9fe15..f918e9512 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/agrave.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/agrave.glif @@ -3,7 +3,7 @@ - - + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/amacron.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/amacron.glif index 93f93c92a..82fec4cb1 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/amacron.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/amacron.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/aogonek.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/aogonek.glif index b7b50efff..972aacc42 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/aogonek.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/aogonek.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/aring.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/aring.glif index 90f63bbef..ae6c95339 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/aring.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/aring.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/atilde.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/atilde.glif index 4ab3691f7..7c6af9920 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/atilde.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/atilde.glif @@ -3,7 +3,7 @@ - - + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/cacute.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/cacute.glif index 931f1818d..cf7fee947 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/cacute.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/cacute.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/ccaron.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/ccaron.glif index ece3d456e..1fb54540c 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/ccaron.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/ccaron.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/ccedilla.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/ccedilla.glif index 693e893d4..87f795f3e 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/ccedilla.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/ccedilla.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/ccircumflex.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/ccircumflex.glif index e59eb6e06..e09bb57cf 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/ccircumflex.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/ccircumflex.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/cdotaccent.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/cdotaccent.glif index 47348a2dc..fa3286096 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/cdotaccent.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/cdotaccent.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/contents.plist b/sources/Samaano-Wide-Thin.ufo/glyphs/contents.plist index 43e9c29e9..cb08942a7 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/contents.plist +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/contents.plist @@ -1004,8 +1004,6 @@ uni0930_uni0941.blws.glif uni0930_uni0942.blws uni0930_uni0942.blws.glif - uni0930_uni094D.abvs - uni0930_uni094D_.abvs.glif uni0930_uni094D.blwf uni0930_uni094D_.blwf.glif uni0930_uni094D.half @@ -1014,8 +1012,6 @@ uni0930_uni094D_.haln.glif uni0930_uni094D.rphf uni0930_uni094D_.rphf.glif - uni0930_uni094D.vatu - uni0930_uni094D_.vatu.glif uni0931 uni0931.glif uni0931_uni0930_uni094D.vatu diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/eacute.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/eacute.glif index 5289aa8ec..e7545d044 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/eacute.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/eacute.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/ebreve.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/ebreve.glif index bfcc9e94f..7f0cfbecd 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/ebreve.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/ebreve.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/ecaron.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/ecaron.glif index 314b90e79..8e766131a 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/ecaron.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/ecaron.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/ecircumflex.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/ecircumflex.glif index 77d57e49b..73cc45350 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/ecircumflex.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/ecircumflex.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/edieresis.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/edieresis.glif index 9529d5d8f..c4981e7f4 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/edieresis.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/edieresis.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/edotaccent.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/edotaccent.glif index 54f20a058..794c6ca02 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/edotaccent.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/edotaccent.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/egrave.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/egrave.glif index 704438b16..1c7a6373b 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/egrave.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/egrave.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/emacron.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/emacron.glif index 0783cc796..c9b2ce8d9 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/emacron.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/emacron.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/eogonek.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/eogonek.glif index 851f68207..775e900ef 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/eogonek.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/eogonek.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/gbreve.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/gbreve.glif index 78593810e..1c5645cbd 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/gbreve.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/gbreve.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/gcircumflex.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/gcircumflex.glif index 6caebf5d1..7960a59d3 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/gcircumflex.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/gcircumflex.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/gdotaccent.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/gdotaccent.glif index 531da0f6a..7d8f694ee 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/gdotaccent.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/gdotaccent.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/hcircumflex.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/hcircumflex.glif index 282c24e89..e068731b5 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/hcircumflex.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/hcircumflex.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/iacute.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/iacute.glif index 580d81d02..cb1ccc9d7 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/iacute.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/iacute.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/ibreve.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/ibreve.glif index 89fa63475..da14194fe 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/ibreve.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/ibreve.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/icircumflex.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/icircumflex.glif index 9f50452ba..c674d112f 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/icircumflex.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/icircumflex.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/idieresis.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/idieresis.glif index 21890a70c..ac720e2a0 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/idieresis.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/idieresis.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/igrave.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/igrave.glif index 3fb040680..f052995d3 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/igrave.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/igrave.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/imacron.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/imacron.glif index f67870829..4c6482489 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/imacron.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/imacron.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/iogonek.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/iogonek.glif index e1972d4a7..fc143149e 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/iogonek.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/iogonek.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/itilde.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/itilde.glif index fcf525ffe..8619afad5 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/itilde.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/itilde.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/jcircumflex.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/jcircumflex.glif index b0f13bcad..d49aa8931 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/jcircumflex.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/jcircumflex.glif @@ -3,7 +3,7 @@ - - + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/lacute.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/lacute.glif index 543760481..506611f6b 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/lacute.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/lacute.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/ldot.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/ldot.glif index 6e24d4c77..29563023a 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/ldot.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/ldot.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/nacute.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/nacute.glif index c06a78e81..c5386b940 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/nacute.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/nacute.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/ncaron.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/ncaron.glif index 3ac7d1347..0c25642a3 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/ncaron.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/ncaron.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/ntilde.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/ntilde.glif index b41e7fa05..18a949f75 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/ntilde.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/ntilde.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/oacute.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/oacute.glif index 3418f5247..f3df8f2ef 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/oacute.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/oacute.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/obreve.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/obreve.glif index f30606edf..18809dc7e 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/obreve.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/obreve.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/ocircumflex.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/ocircumflex.glif index 372738e61..a1aa52139 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/ocircumflex.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/ocircumflex.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/odieresis.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/odieresis.glif index 4d20c13fb..b27922b18 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/odieresis.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/odieresis.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/ograve.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/ograve.glif index 972be5d75..a08c149e6 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/ograve.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/ograve.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/ohungarumlaut.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/ohungarumlaut.glif index 8ec57248b..61dfae25f 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/ohungarumlaut.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/ohungarumlaut.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/omacron.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/omacron.glif index d8363ead3..09aecbaf1 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/omacron.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/omacron.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/otilde.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/otilde.glif index 99614d5a4..1c99786ff 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/otilde.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/otilde.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/racute.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/racute.glif index 0c826ddba..3b5f230cd 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/racute.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/racute.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/rcaron.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/rcaron.glif index a9698ad58..f504bcfcf 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/rcaron.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/rcaron.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/sacute.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/sacute.glif index b50c622c0..9e2ad5eff 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/sacute.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/sacute.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/scaron.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/scaron.glif index 7b7fb40a1..d41cd8d80 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/scaron.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/scaron.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/scedilla.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/scedilla.glif index f1b4981f3..ca7b90edf 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/scedilla.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/scedilla.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/scircumflex.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/scircumflex.glif index a4317df2a..c974dfb7a 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/scircumflex.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/scircumflex.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/trademark.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/trademark.glif index 75ebdafda..d21deb27b 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/trademark.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/trademark.glif @@ -1,9 +1,9 @@ - + - - + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uacute.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uacute.glif index fd0c2f5c3..769f1aa66 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uacute.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uacute.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/ubreve.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/ubreve.glif index 7f836323c..be5b054a1 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/ubreve.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/ubreve.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/ucircumflex.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/ucircumflex.glif index a68a8627c..acea873e5 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/ucircumflex.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/ucircumflex.glif @@ -3,7 +3,7 @@ - - + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/udieresis.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/udieresis.glif index 04a6591f7..e878aa4de 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/udieresis.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/udieresis.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/ugrave.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/ugrave.glif index c46ac226f..be39d73f3 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/ugrave.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/ugrave.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uhungarumlaut.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uhungarumlaut.glif index 7ac921a8b..7605a7e99 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uhungarumlaut.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uhungarumlaut.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/umacron.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/umacron.glif index 6f82f3d0a..844757fc8 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/umacron.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/umacron.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0122.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0122.glif index 502711b26..a9d9aa7db 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0122.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0122.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0136.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0136.glif index 2fbdb22a3..9be50634f 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0136.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0136.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0137.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0137.glif index e8873dbd9..1d07d9546 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0137.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0137.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni013B_.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni013B_.glif index 437d99265..e1628520e 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni013B_.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni013B_.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni013C_.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni013C_.glif index cf7139145..4404f7772 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni013C_.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni013C_.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0145.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0145.glif index 5a79f255a..bf522eeec 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0145.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0145.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0146.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0146.glif index f4be2ec06..fb32e4077 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0146.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0146.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0156.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0156.glif index a187eb0df..e9942da83 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0156.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0156.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0157.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0157.glif index 3e0877c69..fd745a9e8 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0157.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0157.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0162.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0162.glif index c25096d36..1c640b6cf 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0162.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0162.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0163.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0163.glif index 28771fda3..fba2a83af 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0163.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0163.glif @@ -3,7 +3,7 @@ - - + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0218.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0218.glif index 5865b75a2..adc8736d4 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0218.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0218.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0219.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0219.glif index 13a262bd1..eefb36c78 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0219.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0219.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni021A_.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni021A_.glif index c49cd8a42..e77cd21d2 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni021A_.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni021A_.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni021B_.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni021B_.glif index 95e33382c..37a3b6d4e 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni021B_.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni021B_.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni02C_A_.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni02C_A_.glif index 6a55b73b4..bebef28bc 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni02C_A_.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni02C_A_.glif @@ -1,13 +1,12 @@ - - - - - + + + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni02C_B_.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni02C_B_.glif index 10907843b..ecf6c9be9 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni02C_B_.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni02C_B_.glif @@ -1,13 +1,12 @@ - - - - - + + + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0302.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0302.glif index 29723c27e..b9a4f11b9 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0302.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0302.glif @@ -3,16 +3,16 @@ - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0304.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0304.glif index 1b4a3fb8d..bbd570808 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0304.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0304.glif @@ -3,10 +3,10 @@ - - - - + + + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0305.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0305.glif index 2af44304e..6af2f051f 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0305.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0305.glif @@ -3,10 +3,10 @@ - - - - + + + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0306.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0306.glif index c297a7a7e..e7a272fd7 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0306.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0306.glif @@ -3,22 +3,22 @@ - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0307.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0307.glif index 6da965e28..9f24134aa 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0307.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0307.glif @@ -3,10 +3,10 @@ - - - - + + + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0308.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0308.glif index 38836177c..acb5d586f 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0308.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0308.glif @@ -3,16 +3,16 @@ - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni030A_.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni030A_.glif index 3036b4351..98df5107f 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni030A_.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni030A_.glif @@ -3,16 +3,16 @@ - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni030B_.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni030B_.glif index 89c7a4b28..442a8cb25 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni030B_.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni030B_.glif @@ -2,6 +2,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni030C_.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni030C_.glif index f25f68f6e..e91e3eef0 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni030C_.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni030C_.glif @@ -3,16 +3,16 @@ - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0326.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0326.glif index ed899a3a4..dd8caa5d2 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0326.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0326.glif @@ -3,16 +3,16 @@ - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0327.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0327.glif index 679dffae2..5d1921a30 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0327.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0327.glif @@ -3,28 +3,28 @@ - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0328.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0328.glif index e07e36ea8..121f7cded 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0328.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0328.glif @@ -3,22 +3,22 @@ - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0331.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0331.glif index b89caac2a..2ea414bbb 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0331.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0331.glif @@ -1,13 +1,12 @@ - - - - - + + + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0900.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0900.glif index 8ed531610..ec589ee3e 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0900.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0900.glif @@ -1,31 +1,30 @@ - - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0901.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0901.glif index bd38b3eae..1b21a5e1d 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0901.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0901.glif @@ -1,31 +1,30 @@ - - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0902.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0902.glif index c68571329..323f9deb7 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0902.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0902.glif @@ -1,13 +1,12 @@ - - - - - + + + + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0930_uni094D_.abvs.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0930_uni094D_.abvs.glif deleted file mode 100644 index 6be3a2bcc..000000000 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0930_uni094D_.abvs.glif +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0930_uni094D_.vatu.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni0930_uni094D_.vatu.glif deleted file mode 100644 index 73ada75cf..000000000 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni0930_uni094D_.vatu.glif +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni093A_.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni093A_.glif index f529bf177..8eeff14b9 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni093A_.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni093A_.glif @@ -1,6 +1,5 @@ - diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_0C_.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_0C_.glif index a0f80fff0..4d0f034ee 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_0C_.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_0C_.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_0D_.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_0D_.glif index 1e26d2408..296d7b75a 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_0D_.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_0D_.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_34.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_34.glif index eabdcf5a9..74f08b11a 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_34.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_34.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_35.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_35.glif index c89b9ada5..686debbe7 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_35.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_35.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_36.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_36.glif index 9cc024c8e..2670a5b39 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_36.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_36.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_37.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_37.glif index 478f9a619..ab28619dc 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_37.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_37.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_38.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_38.glif index 0776fd0e1..f27c072b5 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_38.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_38.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_39.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_39.glif index 945403708..ab5e6d5bb 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_39.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_39.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_3A_.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_3A_.glif index c2c460920..40749be19 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_3A_.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_3A_.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_3B_.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_3B_.glif index 68b8fb4ed..18b53569d 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_3B_.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_3B_.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_42.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_42.glif index d4aca31c1..4f7cf9771 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_42.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_42.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_43.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_43.glif index 53009b4f5..b348dccbc 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_43.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_43.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_44.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_44.glif index e91218356..323225af1 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_44.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_44.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_45.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_45.glif index b9ba9a9a0..1b98e5d10 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_45.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_45.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_46.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_46.glif index 072c47714..a2c6610b4 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_46.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_46.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_47.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_47.glif index 6dfbabc53..7a3fd287a 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_47.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_47.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_48.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_48.glif index 898b00fb5..b346717de 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_48.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_48.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_49.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_49.glif index 7b9fed1bd..554dd2efc 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_49.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_49.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_4C_.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_4C_.glif index 9c906d731..a98611b0f 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_4C_.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_4C_.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_4D_.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_4D_.glif index 2a38ab0ba..d1d882649 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_4D_.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_4D_.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_58.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_58.glif index 1774ed4a0..6f4e4b046 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_58.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_58.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_59.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_59.glif index 469a31389..5320b5020 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_59.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_59.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_5A_.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_5A_.glif index df5527a99..81b736bd2 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_5A_.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_5A_.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_5B_.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_5B_.glif index 57e11aa8f..a6db48776 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_5B_.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_5B_.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_5C_.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_5C_.glif index 5ac56459e..d3c88ab12 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_5C_.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_5C_.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_5D_.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_5D_.glif index 27fe35411..a547c08d2 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_5D_.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_5D_.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_5E_.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_5E_.glif index 3bca38603..c349cd175 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_5E_.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_5E_.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_5F_.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_5F_.glif index 591408db3..eb689fdc6 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_5F_.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_5F_.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_62.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_62.glif index 448de1c8d..344eb423f 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_62.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_62.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_63.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_63.glif index 9c0da8233..a26fbacbc 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_63.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_63.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_6C_.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_6C_.glif index f6282a6d8..548eb381e 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_6C_.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_6C_.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_6D_.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_6D_.glif index 5cf463f9a..1be48aa76 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_6D_.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_6D_.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_8E_.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_8E_.glif index 5a8158471..d6e305af0 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_8E_.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_8E_.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_8F_.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_8F_.glif index 0eeb3ec73..83fb2c92d 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_8F_.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uni1E_8F_.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uogonek.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uogonek.glif index 8c5c48166..912017698 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uogonek.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uogonek.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/uring.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/uring.glif index 46889a6c1..0cfa49054 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/uring.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/uring.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/utilde.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/utilde.glif index f2cc0d4cf..78dc28154 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/utilde.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/utilde.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/wacute.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/wacute.glif index 5767580b9..80fd0119a 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/wacute.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/wacute.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/wcircumflex.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/wcircumflex.glif index 6d7968dfe..67a1c6194 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/wcircumflex.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/wcircumflex.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/wdieresis.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/wdieresis.glif index e99bf0580..e39a21c44 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/wdieresis.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/wdieresis.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/wgrave.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/wgrave.glif index 6e3503fe5..f2132e351 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/wgrave.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/wgrave.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/yacute.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/yacute.glif index 45cc9ef88..dc34326cf 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/yacute.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/yacute.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/ycircumflex.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/ycircumflex.glif index 48d780916..a2144eb8a 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/ycircumflex.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/ycircumflex.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/ydieresis.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/ydieresis.glif index dbd436378..e9a84ee69 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/ydieresis.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/ydieresis.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/ygrave.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/ygrave.glif index 6340ec70d..caa106771 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/ygrave.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/ygrave.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/zacute.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/zacute.glif index 4f675db22..0174fd588 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/zacute.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/zacute.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/zcaron.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/zcaron.glif index b5de7ed00..14692f4e0 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/zcaron.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/zcaron.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/glyphs/zdotaccent.glif b/sources/Samaano-Wide-Thin.ufo/glyphs/zdotaccent.glif index a0e9b4294..0b8b5b956 100644 --- a/sources/Samaano-Wide-Thin.ufo/glyphs/zdotaccent.glif +++ b/sources/Samaano-Wide-Thin.ufo/glyphs/zdotaccent.glif @@ -4,6 +4,6 @@ - + diff --git a/sources/Samaano-Wide-Thin.ufo/lib.plist b/sources/Samaano-Wide-Thin.ufo/lib.plist index 6e1caed4e..b909bc9fe 100644 --- a/sources/Samaano-Wide-Thin.ufo/lib.plist +++ b/sources/Samaano-Wide-Thin.ufo/lib.plist @@ -647,12 +647,10 @@ uni0930_uni0930_uni094D.vatu uni0930_uni0941.blws uni0930_uni0942.blws - uni0930_uni094D.abvs uni0930_uni094D.blwf uni0930_uni094D.half uni0930_uni094D.haln uni0930_uni094D.rphf - uni0930_uni094D.vatu uni0931_uni0930_uni094D.vatu uni0931_uni094D.haln uni0932_uni0930_uni094D.vatu @@ -1490,327 +1488,323 @@ uni0915 base uni0915_uni0930_uni094D.vatu - base + ligature uni0915_uni094D.half - base + ligature uni0915_uni094D.haln - base + ligature uni0915_uni094D_uni0937.akhn - base + ligature uni0915_uni094D_uni0937.half - base + ligature uni0915_uni094D_uni0937_uni094D - base + ligature uni0916 base uni0916_uni0930_uni094D.vatu - base + ligature uni0916_uni094D.half - base + ligature uni0916_uni094D.haln - base + ligature uni0917 base uni0917_uni0930_uni094D.vatu - base + ligature uni0917_uni094D.half - base + ligature uni0917_uni094D.haln - base + ligature uni0918 base uni0918_uni0930_uni094D.vatu - base + ligature uni0918_uni094D.half - base + ligature uni0918_uni094D.haln - base + ligature uni0919 base uni0919_uni0930_uni094D.vatu - base + ligature uni0919_uni094D.half - base + ligature uni0919_uni094D.haln - base + ligature uni091A base uni091A_uni0930_uni094D.vatu - base + ligature uni091A_uni094D.half - base + ligature uni091A_uni094D.haln - base + ligature uni091B base uni091B_uni0930_uni094D.vatu - base + ligature uni091B_uni094D.half - base + ligature uni091B_uni094D.haln - base + ligature uni091C base uni091C_uni0930_uni094D.vatu - base + ligature uni091C_uni094D.half - base + ligature uni091C_uni094D.haln - base + ligature uni091C_uni094D_uni091E.akhn - base + ligature uni091C_uni094D_uni091E.half - base + ligature uni091C_uni094D_uni091E_uni094D - base + ligature uni091D base uni091D_uni0930_uni094D.vatu - base + ligature uni091D_uni094D.half - base + ligature uni091D_uni094D.haln - base + ligature uni091E base uni091E_uni0930_uni094D.vatu - base + ligature uni091E_uni094D.half - base + ligature uni091E_uni094D.haln - base + ligature uni091F base uni091F_uni0930_uni094D.vatu - base + ligature uni091F_uni094D.haln - base + ligature uni0920 base uni0920_uni0930_uni094D.vatu - base + ligature uni0920_uni094D.haln - base + ligature uni0921 base uni0921_uni0930_uni094D.vatu - base + ligature uni0921_uni094D.haln - base + ligature uni0922 base uni0922_uni0930_uni094D.vatu - base + ligature uni0922_uni094D.haln - base + ligature uni0923 base uni0923_uni0930_uni094D.vatu - base + ligature uni0923_uni094D.half - base + ligature uni0923_uni094D.haln - base + ligature uni0924 base uni0924_uni0930_uni094D.vatu - base + ligature uni0924_uni094D.half - base + ligature uni0924_uni094D.haln - base + ligature uni0924_uni094D_uni0924.pres - base + ligature uni0925 base uni0925_uni0930_uni094D.vatu - base + ligature uni0925_uni094D.half - base + ligature uni0925_uni094D.haln - base + ligature uni0926 base uni0926_uni0930_uni094D.vatu - base + ligature uni0926_uni094D.half - base + ligature uni0926_uni094D.haln - base + ligature uni0926_uni094D_uni0926.pres - base + ligature uni0926_uni094D_uni0927.pres - base + ligature uni0926_uni094D_uni092F.pres - base + ligature uni0926_uni094D_uni0935.pres - base + ligature uni0927 base uni0927_uni0930_uni094D.vatu - base + ligature uni0927_uni094D.half - base + ligature uni0927_uni094D.haln - base + ligature uni0928 base uni0928_uni0930_uni094D.vatu - base + ligature uni0928_uni094D.half - base + ligature uni0928_uni094D.haln - base + ligature uni0929 - base + ligature uni0929_uni0930_uni094D.vatu - base + ligature uni0929_uni094D.half - base + ligature uni0929_uni094D.haln - base + ligature uni092A base uni092A_uni0930_uni094D.vatu - base + ligature uni092A_uni094D.half - base + ligature uni092A_uni094D.haln - base + ligature uni092B base uni092B_uni0930_uni094D.vatu - base + ligature uni092B_uni094D.half - base + ligature uni092B_uni094D.haln - base + ligature uni092C base uni092C_uni0930_uni094D.vatu - base + ligature uni092C_uni094D.half - base + ligature uni092C_uni094D.haln - base + ligature uni092D base uni092D_uni0930_uni094D.vatu - base + ligature uni092D_uni094D.half - base + ligature uni092D_uni094D.haln - base + ligature uni092E base uni092E_uni0930_uni094D.vatu - base + ligature uni092E_uni094D.half - base + ligature uni092E_uni094D.haln - base + ligature uni092F base uni092F_uni0930_uni094D.vatu - base + ligature uni092F_uni094D.half - base + ligature uni092F_uni094D.haln - base + ligature uni0930 base uni0930_uni0930_uni094D.vatu - base + ligature uni0930_uni0941.blws - base + ligature uni0930_uni0942.blws - base - uni0930_uni094D.abvs - base + ligature uni0930_uni094D.blwf - base + ligature uni0930_uni094D.half - base + ligature uni0930_uni094D.haln - base + ligature uni0930_uni094D.rphf - base - uni0930_uni094D.vatu - base + ligature uni0931 - base + ligature uni0931_uni0930_uni094D.vatu - base + ligature uni0931_uni094D.haln - base + ligature uni0932 base uni0932_uni0930_uni094D.vatu - base + ligature uni0932_uni094D.half - base + ligature uni0932_uni094D.haln - base + ligature uni0933 base uni0933_uni0930_uni094D.vatu - base + ligature uni0933_uni094D.half - base + ligature uni0933_uni094D.haln - base + ligature uni0934 - base + ligature uni0934_uni0930_uni094D.vatu - base + ligature uni0934_uni094D.half - base + ligature uni0934_uni094D.haln - base + ligature uni0935 base uni0935_uni0930_uni094D.vatu - base + ligature uni0935_uni094D.half - base + ligature uni0935_uni094D.haln - base + ligature uni0936 base uni0936_uni0930_uni094D.vatu - base + ligature uni0936_uni094D.half - base + ligature uni0936_uni094D.haln - base + ligature uni0937 base uni0937_uni0930_uni094D.vatu - base + ligature uni0937_uni094D.half - base + ligature uni0937_uni094D.haln - base + ligature uni0938 base uni0938_uni0930_uni094D.vatu - base + ligature uni0938_uni094D.half - base + ligature uni0938_uni094D.haln - base + ligature uni0939 base uni0939_uni0930_uni094D.vatu - base + ligature uni0939_uni0943.blws - base + ligature uni0939_uni094D.half - base + ligature uni0939_uni094D.haln - base + ligature uni0939_uni094D_uni092E.pres - base + ligature uni093A base uni093B @@ -1822,71 +1816,71 @@ uni093E base uni093E_uni0930_uni094D.abvs - base + ligature uni093F base uni0940 base uni0940_uni0902.abvs - base + ligature uni0940_uni0930_uni094D.abvs - base + ligature uni0941 - mark + base uni0942 - mark + base uni0943 - mark + base uni0944 - mark + base uni0945 base uni0945_uni0902.abvs - base + ligature uni0945_uni0930_uni094D.abvs - base + ligature uni0946 base uni0946_uni0902.abvs - base + ligature uni0946_uni0930_uni094D.abvs - base + ligature uni0947 base uni0947_uni0902.abvs - base + ligature uni0947_uni0930_uni094D.abvs - base + ligature uni0948 base uni0948_uni0902.abvs - base + ligature uni0948_uni0930_uni094D.abvs - base + ligature uni0949 base uni0949_uni0902.abvs - base + ligature uni0949_uni0930_uni094D.abvs - base + ligature uni094A base uni094A_uni0902.abvs - base + ligature uni094A_uni0930_uni094D.abvs - base + ligature uni094B base uni094B_uni0902.abvs - base + ligature uni094B_uni0930_uni094D.abvs - base + ligature uni094C base uni094C_uni0902.abvs - base + ligature uni094C_uni0930_uni094D.abvs - base + ligature uni094D base uni094E @@ -1910,65 +1904,65 @@ uni0957 base uni0958 - base + ligature uni0958_uni0930_uni094D.vatu - base + ligature uni0958_uni094D.half - base + ligature uni0958_uni094D.haln - base + ligature uni0959 - base + ligature uni0959_uni0930_uni094D.vatu - base + ligature uni0959_uni094D.half - base + ligature uni0959_uni094D.haln - base + ligature uni095A - base + ligature uni095A_uni0930_uni094D.vatu - base + ligature uni095A_uni094D.half - base + ligature uni095A_uni094D.haln - base + ligature uni095B - base + ligature uni095B_uni0930_uni094D.vatu - base + ligature uni095B_uni094D.half - base + ligature uni095B_uni094D.haln - base + ligature uni095C - base + ligature uni095C_uni0930_uni094D.vatu - base + ligature uni095C_uni094D.haln - base + ligature uni095D - base + ligature uni095D_uni0930_uni094D.vatu - base + ligature uni095D_uni094D.haln - base + ligature uni095E - base + ligature uni095E_uni0930_uni094D.vatu - base + ligature uni095E_uni094D.half - base + ligature uni095E_uni094D.haln - base + ligature uni095F - base + ligature uni095F_uni0930_uni094D.vatu - base + ligature uni095F_uni094D.half - base + ligature uni095F_uni094D.haln - base + ligature uni0960 base uni0961 @@ -2114,9 +2108,9 @@ uni25CC base uniFB01 - base + ligature uniFB02 - base + ligature uogonek base uring diff --git a/sources/features.fea b/sources/features.fea index a10791b8f..a06e0c56e 100644 --- a/sources/features.fea +++ b/sources/features.fea @@ -235,7 +235,7 @@ feature half { script DFLT; language dflt ; lookup halfHalfFormsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup halfHalfFormsinDevanagarilookup0; } half; @@ -243,7 +243,7 @@ feature haln { script DFLT; language dflt ; lookup halnHalantFormsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup halnHalantFormsinDevanagarilookup0; } haln; @@ -251,7 +251,7 @@ feature vatu { script DFLT; language dflt ; lookup vatuVattuVariantsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup vatuVattuVariantsinDevanagarilookup0; } vatu; @@ -259,7 +259,7 @@ feature pres { script DFLT; language dflt ; lookup presPreBaseSubstitutionsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup presPreBaseSubstitutionsinDevanagarilookup0; } pres; @@ -267,7 +267,7 @@ feature abvs { script DFLT; language dflt ; lookup abvsAboveBaseSubstitutionsinDevanagarilookup0; - script dev2; + script deva; language dflt ; lookup abvsAboveBaseSubstitutionsinDevanagarilookup0; } abvs; @@ -275,7 +275,7 @@ feature blws { script DFLT; language dflt ; lookup blwsBelowBaseSubstitutionsinDevanagarilookup12; - script dev2; + script deva; language dflt ; lookup blwsBelowBaseSubstitutionsinDevanagarilookup12; } blws; @@ -288,22 +288,22 @@ feature dlig { lookup dligDiscretionaryLigatureslookup0; } dlig;@CombiningTopAccents = [acutecomb oe tildecomb uni0302 uni0304 uni0306 uni0308 uni030A uni030B uni030C]; lookup markMarkPositioninglookup0 { - markClass gravecomb @top; - markClass acutecomb @top; - markClass uni0302 @top; - markClass tildecomb @top; - markClass uni0304 @top; - markClass uni0306 @top; - markClass uni0307 @top; - markClass uni0308 @top; - markClass uni030A @top; - markClass uni030B @top; - markClass uni030C @top; - markClass dotbelowcomb @base; - markClass uni0326 @base; - markClass uni0327 @base; - markClass uni0328 @base; - markClass uni0331 @base; + markClass gravecomb @top; + markClass acutecomb @top; + markClass uni0302 @top; + markClass tildecomb @top; + markClass uni0304 @top; + markClass uni0306 @top; + markClass uni0307 @top; + markClass uni0308 @top; + markClass uni030A @top; + markClass uni030B @top; + markClass uni030C @top; + markClass dotbelowcomb @base; + markClass uni0326 @base; + markClass uni0327 @base; + markClass uni0328 @base; + markClass uni0331 @base; pos base A mark @top; pos base C mark @top; pos base D mark @top; @@ -377,9 +377,9 @@ lookup markMarkPositioninglookup0 { pos base uni25CC mark @base; } markMarkPositioninglookup0; lookup abvmAboveBaseMarkinDevanagari2lookup1 { - markClass uni0900 @abvm; - markClass uni0901 @abvm; - markClass uni0902 @abvm; + markClass uni0900 @abvm; + markClass uni0901 @abvm; + markClass uni0902 @abvm; markClass uni0951 @abvm; markClass uni0953 @abvm; markClass uni0954 @abvm; @@ -415,9 +415,8 @@ feature blwm { script dev2; language dflt ; lookup blwmBelowBaseMarkinDevanagari2lookup2; -} blwm; -@GDEF_base = [A AE Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Emacron Eng Eogonek Eth Euro F G Gbreve Gcircumflex Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek Itilde J Jcircumflex K L Lacute Lcaron Ldot Lslash M N Nacute Ncaron Ntilde O OE Oacute Obreve Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Otilde P Q R Racute Rcaron S Sacute Scaron Scedilla Scircumflex T Tcaron Thorn U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ygrave Z Zacute Zcaron Zdotaccent a aacute abreve acircumflex acute adieresis ae agrave amacron ampersand aogonek aring asciicircum asciitilde asterisk at atilde b backslash bar braceleft braceright bracketleft bracketright breve brokenbar bullet c cacute caron ccaron ccedilla ccircumflex cdotaccent cedilla cent circumflex colon comma copyright currency d dagger daggerdbl dcaron dcroat degree dieresis divide dollar dotaccent dotlessi e eacute ebreve ecaron ecircumflex edieresis edotaccent egrave eight ellipsis emacron emdash endash eng eogonek equal eth exclam exclamdown f five four g gbreve gcircumflex gdotaccent germandbls grave greater guillemotleft guillemotright guilsinglleft guilsinglright h hbar hcircumflex hookabovecomb hungarumlaut hyphen i iacute ibreve icircumflex idieresis igrave ij imacron iogonek itilde j jcircumflex k l lacute lcaron ldot less logicalnot lslash m macron minus mu multiply n nacute ncaron nine ntilde numbersign o oacute obreve ocircumflex odieresis oe ogonek ograve ohungarumlaut omacron one onehalf onequarter ordfeminine ordmasculine oslash otilde p paragraph parenleft parenright percent period periodcentered perthousand plus plusminus q question questiondown quotedbl quotedblbase quotedblleft quotedblright quoteleft quoteright quotesinglbase quotesingle r racute rcaron registered ring s sacute scaron scedilla scircumflex section semicolon seven six slash space sterling t tcaron thorn three threequarters tilde trademark two u uacute ubreve ucircumflex udieresis ugrave uhungarumlaut umacron underscore uni00A0 uni00B2 uni00B3 uni00B9 uni0122 uni0123 uni0136 uni0137 uni013B uni013C uni0145 uni0146 uni0156 uni0157 uni0162 uni0163 uni0192 uni01C4 uni01C5 uni01C6 uni0218 uni0219 uni021A uni021B uni0237 uni02B9 uni02BA uni02BC uni02C9 uni02CA uni02CB uni0305 uni0903 uni0904 uni0905 uni0906 uni0907 uni0908 uni0909 uni090A uni090B uni090C uni090D uni090E uni090F uni0910 uni0911 uni0912 uni0913 uni0914 uni0915 uni0915_uni094D.half uni0915_uni094D_uni0937_uni094D uni0916 uni0916_uni094D.half uni0917 uni0918 uni0919 uni091A uni091A_uni0930_uni094D.vatu uni091B uni091C uni091C_uni0930_uni094D.vatu uni091C_uni094D_uni091E_uni094D uni091D uni091E uni091F uni0920 uni0921 uni0922 uni0922_uni0930_uni094D.vatu uni0923 uni0923_uni0930_uni094D.vatu uni0924 uni0925 uni0926 uni0927 uni0928 uni0929 uni092A uni092B uni092C uni092D uni092E uni092F uni0930 uni0930_uni094D.abvs uni0930_uni094D.haln uni0930_uni094D.vatu uni0931 uni0932 uni0933 uni0934 uni0935 uni0936 uni0936_uni094D.haln uni0937 uni0938 uni0938_uni0930_uni094D.vatu uni0938_uni094D.haln uni0939 uni0939_uni0930_uni094D.vatu uni093B uni093D uni093E uni093F uni0940 uni0940_uni0930_uni094D.abvs uni0945_uni0930_uni094D.abvs uni0946_uni0930_uni094D.abvs uni0947_uni0930_uni094D.abvs uni0948_uni0930_uni094D.abvs uni0949 uni0949_uni0930_uni094D.abvs uni094A uni094A_uni0930_uni094D.abvs uni094B uni094B_uni0930_uni094D.abvs uni094C uni094C_uni0930_uni094D.abvs uni094E uni094F uni0950 uni0958 uni0959 uni095A uni095A_uni094D.haln uni095B uni095C uni095D uni095E uni095E_uni0930_uni094D.vatu uni095F uni095F_uni0930_uni094D.vatu uni0960 uni0961 uni0964 uni0965 uni0966 uni0967 uni0968 uni0969 uni096A uni096B uni096C uni096D uni096E uni096F uni0970 uni0971 uni0972 uni0973 uni0974 uni0975 uni0976 uni0977 uni0978 uni0979 uni097A uni097B uni097C uni097D uni097E uni097F uni1E0C uni1E0D uni1E34 uni1E35 uni1E36 uni1E37 uni1E38 uni1E39 uni1E3A uni1E3B uni1E42 uni1E43 uni1E44 uni1E45 uni1E46 uni1E47 uni1E48 uni1E49 uni1E4C uni1E4D uni1E58 uni1E59 uni1E5A uni1E5B uni1E5C uni1E5D uni1E5E uni1E5F uni1E62 uni1E63 uni1E6C uni1E6D uni1E8E uni1E8F uni1E9E uni200C uni200D uni2044 uni20B9 uni25CC uogonek uring utilde v w wacute wcircumflex wdieresis wgrave x y yacute ycircumflex ydieresis yen ygrave z zacute zcaron zdotaccent zero]; -@GDEF_mark = [acutecomb dotbelowcomb glyph094D gravecomb tildecomb uni0302 uni0304 uni0306 uni0307 uni0308 uni030A uni030B uni030C uni0326 uni0327 uni0328 uni0331 uni0900 uni0901 uni0902 uni0930_uni094D.blwf uni0930_uni094D.rphf uni093A uni093C uni0941 uni0942 uni0943 uni0944 uni0945 uni0946 uni0947 uni0948 uni094D uni0951 uni0952 uni0953 uni0954 uni0955 uni0956 uni0957 uni0962 uni0963]; +} blwm;@GDEF_base = [A AE Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Emacron Eng Eogonek Eth Euro F G Gbreve Gcircumflex Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek Itilde J Jcircumflex K L Lacute Lcaron Ldot Lslash M N Nacute Ncaron Ntilde O OE Oacute Obreve Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Otilde P Q R Racute Rcaron S Sacute Scaron Scedilla Scircumflex T Tcaron Thorn U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ygrave Z Zacute Zcaron Zdotaccent a aacute abreve acircumflex acute adieresis ae agrave amacron ampersand aogonek aring asciicircum asciitilde asterisk at atilde b backslash bar braceleft braceright bracketleft bracketright breve brokenbar bullet c cacute caron ccaron ccedilla ccircumflex cdotaccent cedilla cent circumflex colon comma copyright currency d dagger daggerdbl dcaron dcroat degree dieresis divide dollar dotaccent dotlessi e eacute ebreve ecaron ecircumflex edieresis edotaccent egrave eight ellipsis emacron emdash endash eng eogonek equal eth exclam exclamdown f five four g gbreve gcircumflex gdotaccent germandbls grave greater guillemotleft guillemotright guilsinglleft guilsinglright h hbar hcircumflex hungarumlaut hyphen i iacute ibreve icircumflex idieresis igrave ij imacron iogonek itilde j jcircumflex k l lacute lcaron ldot less logicalnot lslash m macron minus mu multiply n nacute ncaron nine ntilde numbersign o oacute obreve ocircumflex odieresis oe ogonek ograve ohungarumlaut omacron one onehalf onequarter ordfeminine ordmasculine oslash otilde p paragraph parenleft parenright percent period periodcentered perthousand plus plusminus q question questiondown quotedbl quotedblbase quotedblleft quotedblright quoteleft quoteright quotesinglbase quotesingle r racute rcaron registered ring s sacute scaron scedilla scircumflex section semicolon seven six slash space sterling t tcaron thorn three threequarters tilde trademark two u uacute ubreve ucircumflex udieresis ugrave uhungarumlaut umacron underscore uni00A0 uni00B2 uni00B3 uni00B9 uni0122 uni0123 uni0136 uni0137 uni013B uni013C uni0145 uni0146 uni0156 uni0157 uni0162 uni0163 uni0192 uni01C4 uni01C5 uni01C6 uni0218 uni0219 uni021A uni021B uni0237 uni02B9 uni02BA uni02BC uni02C9 uni02CA uni02CB uni0903 uni0904 uni0905 uni0906 uni0907 uni0908 uni0909 uni090A uni090B uni090C uni090D uni090E uni090F uni0910 uni0911 uni0912 uni0913 uni0914 uni0915 uni0915_uni094D.half uni0915_uni094D_uni0937_uni094D uni0916 uni0916_uni094D.half uni0917 uni0918 uni0919 uni091A uni091A_uni0930_uni094D.vatu uni091B uni091C uni091C_uni0930_uni094D.vatu uni091C_uni094D_uni091E_uni094D uni091D uni091E uni091F uni0920 uni0921 uni0922 uni0922_uni0930_uni094D.vatu uni0923 uni0923_uni0930_uni094D.vatu uni0924 uni0925 uni0926 uni0927 uni0928 uni0929 uni092A uni092B uni092C uni092D uni092E uni092F uni0930 uni0930_uni094D.haln uni0931 uni0932 uni0933 uni0934 uni0935 uni0936 uni0936_uni094D.haln uni0937 uni0938 uni0938_uni0930_uni094D.vatu uni0938_uni094D.haln uni0939 uni0939_uni0930_uni094D.vatu uni093B uni093D uni093E uni093F uni0940 uni0940_uni0930_uni094D.abvs uni0945_uni0930_uni094D.abvs uni0946_uni0930_uni094D.abvs uni0947_uni0930_uni094D.abvs uni0948_uni0930_uni094D.abvs uni0949 uni0949_uni0930_uni094D.abvs uni094A uni094A_uni0930_uni094D.abvs uni094B uni094B_uni0930_uni094D.abvs uni094C uni094C_uni0930_uni094D.abvs uni094E uni094F uni0950 uni0958 uni0959 uni095A uni095A_uni094D.haln uni095B uni095C uni095D uni095E uni095E_uni0930_uni094D.vatu uni095F uni095F_uni0930_uni094D.vatu uni0960 uni0961 uni0964 uni0965 uni0966 uni0967 uni0968 uni0969 uni096A uni096B uni096C uni096D uni096E uni096F uni0970 uni0971 uni0972 uni0973 uni0974 uni0975 uni0976 uni0977 uni0978 uni0979 uni097A uni097B uni097C uni097D uni097E uni097F uni1E0C uni1E0D uni1E34 uni1E35 uni1E36 uni1E37 uni1E38 uni1E39 uni1E3A uni1E3B uni1E42 uni1E43 uni1E44 uni1E45 uni1E46 uni1E47 uni1E48 uni1E49 uni1E4C uni1E4D uni1E58 uni1E59 uni1E5A uni1E5B uni1E5C uni1E5D uni1E5E uni1E5F uni1E62 uni1E63 uni1E6C uni1E6D uni1E8E uni1E8F uni1E9E uni200C uni200D uni2044 uni20B9 uni25CC uogonek uring utilde v w wacute wcircumflex wdieresis wgrave x y yacute ycircumflex ydieresis yen ygrave z zacute zcaron zdotaccent zero]; +@GDEF_mark = [acutecomb dotbelowcomb gravecomb hookabovecomb tildecomb uni0302 uni0304 uni0305 uni0306 uni0307 uni0308 uni030A uni030B uni030C uni0326 uni0327 uni0328 uni0331 uni0900 uni0901 uni0902 uni0930_uni094D.blwf uni0930_uni094D.rphf uni093A uni093C uni0941 uni0942 uni0943 uni0944 uni0945 uni0946 uni0947 uni0948 uni094D uni0951 uni0952 uni0953 uni0954 uni0955 uni0956 uni0957 uni0962 uni0963]; @GDEF_ligature = [uni0915_uni0930_uni094D.vatu uni0915_uni094D.haln uni0915_uni094D_uni0937.akhn uni0915_uni094D_uni0937.half uni0916_uni0930_uni094D.vatu uni0916_uni094D.haln uni0917_uni0930_uni094D.vatu uni0917_uni094D.half uni0917_uni094D.haln uni0918_uni0930_uni094D.vatu uni0918_uni094D.half uni0918_uni094D.haln uni0919_uni0930_uni094D.vatu uni0919_uni094D.half uni0919_uni094D.haln uni091A_uni094D.half uni091A_uni094D.haln uni091B_uni0930_uni094D.vatu uni091B_uni094D.half uni091B_uni094D.haln uni091C_uni094D.half uni091C_uni094D.haln uni091C_uni094D_uni091E.akhn uni091C_uni094D_uni091E.half uni091D_uni0930_uni094D.vatu uni091D_uni094D.half uni091D_uni094D.haln uni091E_uni0930_uni094D.vatu uni091E_uni094D.half uni091E_uni094D.haln uni091F_uni0930_uni094D.vatu uni091F_uni094D.haln uni0920_uni0930_uni094D.vatu uni0920_uni094D.haln uni0921_uni0930_uni094D.vatu uni0921_uni094D.haln uni0922_uni094D.haln uni0923_uni094D.half uni0923_uni094D.haln uni0924_uni0930_uni094D.vatu uni0924_uni094D.half uni0924_uni094D.haln uni0924_uni094D_uni0924.pres uni0925_uni0930_uni094D.vatu uni0925_uni094D.half uni0925_uni094D.haln uni0926_uni0930_uni094D.vatu uni0926_uni094D.half uni0926_uni094D.haln uni0926_uni094D_uni0926.pres uni0926_uni094D_uni0927.pres uni0926_uni094D_uni092F.pres uni0926_uni094D_uni0935.pres uni0927_uni0930_uni094D.vatu uni0927_uni094D.half uni0927_uni094D.haln uni0928_uni0930_uni094D.vatu uni0928_uni094D.half uni0928_uni094D.haln uni0929_uni0930_uni094D.vatu uni0929_uni094D.half uni0929_uni094D.haln uni092A_uni0930_uni094D.vatu uni092A_uni094D.half uni092A_uni094D.haln uni092B_uni0930_uni094D.vatu uni092B_uni094D.half uni092B_uni094D.haln uni092C_uni0930_uni094D.vatu uni092C_uni094D.half uni092C_uni094D.haln uni092D_uni0930_uni094D.vatu uni092D_uni094D.half uni092D_uni094D.haln uni092E_uni0930_uni094D.vatu uni092E_uni094D.half uni092E_uni094D.haln uni092F_uni0930_uni094D.vatu uni092F_uni094D.half uni092F_uni094D.haln uni0930_uni0930_uni094D.vatu uni0930_uni0941.blws uni0930_uni0942.blws uni0930_uni094D.half uni0931_uni0930_uni094D.vatu uni0931_uni094D.haln uni0932_uni0930_uni094D.vatu uni0932_uni094D.half uni0932_uni094D.haln uni0933_uni0930_uni094D.vatu uni0933_uni094D.half uni0933_uni094D.haln uni0934_uni0930_uni094D.vatu uni0934_uni094D.half uni0934_uni094D.haln uni0935_uni0930_uni094D.vatu uni0935_uni094D.half uni0935_uni094D.haln uni0936_uni0930_uni094D.vatu uni0936_uni094D.half uni0937_uni0930_uni094D.vatu uni0937_uni094D.half uni0937_uni094D.haln uni0938_uni094D.half uni0939_uni0943.blws uni0939_uni094D.half uni0939_uni094D.haln uni0939_uni094D_uni092E.pres uni093E_uni0930_uni094D.abvs uni0940_uni0902.abvs uni0945_uni0902.abvs uni0946_uni0902.abvs uni0947_uni0902.abvs uni0948_uni0902.abvs uni0949_uni0902.abvs uni094A_uni0902.abvs uni094B_uni0902.abvs uni094C_uni0902.abvs uni0958_uni0930_uni094D.vatu uni0958_uni094D.half uni0958_uni094D.haln uni0959_uni0930_uni094D.vatu uni0959_uni094D.half uni0959_uni094D.haln uni095A_uni0930_uni094D.vatu uni095A_uni094D.half uni095B_uni0930_uni094D.vatu uni095B_uni094D.half uni095B_uni094D.haln uni095C_uni0930_uni094D.vatu uni095C_uni094D.haln uni095D_uni0930_uni094D.vatu uni095D_uni094D.haln uni095E_uni094D.half uni095E_uni094D.haln uni095F_uni094D.half uni095F_uni094D.haln uniFB01 uniFB02]; @GDEF_component = []; @@ -428,4 +427,4 @@ feature blwm { @GDEF_component; LigatureCaretByPos uniFB01 32; LigatureCaretByPos uniFB02 84; -} GDEF; +} GDEF; \ No newline at end of file