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 @@
7 different Font Family names were found:
-'Samaano' was found in:
-'Samaano Wide-Bold' was found in:
-'Samaano Wide-Thin' was found in:
-'Samaano Bold-Slanted' was found in:
-'Samaano Thin-Slanted' was found in:
-'Samaano Wide-Bold-Slanted' was found in:
-'Samaano Wide-Thin-Slanted' was found in:
-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] + + + + +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] + + +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] + + +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] + + +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] + + +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] + + +GPOS table lacks kerning information.
+ + [code: lacks-kern-info] + + +GPOS table lacks kerning information.
+ + [code: lacks-kern-info] + + + + + + +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] - - -Font is monospaced but 1 glyphs (0.14%) have a different width. You should check the widths of: ['ldot']
+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] - - -Font is monospaced but 3 glyphs (0.42%) have a different width. You should check the widths of: ['uni0308', 'uni030A', 'uni030B']
- - - [code: mono-outliers] - - -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] - - -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] - - -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] - - -Font is monospaced but 2 glyphs (0.28%) have a different width. You should check the widths of: ['Eng', 'eng']
- - - [code: mono-outliers] - - -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] - - -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] - - -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] - - -Font is monospaced but 1 glyphs (0.14%) have a different width. You should check the widths of: ['ldot']
- - - [code: mono-outliers] - - -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] - - -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] - - -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] - - -Font is monospaced but 2 glyphs (0.28%) have a different width. You should check the widths of: ['Eng', 'eng']
- - - [code: mono-outliers] - - -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] - - -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] - - -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] - - -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] - - -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] - - -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] - - -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] - - -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] - - -The following mark characters could be in the GDEF mark glyph class: -hookabovecomb (U+0309) and uni0305 (U+0305)
- - - [code: mark-chars] - - -The following mark characters could be in the GDEF mark glyph class: -hookabovecomb (U+0309) and uni0305 (U+0305)
- - - [code: mark-chars] - - -The following mark characters could be in the GDEF mark glyph class: -hookabovecomb (U+0309) and uni0305 (U+0305)
- - - [code: mark-chars] - - -The following mark characters could be in the GDEF mark glyph class: -hookabovecomb (U+0309) and uni0305 (U+0305)
- - - [code: mark-chars] - - -The following mark characters could be in the GDEF mark glyph class: -hookabovecomb (U+0309) and uni0305 (U+0305)
- - - [code: mark-chars] - - -The following mark characters could be in the GDEF mark glyph class: -hookabovecomb (U+0309) and uni0305 (U+0305)
- - - [code: mark-chars] - - -The following mark characters could be in the GDEF mark glyph class: -hookabovecomb (U+0309) and uni0305 (U+0305)
- - - [code: mark-chars] - - -The following mark characters could be in the GDEF mark glyph class: -hookabovecomb (U+0309) and uni0305 (U+0305)
- - - [code: mark-chars] - - -GPOS table lacks kerning information.
- - - [code: lacks-kern-info] - - -GPOS table lacks kerning information.
- - - [code: lacks-kern-info] - - -GPOS table lacks kerning information.
- - - [code: lacks-kern-info] - - -GPOS table lacks kerning information.
- - - [code: lacks-kern-info] - - -GPOS table lacks kerning information.
- - - [code: lacks-kern-info] - - -GPOS table lacks kerning information.
- - - [code: lacks-kern-info] - - -GPOS table lacks kerning information.
- - - [code: lacks-kern-info] - - -head macStyle ITALIC bit is properly set.
- - - -head macStyle BOLD bit should be set.
- - - [code: bad-BOLD] - - -OS/2 fsSelection REGULAR bit should be unset.
- - - [code: bad-REGULAR] - - -OS/2 fsSelection ITALIC bit is properly set.
- - - -OS/2 fsSelection BOLD bit should be set.
- - - [code: bad-BOLD] - - -dcaron is decomposed and therefore could not be checked. Please check manually.
- - - [code: decomposed-outline] - - -Lcaron is decomposed and therefore could not be checked. Please check manually.
- - - [code: decomposed-outline] - - -lcaron is decomposed and therefore could not be checked. Please check manually.
- - - [code: decomposed-outline] - - -tcaron is decomposed and therefore could not be checked. Please check manually.
- - - [code: decomposed-outline] - - -Looks good!
- - - -dcaron is decomposed and therefore could not be checked. Please check manually.
- - - [code: decomposed-outline] - - -Lcaron is decomposed and therefore could not be checked. Please check manually.
- - - [code: decomposed-outline] - - -lcaron is decomposed and therefore could not be checked. Please check manually.
- - - [code: decomposed-outline] - - -tcaron is decomposed and therefore could not be checked. Please check manually.
- - - [code: decomposed-outline] - - -Looks good!
- - - -dcaron is decomposed and therefore could not be checked. Please check manually.
- - - [code: decomposed-outline] - - -Lcaron is decomposed and therefore could not be checked. Please check manually.
- - - [code: decomposed-outline] - - -lcaron is decomposed and therefore could not be checked. Please check manually.
- - - [code: decomposed-outline] - - -tcaron is decomposed and therefore could not be checked. Please check manually.
- - - [code: decomposed-outline] - - -Looks good!
- - - -dcaron is decomposed and therefore could not be checked. Please check manually.
- - - [code: decomposed-outline] - - -Lcaron is decomposed and therefore could not be checked. Please check manually.
- - - [code: decomposed-outline] - - -lcaron is decomposed and therefore could not be checked. Please check manually.
- - - [code: decomposed-outline] - - -tcaron is decomposed and therefore could not be checked. Please check manually.
- - - [code: decomposed-outline] - - -Looks good!
- - - -dcaron is decomposed and therefore could not be checked. Please check manually.
- - - [code: decomposed-outline] - - -Lcaron is decomposed and therefore could not be checked. Please check manually.
- - - [code: decomposed-outline] - - -lcaron is decomposed and therefore could not be checked. Please check manually.
- - - [code: decomposed-outline] - - -tcaron is decomposed and therefore could not be checked. Please check manually.
- - - [code: decomposed-outline] - - -Looks good!
- - - -dcaron is decomposed and therefore could not be checked. Please check manually.
- - - [code: decomposed-outline] - - -Lcaron is decomposed and therefore could not be checked. Please check manually.
- - - [code: decomposed-outline] - - -lcaron is decomposed and therefore could not be checked. Please check manually.
- - - [code: decomposed-outline] - - -tcaron is decomposed and therefore could not be checked. Please check manually.
- - - [code: decomposed-outline] - - -Looks good!
- - - -dcaron is decomposed and therefore could not be checked. Please check manually.
- - - [code: decomposed-outline] - - -Lcaron is decomposed and therefore could not be checked. Please check manually.
- - - [code: decomposed-outline] - - -lcaron is decomposed and therefore could not be checked. Please check manually.
- - - [code: decomposed-outline] - - -tcaron is decomposed and therefore could not be checked. Please check manually.
- - - [code: decomposed-outline] - - -Looks good!
- - - -dcaron is decomposed and therefore could not be checked. Please check manually.
- - - [code: decomposed-outline] - - -Lcaron is decomposed and therefore could not be checked. Please check manually.
- - - [code: decomposed-outline] - - -lcaron is decomposed and therefore could not be checked. Please check manually.
- - - [code: decomposed-outline] - - -tcaron is decomposed and therefore could not be checked. Please check manually.
- - - [code: decomposed-outline] - - -Looks good!
- - - -The following glyphs lack their case-swapping counterparts:
-Glyph present in the font | -Missing case-swapping counterpart | -
---|---|
U+0189: LATIN CAPITAL LETTER AFRICAN D | -U+0256: LATIN SMALL LETTER D WITH TAIL | -
The following glyphs lack their case-swapping counterparts:
-Glyph present in the font | -Missing case-swapping counterpart | -
---|---|
U+0189: LATIN CAPITAL LETTER AFRICAN D | -U+0256: LATIN SMALL LETTER D WITH TAIL | -
The following glyphs lack their case-swapping counterparts:
-Glyph present in the font | -Missing case-swapping counterpart | -
---|---|
U+0189: LATIN CAPITAL LETTER AFRICAN D | -U+0256: LATIN SMALL LETTER D WITH TAIL | -
The following glyphs lack their case-swapping counterparts:
-Glyph present in the font | -Missing case-swapping counterpart | -
---|---|
U+0189: LATIN CAPITAL LETTER AFRICAN D | -U+0256: LATIN SMALL LETTER D WITH TAIL | -
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]
-
-
- 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]
-
-
- 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]
-
-
- 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]
-
-
- 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]
-
-
- 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]
-
-
- 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]
-
-
- 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]
-
-
- 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]
-
-
- OS/2.usWinDescent value should be equal or greater than 978, but got 958 instead
- - - [code: descent] - - -OS/2.usWinDescent value should be equal or greater than 978, but got 958 instead
- - - [code: descent] - - -OS/2.usWinDescent value should be equal or greater than 978, but got 958 instead
- - - [code: descent] - - -OS/2.usWinDescent value should be equal or greater than 978, but got 958 instead
- - - [code: descent] - - -OS/2.usWinDescent value should be equal or greater than 978, but got 958 instead
- - - [code: descent] - - -OS/2.usWinDescent value should be equal or greater than 978, but got 958 instead
- - - [code: descent] - - -OS/2.usWinDescent value should be equal or greater than 978, but got 958 instead
- - - [code: descent] - - -OS/2.usWinDescent value should be equal or greater than 978, but got 958 instead
- - - [code: descent] - - -The following glyphs could not be reached by codepoint or substitution rules:
-- glyph094D
-
-- uni0930_uni094D.abvs
-
-- uni0930_uni094D.vatu
-
-
-
- [code: unreachable-glyphs]
-
-
- The following glyphs could not be reached by codepoint or substitution rules:
-- glyph094D
-
-- uni0930_uni094D.abvs
-
-- uni0930_uni094D.vatu
-
-
-
- [code: unreachable-glyphs]
-
-
- The following glyphs could not be reached by codepoint or substitution rules:
-- glyph094D
-
-- uni0930_uni094D.abvs
-
-- uni0930_uni094D.vatu
-
-
-
- [code: unreachable-glyphs]
-
-
- The following glyphs could not be reached by codepoint or substitution rules:
-- glyph094D
-
-- uni0930_uni094D.abvs
-
-- uni0930_uni094D.vatu
-
-
-
- [code: unreachable-glyphs]
-
-
- The following glyphs could not be reached by codepoint or substitution rules:
-- glyph094D
-
-- uni0930_uni094D.abvs
-
-- uni0930_uni094D.vatu
-
-
-
- [code: unreachable-glyphs]
-
-
- The following glyphs could not be reached by codepoint or substitution rules:
-- glyph094D
-
-- uni0930_uni094D.abvs
-
-- uni0930_uni094D.vatu
-
-
-
- [code: unreachable-glyphs]
-
-
- The following glyphs could not be reached by codepoint or substitution rules:
-- glyph094D
-
-- uni0930_uni094D.abvs
-
-- uni0930_uni094D.vatu
-
-
-
- [code: unreachable-glyphs]
-
-
- The following glyphs could not be reached by codepoint or substitution rules:
-- glyph094D
-
-- uni0930_uni094D.abvs
-
-- uni0930_uni094D.vatu
-
-
-
- [code: unreachable-glyphs]
-
-
- Family metadata at fonts/ttf does not have an article.
- - - [code: lacks-article] - - -Family metadata at fonts/ttf does not have an article.
- - - [code: lacks-article] - - -Family metadata at fonts/ttf does not have an article.
- - - [code: lacks-article] - - -Family metadata at fonts/ttf does not have an article.
- - - [code: lacks-article] - - -Family metadata at fonts/ttf does not have an article.
- - - [code: lacks-article] - - -Family metadata at fonts/ttf does not have an article.
- - - [code: lacks-article] - - -Family metadata at fonts/ttf does not have an article.
- - - [code: lacks-article] - - -Family metadata at fonts/ttf does not have an article.
- - - [code: lacks-article] - - -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.
-Or you can add the above codepoints to one of the subsets supported by the font: devanagari
, latin
, latin-ext
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.
-Or you can add the above codepoints to one of the subsets supported by the font: devanagari
, latin
, latin-ext
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.
-Or you can add the above codepoints to one of the subsets supported by the font: devanagari
, latin
, latin-ext
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.
-Or you can add the above codepoints to one of the subsets supported by the font: devanagari
, latin
, latin-ext
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.
-Or you can add the above codepoints to one of the subsets supported by the font: devanagari
, latin
, latin-ext
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.
-Or you can add the above codepoints to one of the subsets supported by the font: devanagari
, latin
, latin-ext
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.
-Or you can add the above codepoints to one of the subsets supported by the font: devanagari
, latin
, latin-ext
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.
-Or you can add the above codepoints to one of the subsets supported by the font: devanagari
, latin
, latin-ext
GF_Latin_Core glyphset:
-Language | -FAIL messages | -
---|---|
nl_Latn (Dutch) | -Shaper didn't attach acutecomb to j | -
GF_Latin_Core glyphset:
-Language | -FAIL messages | -
---|---|
nl_Latn (Dutch) | -Shaper didn't attach acutecomb to j | -
GF_Latin_Core glyphset:
-Language | -FAIL messages | -
---|---|
nl_Latn (Dutch) | -Shaper didn't attach acutecomb to j | -
GF_Latin_Core glyphset:
-Language | -FAIL messages | -
---|---|
nl_Latn (Dutch) | -Shaper didn't attach acutecomb to j | -
GF_Latin_Core glyphset:
-Language | -FAIL messages | -
---|---|
nl_Latn (Dutch) | -Shaper didn't attach acutecomb to j | -
GF_Latin_Core glyphset:
-Language | -FAIL messages | -
---|---|
nl_Latn (Dutch) | -Shaper didn't attach acutecomb to j | -
GF_Latin_Core glyphset:
-Language | -FAIL messages | -
---|---|
nl_Latn (Dutch) | -Shaper didn't attach acutecomb to j | -
GF_Latin_Core glyphset:
-Language | -FAIL messages | -
---|---|
nl_Latn (Dutch) | -Shaper didn't attach acutecomb to j | -
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] - - -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] - - -"Samaano Wide-Bold" contains the following characters which are not allowed: "-".
- - - [code: forbidden-characters] - - -"Samaano Wide-Thin" contains the following characters which are not allowed: "-".
- - - [code: forbidden-characters] - - -"Samaano Bold-Slanted" contains the following characters which are not allowed: "-".
- - - [code: forbidden-characters] - - -"Samaano Thin-Slanted" contains the following characters which are not allowed: "-".
- - - [code: forbidden-characters] - - -"Samaano Wide-Bold-Slanted" contains the following characters which are not allowed: "-".
- - - [code: forbidden-characters] - - -"Samaano Wide-Thin-Slanted" contains the following characters which are not allowed: "-".
- - - [code: forbidden-characters] - - -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] - - -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] - - -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] - - -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] - - -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] - - -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] - - -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).
+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] - - -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?)
-
-* 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?)
-
-* uni1E48 (U+1E48): X=722.0,Y=2.0 (should be at baseline 0?)
-
-
-
- [code: found-misalignments]
-
-
- 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?)
+
+
+ Validate foundry-defined design-variation axis tag names.
+
+Check ID: <FontBakeryCheck:com.adobe.fonts/check/varfont/foundry_defined_tag_name>
-* 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?)
+
+
+ Check that family axis ranges are indentical
+
+Check ID: <FontBakeryCheck:com.google.fonts/check/varfont/family_axis_ranges>
-* 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?)
+
+
+ STAT table has Axis Value tables?
+
+Check ID: <FontBakeryCheck:com.adobe.fonts/check/stat_has_axis_value_tables>
-* 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]
-
-
- 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]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>
-
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] + + + + +Lcaron is decomposed and therefore could not be checked. Please check manually.
+ + + [code: decomposed-outline] + + +lcaron is decomposed and therefore could not be checked. Please check manually.
+ + + [code: decomposed-outline] + + +tcaron is decomposed and therefore could not be checked. Please check manually.
+ + + [code: decomposed-outline] + + +Looks good!
- [code: found-colinear-vectors] -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] - -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]
+
+
+ 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] + + +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] + + +Looks good!
- [code: found-colinear-vectors] -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]
-
-
- 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>>
+
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]
-
-
-
-
-
- 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]
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]
-
-
-
-
-
- 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]
-
-
- 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]
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
-
+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
+
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>>
+
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]
-
-
- 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>>
-
+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>>
+
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>>
-
+The following glyphs have semi-vertical/semi-horizontal lines:
-* a (U+0061): L<<353.0,1024.0>--<1001.0,1023.0>>
+
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>>
+
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]
-
-
- Expected "SamaanoWide-Bold-Regular.ttf. Got Samaano-Wide-Bold.ttf.
+Expected "SamaanoWide-Thin-Regular.ttf. Got Samaano-Wide-Thin.ttf.
- - [code: bad-filename] - - -Expected "SamaanoBold-Slanted-Regular.ttf. Got Samaano-Bold-Slanted.ttf.
- - [code: bad-filename] - - -Expected "SamaanoThin-Slanted-Regular.ttf. Got Samaano-Thin-Slanted.ttf.
+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]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]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.
+Or you can add the above codepoints to one of the subsets supported by the font: devanagari
, latin
, latin-ext
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.
+Or you can add the above codepoints to one of the subsets supported by the font: devanagari
, latin
, latin-ext
This font file does not have a 'meta' table.
+GF_Latin_Core glyphset:
+Language | +FAIL messages | +
---|---|
nl_Latn (Dutch) | +Shaper didn't attach acutecomb to j | +
This font file does not have a 'meta' table.
+GF_Latin_Core glyphset:
+Language | +FAIL messages | +
---|---|
nl_Latn (Dutch) | +Shaper didn't attach acutecomb to j | +
This font file does not have a 'meta' table.
- - [code: lacks-meta-table] - - -This font file does not have a 'meta' table.
+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 @@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 @@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 @@ 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 @@ 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 lacks entry with nameId=16 (TYPOGRAPHIC_FAMILY_NAME)
- - [code: missing-entry] - - -Font lacks entry with nameId=17 (TYPOGRAPHIC_SUBFAMILY_NAME)
+This variable font does not have an avar table.
+ + + [code: missing-avar] + + +This variable font does not have an avar table.
+ + + [code: missing-avar] + + +This font file does not have a 'meta' table.
+ + [code: lacks-meta-table] + + +This font file does not have a 'meta' table.
+ + [code: lacks-meta-table] + + +STAT table is missing Axis Value Records
+ + [code: missing-axis-values] + + +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] - - -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] - - -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] - - - - - -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] - - -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] - - -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
+7 different Font Family names were found:
-'Samaano' was found in:
-'Samaano Wide-Bold' was found in:
-'Samaano Wide-Thin' was found in:
-'Samaano Bold-Slanted' was found in:
-'Samaano Thin-Slanted' was found in:
-'Samaano Wide-Bold-Slanted' was found in:
-'Samaano Wide-Thin-Slanted' was found in:
-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] -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.10The 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+0The 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)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]
-
-
-
-
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.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]
-
-
-
-
@@ -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 font
-Missing case-swapping counterpart
-
-
-
-
-U+0189: LATIN CAPITAL LETTER AFRICAN D
-U+0256: LATIN SMALL LETTER D WITH TAIL
-
-
-
- [code: missing-case-counterparts]
-
-
-
-
-
-
-
- 🔥 FAIL Checking OS/2 usWinAscent & usWinDescent.
+ 🔥 FAIL Ensure VFs have 'ital' STAT axis.
@@ -1285,4341 +996,8 @@ Please read https:/
-* 🔥 **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:
-
-
-
-Language
-FAIL 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 font
-Missing case-swapping counterpart
-
-
-
-
-U+0189: LATIN CAPITAL LETTER AFRICAN D
-U+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:
-
-
-
-Language
-FAIL 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:
-
-
-
-Language
-FAIL 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:
-
-
-
-Language
-FAIL 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 font
-Missing case-swapping counterpart
-
-
-
-
-U+0189: LATIN CAPITAL LETTER AFRICAN D
-U+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:
-
-
-
-Language
-FAIL 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 font
-Missing case-swapping counterpart
-
-
-
-
-U+0189: LATIN CAPITAL LETTER AFRICAN D
-U+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:
-
-
-
-Language
-FAIL 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